import { FunctionComponent, ReactElement } from 'react'; import { IOption } from './interface'; export declare const optionsFilter: (item: IOption | null, keyword: string) => boolean; interface ISearchSelectProps { list: IOption[]; disabled?: boolean; value?: string; children: ReactElement; onChange?: (value: IOption) => void; clazz?: { item?: string; icon?: string; }; options?: { searchEnabled?: boolean; noDataText?: string; minWidth?: string; placeholder?: string; }; } export declare const SearchSelect: FunctionComponent; export {}; //# sourceMappingURL=search_select.d.ts.map