import React from 'react'; export interface ITextareaProps extends React.TextareaHTMLAttributes { maxLength?: number; autosize?: boolean; value?: string; defaultValue?: string; ref?: any; } export declare const TextareaComponent: any; export declare const Textarea: React.FC;