export interface MarkdownChunk { type: 'markdown_chunk'; content: string; id: string; } export interface MermaidChunk { type: 'mermaid_chunk'; code: string; id: string; } export interface SlideChunk { type: 'slide_chunk'; content: string; id: string; } export interface CodeChunk { type: 'code_chunk'; content?: string; code?: string; language?: string; id?: string; } export type ContentChunk = MarkdownChunk | MermaidChunk | CodeChunk; //# sourceMappingURL=customMarkdownChunks.d.ts.map