import { VariantProps } from 'class-variance-authority';
import * as class_variance_authority_types from 'class-variance-authority/types';

declare const toggleVariants: (props?: {
    variant?: "default" | "outline";
    size?: "default" | "sm" | "lg";
} & class_variance_authority_types.ClassProp) => string;

type ToggleVariantsProps = VariantProps<typeof toggleVariants>;
type ToggleVariant = NonNullable<ToggleVariantsProps["variant"]>;
type ToggleSize = NonNullable<ToggleVariantsProps["size"]>;

export type { ToggleSize as T, ToggleVariant as a };
