/**
 * Status pill — muted tint background, colored text. For state words like "ahead", "behind", "steeping".
 */
export interface BadgeProps {
  /** @default 'neutral' */
  tone?: 'ok' | 'warn' | 'danger' | 'info' | 'neutral' | 'jade';
  /** Leading status dot @default false */
  dot?: boolean;
  children?: React.ReactNode;
  style?: React.CSSProperties;
}
export declare function Badge(props: BadgeProps): JSX.Element;
