import * as react from 'react'; import { HTMLAttributes } from 'react'; import { C as Color } from './types-8Sv0rCjw.cjs'; interface BadgeProps extends HTMLAttributes { /** Badge color — any color in the Tailwind v4 palette. */ color?: Color; /** Visual variant */ variant?: "solid" | "outline" | "soft"; /** Badge size */ size?: "sm" | "md" | "lg"; /** Show a small dot indicator before text */ dot?: boolean; } declare const Badge: react.ForwardRefExoticComponent>; export { Badge, type BadgeProps };