import * as React from "react"; import type { ControlVariantProp } from "../../props/vocabulary/index.js"; export type { TextareaProp, TextareaProp as TextareaProps, } from "../../props/components/data-entry.prop.js"; export declare const Textarea: React.ForwardRefExoticComponent & { onValueChange?: (value: string) => void; pad?: import("../../props/index.js").PadProp; padRaw?: import("../../props/index.js").PadRawProp; allowClear?: import("../../props/index.js").AllowClearProp; onClear?: () => void; variant?: ControlVariantProp | "default" | "ghost"; status?: import("../../props/index.js").ControlStatusProp; size?: "sm" | "md" | "lg"; autoGrow?: boolean; autoSize?: boolean | { minRows?: number; maxRows?: number; }; minRows?: number; maxRows?: number; count?: import("../../props/components/data-entry.prop.js").ControlCountProp; } & React.RefAttributes>;