import type { HTMLNode } from "./types";
export interface ParserOptions {
    ignoreWhiteSpace: boolean;
}
export declare const parseHtml: (htmlString: string, options: ParserOptions) => HTMLNode[];
