import React from 'react'; import "./assets/Input.scss"; export declare const Textarea: React.FC; export interface TextareaProps { name: string; label?: string; required?: boolean; readOnly?: boolean; rows?: number; maxLength?: number; focus?: boolean; placeholder?: string; onChange?: (event: React.ChangeEvent) => void; value?: any; }