import type { StyleSlots } from '../../../core/types'; /** Visual regions for the Badge component. */ type BadgeSlot = 'root'; declare const badgeStyles: StyleSlots; /** * CVA variants for the Badge root. * * @see {@link https://cva.style/docs/getting-started/variants} */ declare const badgeVariants: (props?: ({ variant?: "default" | "outline" | "destructive" | "secondary" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export { badgeStyles, badgeVariants }; export type { BadgeSlot }; //# sourceMappingURL=Badge.styles.d.ts.map