/** * @author Aocheng Wang */ /** * Download a file from URL and save to a temporary file. * The temp file can only be used during callback. After that the temp file is deleted. * */ export declare function downloadToTempFile(url: string, options: { timeout: number; headers?: { [key: string]: string; }; }, callback: (filePath: string) => Promise): Promise; export declare function unzip(zipFilePath: string, destinationPath: string): Promise; //# sourceMappingURL=downloadHelper.d.ts.map