export type RadioValue = string | number | boolean | null; export interface RadioGroupContextValue { name: string; value?: RadioValue; disabled?: boolean; onSelect: (value: RadioValue) => void; } /** Shared state for the native radio group (replaces `@base-ui/react`'s RadioGroup context). */ export declare const RadioGroupContext: import('react').Context; export declare const useRadioGroupContext: () => RadioGroupContextValue | null;