import { FC, ElementType } from 'react'; import { TypographyProps } from '@mui/material/Typography'; import { PublicFieldProps, InjectedFieldProps } from './types'; declare const TextField: FC; export interface TextFieldProps extends PublicFieldProps, InjectedFieldProps, Omit { component?: ElementType; } export default TextField;