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