import { Constructor } from "src/types"; import { Binary } from "src/utils"; import { Zip } from "src/zip"; import { OpenXmlPart } from "./openXmlPart"; export declare class Xlsx { static load(file: Binary): Promise; static open(zip: Zip): Promise; private static getMainDocumentPath; readonly mainDocument: OpenXmlPart; private readonly _parts; private readonly zip; get rawZipFile(): Zip; private constructor(); export(outputType?: Constructor): Promise; private saveXmlChanges; }