import { Node, NodeWithChildren } from 'domhandler'; export interface GeneratorOptions { disableAttrEscape?: boolean; dumpEmptyAttri?: boolean; beforeEach?: (node: Node, parent: NodeWithChildren | null) => Node; } declare function generator(dom: Node[], userOptions?: GeneratorOptions): string; export default generator; //# sourceMappingURL=index.d.ts.map