import { type HTMLAttributes } from "react"; export type BadgeVariant = "default" | "positive" | "negative" | "warning" | "info"; export interface BadgeProps extends HTMLAttributes { variant?: BadgeVariant; dot?: boolean; /** Solid (inverted) style — filled background with white text */ solid?: boolean; /** When true, adds role="status" for live-region announcements */ live?: boolean; } export declare const Badge: import("react").ForwardRefExoticComponent>;