interface InputTextareaProps { value?: T; onChange?: (value: T) => void; model?: [T, (value: T) => void]; title?: string; placeholder?: string; cols?: number; rows?: number; required?: boolean; readOnly?: boolean; autoFocus?: boolean; focus?: boolean; icon?: string; className?: string; style?: { [index: string]: string; }; } export { InputTextareaProps };