import { useFormControlStateReturnType } from '../../core/hooks/useFormControlState.js'; type UseHintProps = { hasError: boolean; id?: string; hint?: useFormControlStateReturnType[1]; ariaDescribedby?: string; }; type UseHintReturnProps = { hintProps: { id: string; 'aria-live': 'polite'; }; inputProps: { 'aria-describedby'?: string; 'aria-invalid': boolean; }; }; /** * @deprecated - will be replaced with the changes to the new validation concept (FormErrorMessages). * @internal */ export declare function useInputHint({ id, hint, hasError, ariaDescribedby: ariaDescribedbyProp, }: UseHintProps): UseHintReturnProps; export {};