type GithubRelease = { downloadUrl: string; filename: string; tag: string; }; export declare const getGithubRelease: (releasesUrl: string, version: string) => Promise; export declare const downloadGithubRelease: (name: string, url: string, location: string) => Promise; export {};