import { VariantProps } from "@soybeanjs/cva"; //#region src/styles/tag.d.ts declare const tagVariants: 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" | undefined; variant?: "pure" | "outline" | "soft" | "ghost" | "solid" | "raw" | undefined; }>; type TagVariants = VariantProps; type TagVariant = NonNullable; type TagShape = NonNullable; //#endregion export { TagShape, TagVariant };