/// export default class Downloader { static getFile(url: string): Promise; static download(url: string, destination: string): Promise; static existsOrDownload(url: string, destination: string): Promise; static checkOrDownload(url: string, sha1: string | string[], destination: string): Promise; static unpack(file: string, destination: string): Promise; }