import type { HealthGrade } from "./types.js"; export interface BadgeOptions { label?: string; score: number; grade: HealthGrade; } export declare function generateBadgeSvg(options: BadgeOptions): string;