import { AppPlatform } from '../graphql/generated'; export declare function downloadFileWithProgressTrackerAsync(url: string, outputPath: string, progressTrackerMessage: string | ((ratio: number, total: number) => string), progressTrackerCompletedMessage: string): Promise; export declare function downloadAndMaybeExtractAppAsync(url: string, platform: AppPlatform, cachedAppPath?: string): Promise; export declare function extractAppFromLocalArchiveAsync(appArchivePath: string, platform: AppPlatform): Promise;