export interface MenuRadioGroupProps {
    /** Controlled selected value */
    value?: string | null;
    /** Uncontrolled default selected value */
    defaultValue?: string | null;
    /** Called with the new value when a `Menu.RadioItem` is selected */
    onChange?: (value: string) => void;
    /** `Menu.RadioItem` components and other elements */
    children?: React.ReactNode;
}
export declare function MenuRadioGroup(_props: MenuRadioGroupProps): import("react/jsx-runtime").JSX.Element;
export declare namespace MenuRadioGroup {
    var displayName: string;
}
