import { TextInputProps } from 'grommet';
import { Omit } from 'grommet/utils';
import { IWithFormFieldProps } from '../WithFormField';
/**
* A TextInput field with form validation
*/
export declare const TextInputField: (props: IWithFormFieldProps & TextInputProps & Omit) => JSX.Element;