/** * Converts GitHub-flavored markdown to WhatsApp-compatible text formatting. * * WhatsApp supports: *bold*, _italic_, ~strikethrough~, ```monospace``` * Unsupported GFM features (tables, images, links) are rendered as plain text. * * Expects: markdown string. * Returns: WhatsApp-formatted text string. */ export declare function markdownToWhatsAppText(markdown: string): string; //# sourceMappingURL=markdownToWhatsAppText.d.ts.map