import { TextareaHTMLAttributes } from 'react';
export interface ITextAreaProps extends TextareaHTMLAttributes {
/**
* The label for the text area.
*/
label?: string;
/**
* Error message to display below the text area.
*/
error?: string;
/**
* Description text to display below the label.
*/
description?: string;
}
export declare const TextArea: import('react').ForwardRefExoticComponent>;