export declare function renderMarkdown(content: string): string;
export declare function renderDiff(oldContent: string, newContent: string, context?: number): string;
export declare function renderInlineDiff(oldStr: string, newStr: string): string;
export declare class StreamingMarkdownRenderer {
    private buffer;
    private inCodeBlock;
    private codeBlockLanguage;
    private codeBlockContent;
    addChunk(chunk: string): string;
    flush(): string;
    private processLine;
    private renderCodeBlock;
    private applyInlineFormatting;
}
//# sourceMappingURL=markdown-renderer.d.ts.map