import { type ResolvedControlProps } from "../../renderingRules"; import type { RadioGroupControlConfig } from "../../types"; type MenuRadioGroupProps = Readonly<{ config: RadioGroupControlConfig; /** Carried for the same signature as other menu renderers; the menu radio has no use for resolved (no icon on the field). */ resolved: ResolvedControlProps; }>; /** * Renders a radio group within a menu context. * `data-testid` (when set) is on the menu-item wrapper only — not duplicated on the inner `RadioGroupField`. * * @internal */ export declare const MenuRadioGroup: ({ config, resolved: _resolved }: MenuRadioGroupProps) => import("react/jsx-runtime").JSX.Element; export {};