import { Context } from "../imports/Context.js"; import { XMLNode } from "./XMLNode.js"; export declare class XMLDocument2 { constructor(cx: Context, args: any[], ctorObj: Function, inNewExpr: boolean); createElement(name: string): XMLNode; createElementWithTextValue(name: string, value: string): XMLNode; getDocumentElement(): XMLNode; getFirstNode(xpath: string): XMLNode; getNextNode(prev: any): XMLNode; getNode(xpath: string): XMLNode; getNodeText(xpath: string): string; isValid(): boolean; parseXML(xmlDoc: string): boolean; setCurrentElement(element: XMLNode): void; setEnableCDATAReporting(enableCDATAReporting: boolean): void; setNamespaceAware(nsAware: boolean): void; toString(): string; } //# sourceMappingURL=XMLDocument2.d.ts.map