/** Badge — small status label using theme tones (W2 §The Kit). */ import type { PropsWithChildren } from "react"; import { type KitStyled } from "../tokens.js"; import { type EnumTone } from "../values.js"; export interface BadgeProps extends KitStyled { label?: string; tone?: EnumTone; } /** * A literal status pill. For enum data fields prefer `EnumBadge` (it humanizes * and tone-maps the raw value); `Badge` is for a copy label the model writes. */ export declare function Badge({ label, tone, style, children }: PropsWithChildren): import("react").JSX.Element;