import React from 'react'; export type IFormControlContext = Omit, 'htmlProps'>; export declare const FormControlContext: React.Context<{}>; export declare function useRadioContextProvider(props: any): { isRequired: boolean; isInvalid: boolean; isReadOnly: boolean; isDisabled: boolean; hasFeedbackText: boolean; setHasFeedbackText: React.Dispatch>; hasHelpText: boolean; setHasHelpText: React.Dispatch>; id: any; labelId: string; feedbackId: string; helpTextId: string; htmlProps: any; }; export declare function useRadioContext(props: any): any; export declare const useRadioContextContext: () => IFormControlContext; //# sourceMappingURL=context.d.ts.map