import { TextFieldProps } from '@mui/material'; interface EliceTextareaProps extends Omit { maxLength?: number; hideBorder?: boolean; type: 'default' | 'textarea'; isCompleted?: boolean; borderColor?: string; hoverBorderColor?: string; focusedBorderColor?: string; disabledBackgroundColor?: string; } declare const EliceTextarea: ({ type, variant, rows, placeholder, multiline, maxLength, value, onChange, hideBorder, disabled, isCompleted, borderColor, hoverBorderColor, focusedBorderColor, disabledBackgroundColor, sx, ...rest }: EliceTextareaProps) => import("react/jsx-runtime").JSX.Element; export default EliceTextarea;