/** * Compresses all files that match an array of glob patterns into a ZIP file written to the * specified path. * The contents of the ZIP file will have the same folder structure of the matched files, with * the root of the file matching the current working directory. * @param path The full path where the ZIP file will be saved, including the * filename and extension * @param patterns Glob patterns of files to include in the ZIP file * @param ignore Patterns of files to ignore */ export declare function createZipFile(path: string, patterns: string[], ignore?: string[]): Promise;