/** * Design-health badge — a deterministic SVG (same score in, same bytes out) * teams can commit or serve, shields.io-style. No network, no fonts beyond * system defaults, no randomness. */ export interface BadgeOptions { label?: string; score: number; /** Suffix appended after the score, e.g. "/100". */ suffix?: string; } export declare function renderBadgeSvg(options: BadgeOptions): string;