import { type PropsWithChildren } from 'react'; export type DefaultRadioContextValue = string | number; export type RadioContextValue = { disabled: boolean; name: string; value?: Value; onChange: (value?: Value) => void; }; export declare function RadioProvider({ children, value, }: PropsWithChildren<{ value: RadioContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace RadioProvider { var displayName: string; } export declare const useRadio: () => RadioContextValue | null; //# sourceMappingURL=Radio.context.d.ts.map