import { DefaultProps, KubedSizes } from '../theme'; export interface TextareaProps extends DefaultProps { /** width of textarea */ width?: number; /** If true textarea will grow with content until maxRows are reached */ autosize?: boolean; /** Defines maxRows in autosize variant, not applicable to regular variant */ maxHeight?: number; /** Defined minRows in autosize variant and rows in regular variant */ minRows?: number; /** Props passed to root element */ wrapperProps?: Record; /** Input size */ size?: KubedSizes; } export declare const Textarea: import("../utils/types").ComponentWithAs<"textarea", TextareaProps>; //# sourceMappingURL=Textarea.d.ts.map