import { FC } from 'react'; import { IOption } from '../../interfaces/select.type'; interface Props { children: any; selected: IOption | null; onSelect: (obj: IOption) => void; setQuery?: (query: string) => void; disable?: boolean; clearSearch?: boolean; themeColor?: string; } export declare const AutoComplete: FC; export {};