import type { HTMLDOMParserOptions } from '../types.mjs';
/**
 * Parses HTML string to DOM nodes in browser.
 *
 * @param html - HTML markup.
 * @param options - Parser options.
 * @returns - DOM elements.
 */
export default function HTMLDOMParser(html: string, options?: HTMLDOMParserOptions): import("../types.mjs").DOMNode[];
//# sourceMappingURL=html-to-dom.d.mts.map