/**
 * Parse an HTML string into a Document, using the global DOMParser when
 * available (e.g. inside a Jest jsdom environment) and falling back to
 * the `jsdom` package in pure Node.js.
 */
export declare function parseHtml(html: string): Document;
