/** * Convert standard markdown to WhatsApp formatting. * WhatsApp supports *bold*, _italic_, ~strikethrough~, ```code```, `code`. * It does NOT support headings or hyperlinks, so we convert those. */ export declare function markdownToWhatsApp(text: string): string; /** * Split text into chunks that fit within WhatsApp's message length limit. * Converts markdown to WhatsApp formatting before chunking. */ export declare function formatResponse(text: string): string[]; //# sourceMappingURL=format.d.ts.map