import { TextareaAutosizeProps } from '@mui/material'; import { TextInputProps } from '../../../../components'; export type TextAreaProps = Omit & { value?: string; /** * The maximum number of characters allowed in the text field. Note that the text field will show a character counter * if this value is set to anything greater than 0. Defaults to 4,000. */ maxLength?: number | null; /** * Set to `true` to disable showing the character counter below the component, even if a `maxLength` has been set. */ hideCharacterCounter?: boolean; }; export declare const TextArea: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;