import { Sizes } from '../../constants';
declare const TextArea: import('react').ForwardRefExoticComponent<{
    label?: string;
    textAreaSize?: Sizes;
    enableDynamicHeight?: boolean;
    value?: string;
    onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void;
    textAreaStyle?: React.CSSProperties;
    textAreaContainerStyle?: React.CSSProperties;
    textAreaLabelStyle?: React.CSSProperties;
} & Partial<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>> & import('react').RefAttributes<HTMLTextAreaElement>>;
export default TextArea;
//# sourceMappingURL=TextArea.d.ts.map