I have one library on support, which clients use component from it like
import { Button } from 'ui-kit'
In this library, I want to do some changes to allow client select which version of Button they want to use, like
import { Button } from 'ui-kit/v2'
How to organize index.ts file to allow support this behavior?