///
import JSZip from 'jszip';
declare class Compressor {
static readDir: (zip: JSZip, dirPath: string) => Promise;
static zip: (sourceDir: string, filename: string) => Promise;
static zipBuffer: (sourceDir: string) => Promise;
static unzip: (zipFilePath: string, targetDir: string) => Promise;
}
export default Compressor;