interface IosSimulator { runtime: string; osVersion: string; windowName: string; osType: 'iOS'; state: 'Booted' | 'Shutdown'; isAvailable: boolean; name: string; udid: string; lastBootedAt?: Date; } export declare function selectSimulatorAsync({ forcePrompt, }?: { forcePrompt?: boolean; }): Promise; export declare function getIosSimulatorByIdOrNameAsync(simulator: string): Promise; export declare function getFirstBootedIosSimulatorAsync(): Promise; export declare function getAvaliableIosSimulatorsListAsync(query?: string): Promise; export declare function ensureSimulatorBootedAsync(simulator: IosSimulator): Promise; export declare function openSimulatorAppAsync(simulatorUdid: string): Promise; export declare function launchAppAsync(simulatorUdid: string, bundleIdentifier: string): Promise; export declare function ensureSimulatorAppOpenedAsync(simulatorUuid: string): Promise; export declare function installAppAsync(deviceId: string, filePath: string): Promise; export declare function getSimulatorAppIdAsync(): Promise; export {};