import type { ReactElement } from "react"; import type { RadioGroupControlConfig } from "../../types"; type RadioGroupFieldProps = Readonly<{ config: Pick & { /** Omitted in menu context so the menu-item wrapper keeps a single `data-testid`. */ "data-testid"?: string; /** Passed through to the design-system `RadioGroup` field label (optional at the field layer). */ label?: string; }; }>; /** * Shared RadioGroup + RadioItem tree for menu and standalone placements. * * @internal */ export declare const RadioGroupField: ({ config }: RadioGroupFieldProps) => ReactElement; export {};