import React from "react"; declare const RESIZE_DIRECTIONS: readonly ["none", "vertical", "horizontal", "both"]; type ResizeDirectionType = (typeof RESIZE_DIRECTIONS)[number]; export interface TextareaProps extends React.TextareaHTMLAttributes { resize?: ResizeDirectionType; error?: string | null; showErrorLabel?: boolean; minRows?: number; isDisplay?: boolean; } declare const TextArea: React.ForwardRefExoticComponent>; declare const ReadOnlyTextArea: ({ content, minRows, }: { content: string | null; minRows?: number | undefined; }) => React.JSX.Element; export { ReadOnlyTextArea, TextArea }; //# sourceMappingURL=TextArea.d.ts.map