/** * Android Emulator Deployment utilities */ export declare class EmulatorDeployer { private adbPath; private serial; constructor(adbPath: string, serial: string); /** * Install APK on emulator */ installAPK(apkPath: string, _packageName?: string): Promise; /** * Launch app on emulator */ launchApp(packageName: string, activityName?: string): Promise; /** * Check if device is ready */ isDeviceReady(): Promise; /** * Wait for device to be ready */ waitForDevice(timeout?: number): Promise; /** * Find or select emulator */ static findOrSelectEmulator(targetAVD?: string): Promise; } //# sourceMappingURL=emulator-deployer.d.ts.map