/** * Converts GitHub-flavored markdown to Telegram-compatible HTML. * * Telegram HTML supports: b, i, u, s, code, pre, a, blockquote. * Unsupported GFM features (tables, images, headers) are rendered as plain text. * * Expects: markdown string. * Returns: escaped HTML string safe for Telegram parse_mode="HTML". */ export declare function markdownToTelegramHtml(markdown: string): string; //# sourceMappingURL=markdownToTelegramHtml.d.ts.map