import { TextareaAutosizeProps } from '@mui/base'; interface TextAreaProps extends TextareaAutosizeProps { label?: string; error?: boolean; helperText?: string; } declare const TextArea: (props: TextAreaProps) => import("react/jsx-runtime").JSX.Element; export { TextArea }; export default TextArea;