export type FieldA11yContextValue = {
    fieldGroupId: string;
    labelId: string;
    inputId: string;
    feedbackTextId: string;
    helperTextId?: string;
    contextualLinkId?: string;
};
export declare const FieldA11yContext: import('react').Context<FieldA11yContextValue>;
export declare function useFieldA11yContext(): FieldA11yContextValue;
