import type { ReportSummary } from './types.js'; /** * Build a JUnit XML string from a ReportSummary. * Compatible with GitHub Actions, Jenkins, and most CI systems. */ export declare function buildJunitXml(summary: ReportSummary): string; /** * Write a JUnit XML report to a file or print to stdout. */ export declare function writeJunitReport(summary: ReportSummary, outputPath?: string): void; //# sourceMappingURL=junit.d.ts.map