/** * Markdown text rendering for terminal. * Handles headings, tables, lists, code blocks, blockquotes, horizontal rules, * and inline formatting (bold, inline code). */ import React from 'react'; type Block = { type: 'codeblock'; content: string; language?: string; } | { type: 'table'; headers: string[]; rows: string[][]; } | { type: 'heading'; level: number; content: string; } | { type: 'list'; ordered: boolean; items: string[]; } | { type: 'hr'; } | { type: 'blockquote'; lines: string[]; } | { type: 'paragraph'; content: string; }; export declare function parseBlocks(content: string): Block[]; export interface MarkdownTextProps { content: string; } export declare function MarkdownText({ content }: MarkdownTextProps): React.ReactElement; export {}; //# sourceMappingURL=MarkdownText.d.ts.map