/** * `Badge` — a small tinted label. `variant` is a free string (extension "kind" * values map straight to it); known variants get a themed tint plus its * matching text color from the design-system classes, and any other value falls * back to the neutral tint. */ import type { ReactNode } from 'react'; export interface BadgeProps { readonly variant?: string; readonly children: ReactNode; } export declare function Badge({ variant, children }: BadgeProps): import("react").JSX.Element; //# sourceMappingURL=badge.d.ts.map