import type { FeedbackReport } from './feedback-types.js'; export declare const MAX_MARKDOWN_LENGTH = 10240; /** * Render a FeedbackReport to a Markdown string. * Uses real `\n` newlines (not the broken `'\\n'` literal). * Output is bounded to MAX_MARKDOWN_LENGTH characters. * * Mutates `report.privacy.redactionNotes` to record field-level truncation * events (ERR-014). The renderer never throws. */ export declare function renderReportMarkdown(report: FeedbackReport): string; //# sourceMappingURL=render-markdown.d.ts.map