/** * Lightweight markdown-to-HTML converter. * * Supports: bold, italic, inline code, code blocks, links, line breaks. * No external dependencies — keeps bundle small. */ /** Convert a subset of markdown to HTML. */ export declare function renderMarkdown(text: string): string; //# sourceMappingURL=markdown.d.ts.map