import { Selector } from 'css-what/lib/es/types';
import { Node, NodeTag } from 'posthtml-parser';
export declare class NgDocHtmlParser {
    private html;
    private readonly parsedHTML;
    constructor(html: string);
    find(selector: string): NodeTag | undefined;
    removeAttribute(node: Node, name: string): void;
    setAttribute(node: Node, name: string, value?: string): void;
    setAttributesFromSelectors(element: NodeTag, selectors: Selector[]): void;
    fillAngularAttributes(element: NodeTag, properties: Record<string, string>): void;
    serialize(): string;
}
