/** * Translate the agent's standard Markdown into Telegram HTML parse mode. * * Telegram HTML supports only:
 
 * All & < > in text must be entity-escaped.
 *
 *   Markdown         →  Telegram HTML
 *   **bold**         →  bold
 *   __bold__         →  bold
 *   *italic*         →  italic
 *   _italic_         →  italic
 *   ~~strike~~       →  strike
 *   # heading        →  heading
 *   [text](url)      →  text
 *   - bullet         →  •  bullet
 *   `code`           →  code
 *   ```\n…```         →  
* ```lang\n…``` →
* ```…``` (1 line) → */ /** Escape & < > " for use inside Telegram HTML text nodes and attributes. */ export declare function escapeHtml(s: string): string; export declare function telegramHtml(input: string): string; //# sourceMappingURL=telegram-html.d.ts.map