import * as React from "react"; import { AriaTextFieldProps } from "react-aria"; import { ControlInputProps } from "../Control/Control"; declare const RESIZE_CLASSES: { horizontal: string; vertical: string; both: string; none: string; }; type TextAreaResizeType = keyof typeof RESIZE_CLASSES; export interface TextAreaProps extends AriaTextFieldProps, ControlInputProps { rows?: number; resize?: TextAreaResizeType; inputClassName?: string; } export declare const TextArea: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=TextArea.d.ts.map