import { CSSProperties, TextareaHTMLAttributes } from 'react';
type TextAreaVariant = 'code' | 'text';
type RefType = HTMLTextAreaElement | null;
export declare const TextArea: import("react").ForwardRefExoticComponent & {
variant?: TextAreaVariant;
width?: CSSProperties["width"];
height?: CSSProperties["height"];
/**
* Automatically adjust height to fit content
* When enabled, the textarea will grow/shrink to show all content
*/
autoGrow?: boolean;
} & import("react").RefAttributes>;
export {};
//# sourceMappingURL=TextArea.component.d.ts.map