import * as React from 'react'; import type { RadioGroupState } from './RadioGroup.types'; /** * Context shared between RadioGroup and its children Radio components */ export type RadioGroupContextValue = RadioGroupState; export declare const RadioGroupContext: React.Context; export declare const RadioGroupProvider: React.Provider; export declare const useRadioGroupContext: () => RadioGroupState; //# sourceMappingURL=radioGroupContext.d.ts.map