import { Hono } from 'hono';
/**
* Fetch every remote `http(s)` `` and inline it as a `data:` URI
* (pandoc `--embed-resources` parity) so a shared `.html` needs no network at
* render time. Each fetch has a short timeout; any failure (network, timeout,
* non-200, oversized) degrades gracefully by leaving the original remote `src`
* untouched — the export never throws or blocks on a slow host. Local/`data:`
* URIs are already handled by `inlineImages` and are skipped here.
*/
export declare function inlineRemoteImages(html: string): Promise;
export declare function wrapMarkdownAsHtml(markdown: string, opts?: {
baseDir?: string;
deck?: boolean;
}): Promise;
/**
* Wrap a rendered `