import React from "react";
interface RadioGroupProps {
    name?: string;
    value?: any;
    onChange?: (value: any) => void;
    children?: React.ReactNode;
}
export declare const RadioGroup: (props: RadioGroupProps) => React.JSX.Element;
export {};
