/// import { FocusEvent } from './BaseInput'; declare type Props = { title?: string; name?: string; value?: any; error?: string; onChange?: (value: any) => void; onFocus?: (e: FocusEvent) => void; onBlur?: (e: FocusEvent) => void; options: { value: string; label: string; }[]; isMulti?: boolean; autoFocus?: boolean; autoComplete?: boolean; openDirection?: 'up' | 'down'; testId?: string; }; declare const TextField: (props: Props) => JSX.Element; export default TextField;