import React from 'react'; import { InputSiteType, BorderType, ValueType } from './input'; export interface TextAreaProps extends Omit, 'value'> { allowClear?: boolean | React.ReactNode; borderType?: BorderType; defaultValue?: string; count?: boolean; countPosition?: string; value?: ValueType; canResize?: boolean; disabled?: boolean; maxLength?: number; placeholder?: string; style?: Record; size?: InputSiteType; autoSize?: AutoSizeType | boolean; status?: 'error'; } export interface AutoSizeType { minRows?: number; maxRows?: number; } declare const TextArea: React.ForwardRefExoticComponent>; export default TextArea;