export type XmlDoc = Document; /** * Standard XML declaration for serialized OOXML parts. xmldom's serializer * omits the declaration, so every emitted part prepends this manually. */ export declare const XML_DECL = ""; export declare function parseXml(xml: string): XmlDoc; export declare function serializeXml(doc: XmlDoc): string; export declare function textContent(node: Node | null | undefined): string; //# sourceMappingURL=xml.d.ts.map