import { FC } from 'react'; import { IFormElement, IOption } from '../../types'; export interface IFillSelectProps extends IFormElement { options: IOption[]; handleSelect: (name: string, value: string | number) => void; handleAddToScope?: (name: string | number) => void; position?: string; zIndex?: number; theme?: any; } export declare const FillSelect: FC;