export interface TextareaProps {
    placeholder?: string;
    rows?: number;
    value?: string;
    onChange?: (value: string) => void;
    className?: string;
    disabled?: boolean;
    error?: boolean;
    hint?: string;
    label?: string;
    required?: boolean;
    id?: string;
    name?: string;
    maxLength?: number;
    "aria-label"?: string;
    "aria-describedby"?: string;
}
export declare const TextArea: import('react').ForwardRefExoticComponent<TextareaProps & import('react').RefAttributes<HTMLTextAreaElement>>;
