import { XmlNode, XmlParser } from '../xml'; import { Zip } from '../zip'; import { Rels } from './rels'; export declare class XmlPart { readonly path: string; private readonly zip; private readonly xmlParser; readonly rels: Rels; private root; constructor(path: string, zip: Zip, xmlParser: XmlParser); xmlRoot(): Promise; getText(): Promise; saveChanges(): Promise; }