import React from 'react'; import { TextFieldProps as MuiTextFieldProps } from '@mui/material/TextField'; export type TextFieldProps = MuiTextFieldProps & { /** * Show a character counter when value has maxLength. If not provided, the default value is 100. */ enableCounter?: boolean; }; declare const TextField: React.FC; export default TextField;