export interface ZipContentEntry { filename: string; directory: boolean; compressedSize: number; uncompressedSize: number; lastModDate: Date; } export declare function createZip(zipPath: string, sourcePaths: string[]): Promise; export declare function readZip(zipPath: string): Promise; export declare function unZip(zipPath: string, destinationPath?: string): Promise;