import type { Report } from '../schemas/report.js'; import type { OutputFormat } from '../schemas/config.js'; export { renderJsonReport } from './json-report.js'; export { renderTestPlanMd } from './testplan-md.js'; export { renderRiskMd } from './risk-md.js'; export { renderPrComment } from './pr-comment.js'; export { renderCoverageMap } from './coverage-map.js'; export interface RenderOutput { format: OutputFormat; filename: string; content: string; } export declare function renderFormat(report: Report, format: OutputFormat): RenderOutput; export declare function renderAllFormats(report: Report, formats: OutputFormat[]): RenderOutput[]; export declare function writeOutputs(outputs: RenderOutput[], outputDir: string): void; //# sourceMappingURL=index.d.ts.map