export interface DownloadInfo { url: string; filename: string; version: string; canary: boolean; } export declare function getDenoDownloadUrl(canary: boolean): Promise; export declare function downloadDeno(binPath: string, info: DownloadInfo): Promise;