import type { BadgeColor } from '../Badge'; import type { ResponseCodeCategory } from './types'; /** * Color mapping per Figma `responce-code` (`5665:38780`). Each HTTP response * status class maps to a Badge color expressing its semantics: * informational → neutral, success → green, redirection → blue, * client error → amber, server error → red. Anything outside the 100–599 * range falls through to slate as the unknown category. */ export declare const RESPONSE_CODE_COLOR: Record; /** * Returns the category bucket for a given numeric or string status code. * Recognizes: * - exact numbers (`200`, `404`) via the standard 100–599 range * - wildcard groups (`"2XX"`, `"4xx"`) * - partial masks (`"40X"`, `"12X"`) used by FilterInput suggestions * Anything else falls through to `unknown`. */ export declare const getResponseCodeCategory: (code: number | string) => ResponseCodeCategory;