import React, { HTMLAttributes } from 'react';
export interface TextAreaProps extends HTMLAttributes<HTMLTextAreaElement> {
    error?: boolean;
    disabled?: boolean;
}
export declare const TextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;
