import type { JSX } from "react"; interface RadioGroupContext { readonly value: string; readonly onChange?: (v: string) => void; } export declare const context: import("react").Context; export declare const RadioGroup: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare namespace RadioGroup { type Props = Omit & RadioGroupContext; } export {};