import { InputHTMLAttributes, ReactElement } from 'react';
export interface LuiTextAreaInputProps extends InputHTMLAttributes<HTMLTextAreaElement> {
    value: string;
    label?: ReactElement | string;
    mandatory?: boolean;
    helpText?: string;
    error?: ReactElement | string | boolean | null;
    allowTabToSave?: boolean;
}
export declare const TextAreaInput: (props: LuiTextAreaInputProps) => import("react").JSX.Element;
