import { type InputBaseOwnProps } from "../InputBase"; export interface TextAreaProps extends InputBaseOwnProps, React.ComponentProps<"textarea"> { /** Determines whether the textarea height should grow with its content * @default faslse */ autosize?: boolean; /** Maximum rows for autosize textarea to grow, ignored if `autosize` prop is not set */ maxRows?: number; /** Minimum rows of autosize textarea, ignored if `autosize` prop is not set */ minRows?: number; /** Controls `resize` CSS property * @default "none" */ resize?: React.CSSProperties["resize"]; } /** TextArea继承了textarea的所有属性 */ export declare function TextArea(props: TextAreaProps): import("react").JSX.Element;