import { type BadgeProps } from "../Badge"; export type StatusBadgeStatus = "live" | "stale" | "missing" | "manual" | "loading"; export interface StatusBadgeProps extends Omit { status: StatusBadgeStatus; /** Overrides the default label for the given status */ label?: string; } export declare const StatusBadge: import("react").ForwardRefExoticComponent>;