import type { ScanResult } from './file-scanner.js'; import type { DependencyAnalysis } from './dependency-analyzer.js'; import type { GitHubMeta } from '../utils/github-api.js'; export interface Badge { label: string; url: string; markdown: string; category: 'language' | 'framework' | 'tool' | 'status' | 'meta'; } export declare function generateBadges(scan: ScanResult, deps: DependencyAnalysis, githubMeta?: GitHubMeta): Badge[]; export declare function formatBadgeRow(badges: Badge[]): string; //# sourceMappingURL=badge-generator.d.ts.map