import type { TestRunResult } from './result'; /** * Format test results as JUnit XML. * Compatible with GitHub Actions, GitLab CI, Jenkins, etc. */ export declare function formatJunit(result: TestRunResult): { xml: string; success: boolean; };