/** Serialize a DOM node with attributes in name order, so a comparison is order-independent. */ export declare function serialize(node: Node): string; /** * The markup with framework artifacts removed: comment nodes, generated ids * (Preact `P0-0`, Vue `v-0`, module counters `strand-x-1`) replaced by `ID`, * the `value`, `checked` and `spellcheck` attributes of form controls (one * framework sets the property, another reflects it; the DOM state is the same), * and whitespace-only text between elements dropped. */ export declare function normalizeMarkup(html: string): string; //# sourceMappingURL=serialize.d.ts.map