import { VariantProps } from "@soybeanjs/cva"; //#region src/styles/toggle.d.ts declare const toggleVariants: import("@soybeanjs/cva").CVResult, { size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined; color?: "info" | "success" | "warning" | "primary" | "destructive" | "carbon" | "secondary" | "accent" | undefined; shape?: "auto" | "rounded" | "square" | "circle" | undefined; variant?: "outline" | "soft" | "ghost" | undefined; }>; type ToggleVariants = VariantProps; type ToggleVariant = NonNullable; type ToggleShape = NonNullable; //#endregion export { ToggleShape, ToggleVariant };