/** * MarkdownText Component * Renders markdown text with Ink components and Paean brand styling * Supports: bold, italic, code, links, lists, headers, code blocks */ import React from 'react'; interface MarkdownTextProps { children: string; } /** * MarkdownText Component * Renders markdown-formatted text using Ink */ export declare const MarkdownText: React.FC; export {}; //# sourceMappingURL=MarkdownText.d.ts.map