import { FC, ReactText } from 'react'; import { FormSizesType, SizeType } from '../../util/global-props'; import './select.component.scss'; export declare type OptionType = { label: string; value: ReactText | string; }; export declare type SelectPropsType = { className?: string; options: OptionType[]; value?: OptionType | undefined; defaultValue?: OptionType; placeholder?: string; size?: FormSizesType; margin?: SizeType; isSearchable?: boolean; isDisabled?: boolean; transparent?: boolean; menuIsOpen?: boolean; title?: string; onChange?: (item: OptionType) => void; }; export declare const Select: FC;