import { FormElementProps } from './types'; export declare function useFormFieldAria(props: FormElementProps & { id?: string; 'aria-invalid'?: boolean | 'false' | 'true' | 'grammar' | 'spelling'; 'aria-describedby'?: string; }): { id: string | undefined; isInvalid: boolean; ariaInvalid: boolean | "true" | "false" | "grammar" | "spelling" | undefined; ariaDescribedBy: string | undefined; errorId: string | undefined; };