/// import { ISelectProps, SelectValue } from './interface'; import Option from './option'; interface CompoundedComponent extends React.ForwardRefExoticComponent & React.RefAttributes> { Option: typeof Option; } declare const Select: CompoundedComponent; export * from './interface'; export default Select;