import React from 'react'; import type { TextAreaRef } from './interface'; declare const TextArea: React.ForwardRefExoticComponent & { value?: string | number | bigint | readonly string[]; prefixCls?: string; className?: string; style?: React.CSSProperties; autoSize?: boolean | import("./interface").AutoSizeType; onPressEnter?: React.KeyboardEventHandler; onResize?: (size: { width: number; height: number; }) => void; classNames?: { affixWrapper?: string; prefix?: string; suffix?: string; groupWrapper?: string; wrapper?: string; variant?: string; } & { textarea?: string; count?: string; }; styles?: { textarea?: React.CSSProperties; count?: React.CSSProperties; }; } & Pick & Pick & React.RefAttributes>; export default TextArea;