import type { HistoryAnalysis } from "./analyze.js"; import { type HistoryReportView } from "./report-view.js"; /** * Friendly markdown report. Default view is **simple**. * Numeric values are copied exactly (no rounding/rescaling). * Dates use UK DD/MM/YYYY HH:mm (UTC). USD (credits) is never shown. */ export declare function formatHistoryMarkdown(report: HistoryAnalysis, view?: HistoryReportView): string;