import { FC } from 'react'; import { IFormElement, IOption } from '../../types'; export interface IDropdownProps extends IFormElement { options: IOption[]; handleSelect: (name: string, value: string | number) => void; position?: string; zIndex?: number; maxHeight?: string; theme?: any; handleFieldFocus?: (name: string) => void; handleFieldBlur?: () => void; } export interface IPositionStyle { top: number; width?: number; left?: number; right?: number; } export declare const Dropdown: FC;