/** * Markdown export of one transcript view: the /export command's pure * formatter. Deterministic and side-effect free — the runner owns the file * write, so tests drive the builder with folded views directly. * * @module @deepseek-ai/dsh-code/render/export */ import { type TranscriptView } from './projection.ts'; export declare function buildExportMarkdown(view: TranscriptView, sessionId: string): string;