import type { BadgeColor } from '../Badge'; import type { HttpMethodName } from './types'; export declare const HTTP_METHODS: readonly HttpMethodName[]; /** * Color mapping per Figma `http-method` (`5179:11016`). Colors reflect each * method's intent and risk level (safe reads → green, destructive → rose, * technical/preflight → slate). Anything outside `HTTP_METHODS` falls through * to `OTHER_METHOD_COLOR`. */ export declare const HTTP_METHOD_COLOR: Record; export declare const OTHER_METHOD_COLOR: BadgeColor;