import { ForwardRefExoticComponent } from 'react';
import Option from './option';
import { SelectProps, SelectOptionProps, LocaleType } from './types';
import './styles/index.scss';
export interface SelectComponent extends ForwardRefExoticComponent<SelectProps> {
    Option: typeof Option;
}
declare const ExpandedSelect: SelectComponent;
export { SelectProps, SelectOptionProps, LocaleType };
export default ExpandedSelect;
