/// <reference types="react" />
export declare const RadioGroupContext: import("react").Context<{
    value?: string | undefined;
    onChange?: ((value: string) => void) | undefined;
} | undefined>;
/**
 * Container component for `<RadioButton>`
 */
export declare function RadioGroup({ value, defaultValue, onChange, children, }: {
    defaultValue?: string;
    value?: string;
    onChange?: (value: string) => void;
    children?: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
