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