/** * Convert standard Markdown to Discord-compatible Markdown. * * Discord already supports most GFM, so the main job here is: * 1. Strip unsupported HTML tags (Discord ignores them) * 2. Convert // to Discord markdown equivalents * 3. Ensure code blocks are preserved * 4. Convert headings to bold (Discord doesn't render # in regular messages) */ export declare function markdownToDiscord(markdown: string): string; //# sourceMappingURL=markdown-to-discord.d.ts.map