/// import { SelectorProps, OptionKey } from './types'; import Item from './Item'; import SelectorGroup from './SelectorGroup'; declare type SelectorComponentType = React.ForwardRefExoticComponent & React.RefAttributes> & { Group: typeof SelectorGroup; Item: typeof Item; }; declare const Selector: SelectorComponentType; export * from './types'; export default Selector;