import React from 'react'; import './index.less'; export interface TextAreaProps { style?: React.CSSProperties; placeholder?: string; value?: string; defaultValue?: string; autoSize?: boolean | { minRows?: number; maxRows?: number; }; clearIcon?: { container: () => HTMLElement; text?: React.ReactNode; }; rows?: number; maxLength?: number; disabled?: boolean; blur?: () => void; focus?: () => void; onChange?: (value: string) => void; } export declare const TextArea: React.ForwardRefExoticComponent & React.RefAttributes>>;