/** * Generate zip archive from a list of files and directories * * @param workDir Absolute path to current working directory * @param rootDir Relative path from the working directory to the root directory that should be archived * @param outputPath Path to the output zip archive */ export declare function generateZip(workDir: string, rootDir: string, outputPath: string): Promise;