import * as React from "react";

/** Small mono pill for tags and statuses. */
export interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
  children?: React.ReactNode;
  /** @default "neutral" */
  tone?: "neutral" | "brand" | "gold" | "green";
}
export function Badge(props: BadgeProps): JSX.Element;
