import { CLICommand } from "./CLICommand"; export declare class DownloadFileCommand implements CLICommand { private readonly url; constructor(url: string); /** * Download the file from a HTTP server */ run(argv: string[]): Promise; }