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