/** * Translate GFM Markdown into WhatsApp's formatting subset: * **bold** / __bold__ → *bold* * *italic* / _italic_ → _italic_ * ~~strike~~ → ~strike~ * [text](url) → text (url) * # / ## / ### Heading → *Heading* * Fenced (```) and inline (`) code are preserved verbatim — no transforms * run inside them. * * Implementation is a single forward scan that copies code spans/fences * untouched and applies the substitutions only to the prose between them. */ export declare function markdownToWhatsApp(input: string): string; //# sourceMappingURL=markdown-to-wa.d.ts.map