import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare const badgeVariants: (props?: ({ variant?: "default" | "link" | "outline" | "secondary" | "ghost" | "destructive" | "prompt" | "count" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; declare function Badge({ className, variant, asChild, ...props }: React.ComponentProps<"span"> & VariantProps & { asChild?: boolean; }): react_jsx_runtime.JSX.Element; interface BadgeCountProps extends Omit, "variant" | "children"> { count: number; /** Caps display at `max+` (default 99). */ max?: number; } /** Red count-only chip — bulk action bar, selection tallies, inline numeric emphasis. */ declare function BadgeCount({ count, max, className, ...props }: BadgeCountProps): react_jsx_runtime.JSX.Element; /** Uppercase Leo / AI affordance — WCAG-safe on light, dark, and HC surfaces. */ declare function BadgeAi({ className, ...props }: Omit, "children">): react_jsx_runtime.JSX.Element; export { Badge, BadgeAi, BadgeCount, type BadgeCountProps, badgeVariants };