interface DownloadOptions {
    url: string;
    destDir: string;
    fileName: string;
}
export declare function download({ url, destDir, fileName, }: DownloadOptions): Promise<string>;
export declare function getUrl(tag: string, platform?: string, arch?: string): Promise<string>;
export {};
