/**
* Converts an HTML string to Markdown.
*
* Uses regex-based transformations so it is compatible with edge runtimes
* (Cloudflare Workers, Deno Deploy, etc.) — no DOM or Node.js APIs required.
*/
declare function htmlToMarkdown(html: string): string;
export { htmlToMarkdown };