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