import { CSSProperties, FC } from 'react'; import { IOption } from '../../interfaces/select.type'; interface Props { options: IOption[]; onSelect: (option: IOption | undefined) => void; selected?: IOption; themeColor?: string; className?: string; style?: CSSProperties; showLoader?: boolean; id?: string; } export declare const QuickSelect: FC; export {};