/// import { FocusEvent } from './BaseInput'; declare type Props = { title?: string; name?: string; value?: string | number; error?: string; onChange?: (value: string | number) => void; onFocus?: (e: FocusEvent) => void; onBlur?: (e: FocusEvent) => void; autoFocus?: boolean; autoComplete?: boolean; type?: 'password' | 'number' | 'tel' | 'email'; min?: number; testId?: string; }; declare const TextField: (props: Props) => JSX.Element; export default TextField;