import type { MsgPropType, TouchedPropType } from '../../schema';
export declare const getRenderStates: (state: {
    _msg?: MsgPropType;
    _hint?: string;
    _id: string;
    _touched?: TouchedPropType;
}) => {
    hasError: boolean;
    hasHint: boolean;
    ariaDescribedBy: string[];
};
