import { RadioButtonConfig } from "./types";
type Props<T> = RadioButtonConfig<T> & {
    groupName: string;
    onChange: (value: string) => void;
};
export declare const VuiSuperRadioButton: <T extends string>({ label, description, value, checked, onChange, groupName, ...rest }: Props<T>) => import("react/jsx-runtime").JSX.Element;
export {};
