import { AndroidEmulator } from './adb'; export declare const EMULATOR_MAX_WAIT_TIMEOUT_MS: number; export declare function getEmulatorExecutableAsync(): Promise; export declare function selectEmulatorAsync(): Promise; export declare function ensureEmulatorBootedAsync(emulator: AndroidEmulator): Promise; export declare function installAppAsync(emulator: AndroidEmulator, apkFilePath: string): Promise; export declare function startAppAsync(emulator: AndroidEmulator, packageName: string, activityName: string): Promise;