/// import { ArrayList } from '../../types'; declare type Props = { options: ArrayList; label?: string; name: string; value: string; onValueChange: (e: { target: { name: string; value: string; }; }) => void; error?: string | null | boolean; onSearch?: (searchString: string) => ArrayList; searchable?: boolean; }; declare const FlatDropdown: ({ options, label, name, onValueChange, value, error, onSearch, searchable, }: Props) => JSX.Element; export default FlatDropdown;