/** * Compresses files or a folder into a zip archive. * * @example * Basic usage * ```typescript * // Compressing multiple files into a zip archive * zip(['file1.txt', 'file2.txt'], 'archive.zip'); * * // Compressing a folder into a zip archive * zip('filePath', 'archive.zip'); * ``` * * @param files - A folder path or an array of file paths to be included in the zip archive. * @param zipFile - The destination path for the created zip file. */ export default function zip(files: string | string[], zipFile: string): void;