import type { ReviewSession } from "./findings.js"; export interface ReportPaths { markdown: string; json: string; } /** Render the full markdown report for a session. No em dashes anywhere. */ export declare function renderMarkdown(session: ReviewSession): string; /** * Write markdown + JSON report files for a session into outDir. * Returns the paths of both files. */ export declare function generateReport(session: ReviewSession, outDir: string): Promise;