/// <reference types="react" />
import { IReactHookFormProps } from "./types";
export interface ITextAreaProps {
    name: string;
    ariaLabel: string;
    disabled?: boolean;
    defaultValue?: string;
    hideErrorMessage?: boolean;
}
export declare const Textarea: ({ name, validation, register, errors, disabled, defaultValue, hideErrorMessage, ariaLabel, }: ITextAreaProps & IReactHookFormProps) => JSX.Element;
