import { FC } from 'react'; import './index.scss'; import { IOption } from './models'; interface IProps { options: Array; name?: string; label?: string; searchLabel?: string; searchable?: boolean; clearable?: boolean; formGroupLabel?: string; multiple?: boolean; disabled?: boolean; required?: boolean; defaultValue?: any; className?: string; _id?: string; _ignore?: string; onChange?(value: string | number | Array): void; } declare const Select: FC; export default Select;