import type { AnyHtmlNode } from 'domhandler'; import { NullSelection } from '../core/errors.js'; import './html/patch-dom.js'; export { Element } from 'domhandler'; export declare const parse: (html: string) => AnyHtmlNode; export declare const select: (el: AnyHtmlNode, selector: string, expand: boolean) => NullSelection | AnyHtmlNode | AnyHtmlNode[] | undefined; export declare const toValue: (el: AnyHtmlNode) => string; export declare const findLink: (el: AnyHtmlNode) => NullSelection | AnyHtmlNode | AnyHtmlNode[] | undefined;