import { type Relationship } from "./relationships.js"; export declare class PptxPackage { private zip; private constructor(); static open(data: Buffer | ArrayBuffer): Promise; getPartXml(path: string): Promise; getPartBuffer(path: string): Promise; getRelationships(partPath: string): Promise>; resolveRelTarget(partPath: string, relTarget: string): string; }