Open
Description
We should only expose the bare minimum in the public types that are exported.
so in our repo here, we might do something like
export interface ISelectMulti {
onlyTheMostImportantPublicProps: string
}
interface IPrivateSelectMulti extends ISelectMulti {
otherPropsThatProjectsShouldntNeedToKnowAbout: string
}