import { ChildProcess } from 'node:child_process'; export type AndroidEmulatorStatus = 'running' | 'loading' | 'stopped'; export declare const getEmulatorNameFromId: (emulatorId: string) => Promise; export declare const getEmulatorDeviceId: (avdName: string) => Promise; export declare const getEmulatorStatus: (avdName: string) => Promise; export declare const runEmulator: (name: string) => Promise; export declare const stopEmulator: (avdName: string) => Promise; export declare const isAppInstalled: (emulatorId: string, bundleId: string) => Promise; export declare const reversePort: (port: number) => Promise; //# sourceMappingURL=emulator.d.ts.map