import { TextAreaStateType } from '../types/state';
export declare const buildAriaDescribedBy: ({ helpMessage, textAreaHelpTextId, errorMessage, state, textAreaErrorId, }: {
    helpMessage?: string;
    textAreaHelpTextId: string;
    errorMessage?: string;
    state: TextAreaStateType;
    textAreaErrorId: string;
}) => string;
