/** * Markdown rendering and formatting */ export declare class MarkdownRenderer { /** * Render markdown to terminal with colors */ render(markdown: string): string; /** * Format as a box */ box(content: string, title?: string): string; /** * Wrap a line to fit within specified width */ private wrapLine; /** * Format as a panel */ panel(content: string, panelColor?: 'error' | 'info' | 'success' | 'warning'): string; /** * Format table */ table(headers: string[], rows: string[][]): string; /** * Format JSON with syntax highlighting */ json(obj: unknown): string; /** * Strip markdown formatting */ static strip(markdown: string): string; } export declare function getRenderer(): MarkdownRenderer; //# sourceMappingURL=markdown.d.ts.map