/** * Code Order — Markdown report generator. * * Turns an {@link AnalysisResult} into a human/agent-readable Markdown report * with a summary, prioritized issues, top largest files, and the extension * distribution. The report is returned to the session so the LLM can deduce * what to reorganize next. */ import type { AnalysisResult } from "./types.js"; /** * Render the full cleanup report as Markdown. */ export declare function renderReport(result: AnalysisResult): string; //# sourceMappingURL=report.d.ts.map