import { DownloadOptions, IgnoreFunc, OfficialArch, OfficialPlatform, Options } from './types.js'; export declare function createDownloadOpts(opts: Options, platform: OfficialPlatform, arch: OfficialArch): DownloadOptions; export declare function createDownloadCombos(opts: Options, selectedPlatforms: OfficialPlatform[], selectedArchs: OfficialArch[], ignoreFunc?: IgnoreFunc): DownloadOptions[]; export declare function downloadElectronZip(downloadOpts: DownloadOptions): Promise;