import type { InputBaseProps } from '@material-ui/core/InputBase'; import { OutlinedTextFieldProps as MuiTextFieldProps } from '@material-ui/core/TextField'; import { FC } from 'react'; import type { FieldRenderProps } from 'react-final-form'; import type { FieldProps } from './Field'; export declare type TextFieldHTMLElement = HTMLInputElement | HTMLTextAreaElement; export declare type TextFieldProps = Omit & FieldProps & Pick; declare type RenderTextFieldProps = TextFieldProps & FieldRenderProps; export declare const TextFieldBase: FC; export {};