/** * Semantic status badge tints — map domain statuses onto these five tones * before introducing new colors. Sentence / title case labels; never uppercase. * * Ink: neutral `text-foreground` / `text-secondary-foreground` on washes (same * cadence as Badge secondary). Danger keeps chip-destructive ink (Badge destructive). */ type StatusBadgeTone = "success" | "warning" | "info" | "danger" | "neutral"; /** Light washes + neutral ink (Badge secondary cadence); danger = chip-destructive. */ declare const STATUS_BADGE_TONE_CLASS: Record; /** @deprecated Use `STATUS_BADGE_TONE_CLASS.success` */ declare const LIST_HUB_STATUS_TINT_SUCCESS: string; /** @deprecated Use `STATUS_BADGE_TONE_CLASS.warning` */ declare const LIST_HUB_STATUS_TINT_WARNING: string; /** @deprecated Use `STATUS_BADGE_TONE_CLASS.neutral` */ declare const LIST_HUB_STATUS_TINT_NEUTRAL: string; /** @deprecated Use `STATUS_BADGE_TONE_CLASS.danger` */ declare const LIST_HUB_STATUS_TINT_DANGER: string; /** @deprecated Use `STATUS_BADGE_TONE_CLASS.info` */ declare const LIST_HUB_STATUS_TINT_INFO: string; export { LIST_HUB_STATUS_TINT_DANGER, LIST_HUB_STATUS_TINT_INFO, LIST_HUB_STATUS_TINT_NEUTRAL, LIST_HUB_STATUS_TINT_SUCCESS, LIST_HUB_STATUS_TINT_WARNING, STATUS_BADGE_TONE_CLASS, type StatusBadgeTone };