/// import { UseFormControlProps } from '../../hooks/useFormControl'; import { TextInputProps } from './TextInput'; export interface TextFieldProps extends TextInputProps, UseFormControlProps { } export declare function TextField(props: TextFieldProps): JSX.Element;