declare namespace SDK { class IZipFile { PathExists(path: string): boolean; GetFileList(): string[]; GetFirstEntryWithExtension(ext: string): SDK.IZipFileEntry | null; GetEntry(path: string): SDK.IZipFileEntry | null; ReadText(entry: SDK.IZipFileEntry): Promise; ReadJson(entry: SDK.IZipFileEntry): Promise; ReadBlob(entry: SDK.IZipFileEntry): Promise; } }