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