import type { TranscriptEntry } from '../components/UI/sw-ui-transcript-view.js'; /** * Serializes a transcript entry list to a Markdown string. * * Format per entry type: * user → **You:** text * agent → **Agent:** text * system → *text* * * meta.code → fenced code block (with language tag when present) * meta.links → markdown link list appended after the message text */ export declare function transcriptToMarkdown(entries: TranscriptEntry[]): string; //# sourceMappingURL=transcriptToMarkdown.d.ts.map