/// /// import fs from 'fs'; interface IFile { name: string; content: fs.ReadStream; } export declare const unZipFiles: (buffer: Buffer, basePath: string) => Promise; export declare const zipFiles: (files: IFile[]) => Promise; export declare const getDirWithIgnoredGlobs: () => string[]; export declare const zipCWD: () => Promise; export {};