export type ZipDirConfig = { /** * The directory to zip. */ sourceDir: string; /** * Zip will be written to this directory. */ destDir: string; /** * The name of the zip file to create including extension. * E.g., "myArchivedDir.zip" */ name: string; }; /** * Zip the contents of a directory to a file. * * @param config what and where to zip * @returns The created zip file path */ export declare const zipDir: (config: ZipDirConfig) => Promise;