import type { SxProps } from '@mui/material'; import React from 'react'; declare const Textarea: ({ id, name, disabled, error, placeholder, onChange, onBlur, onFocus, className, wide, rows, maxRows, autofocus, inputRef, sx, singleLine, ...rest }: { id?: string; disabled?: boolean; error?: string | boolean; placeholder?: string; name?: string; onChange?: React.ChangeEventHandler; onBlur?: React.FocusEventHandler; onFocus?: React.FocusEventHandler; value?: string; className?: string; wide?: boolean; rows?: number; maxRows?: number; autofocus?: boolean; inputRef?: React.Ref; sx?: SxProps; singleLine?: boolean; }) => import("react/jsx-runtime").JSX.Element; export default Textarea;