import { VariantProps } from "@soybeanjs/cva"; //#region src/styles/color-swatch.d.ts declare const colorSwatchVariants: import("@soybeanjs/cva").SCVResult<"fill" | "root" | "checker", NoInfer<{ size: { xs: { root: "size-5 text-2xs"; }; sm: { root: "size-5.5 text-xs"; }; md: { root: "size-6 text-sm"; }; lg: { root: "size-6.5 text-base"; }; xl: { root: "size-7 text-lg"; }; '2xl': { root: "size-8 text-xl"; }; }; shape: { square: { root: "rounded-md"; }; circle: { root: "rounded-full"; }; }; }>, { size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined; shape?: "square" | "circle" | undefined; }>; type ColorSwatchVariants = VariantProps; type ColorSwatchShape = NonNullable; //#endregion export { ColorSwatchShape };