export type RadioGroupOnChangeHandler = () => void; export type RegisterRadioOnChange = (value: string, handler: RadioGroupOnChangeHandler) => () => void; export type RadioGroupRuntimeContextValue = { groupId: string; selectedValue: string | null; disabled: boolean; selectValue: (value: string) => void; registerRadioOnChange: RegisterRadioOnChange; }; export declare const RadioGroupRuntimeContext: import("react").Context; //# sourceMappingURL=context.d.ts.map