import { type AndroidAgentOpt } from '@midscene/android'; export interface ScrcpyServerController { /** Bind host, used to connect local Playground pages to this sidecar. */ readonly host?: string; currentDeviceId: string | null; launch(port?: number): Promise; close(): unknown; } export interface AndroidPlatformOptions { staticDir?: string; scrcpyServer?: ScrcpyServerController; scrcpyPort?: number; getAgentOptions?: () => AndroidAgentOpt; } export declare const androidPlaygroundPlatform: import("@midscene/playground").PlaygroundPlatformDescriptor; //# sourceMappingURL=platform.d.ts.map