import type { BadgeColor, BadgeType } from './types'; interface ColorVariant { type: BadgeType; color: BadgeColor; muted?: boolean; className: string; } export declare const badgeColorsMuted: BadgeColor[]; /** * Generates all compound variants for badge colors and types * Uses a static class map to ensure Tailwind can detect all classes */ export declare const generateBadgeVariants: () => ColorVariant[]; export {};