import SelectComponent from './select';
import Option from './option';
export { Option };
export type { SelectProps } from './select';
export type { OptionProps } from './option';
declare type SelectType = typeof SelectComponent;
interface SelectComponentType extends SelectType {
    Option: typeof Option;
}
declare const Select: SelectComponentType;
export default Select;
