import * as React from 'react'; import { StandardProps } from '..'; export interface TextareaProps extends StandardProps< React.TextareaHTMLAttributes, TextareaClassKey, 'defaultValue' | 'rows' | 'value' > { defaultValue?: unknown; disabled?: boolean; rows?: string | number; rowsMax?: string | number; textareaRef?: React.Ref | React.RefObject; value?: unknown; } export type TextareaClassKey = 'root' | 'shadow' | 'textarea'; declare const Textarea: React.ComponentType; export default Textarea;