/** * AppProxy — app management ops (launch/stop/install). * * Extracted from DeviceManager (D9.1b). Guards via hasAppManagement before * delegating; throws the same messages DeviceManager used to throw so * existing tool errors remain byte-identical. */ import type { Platform } from "../../platform-types.js"; import type { AdapterResolver } from "./input-proxy.js"; export declare class AppProxy { private readonly resolve; constructor(resolve: AdapterResolver); launchApp(packageOrBundleId: string, platform?: Platform, deviceId?: string): Promise; stopApp(packageOrBundleId: string, platform?: Platform, deviceId?: string): void; installApp(path: string, platform?: Platform, deviceId?: string): string; } //# sourceMappingURL=app-proxy.d.ts.map