declare type TextareaSize = 'expansive' | 'compact' | 'micro'; export interface TextAreaProps { size?: TextareaSize; isError?: boolean; placeholder?: string; value?: string; disabled?: boolean; readonly?: boolean; resizable?: boolean; cols?: number; rows?: number; maxLength?: number; } export {};