import { RadioButtonConfig } from "./types";
type Props<T> = {
    groupName?: string;
    group: RadioButtonConfig<T>[];
    onChange: (value: string) => void;
};
export declare const VuiSuperRadioGroup: <T extends string>({ groupName, group, onChange }: Props<T>) => import("react/jsx-runtime").JSX.Element;
export {};
