import type { iOSResult } from "./ios.js"; export interface PhysicalIosDevice { udid: string; name: string; version: string; productType: string; } export declare const PMD3_MISSING_ERROR: string; export declare const DDI_HINT: string; export declare function listPhysicalIosDevices(): Promise; export declare function resolvePhysicalIosDevice(hint: string): Promise; export declare function capturePhysicalIosScreenshot(udid: string, outputPath: string): Promise<{ ok: true; } | { ok: false; error: string; }>; export declare function physicalIosScreenshot(udid: string, outputPath?: string): Promise; //# sourceMappingURL=iosPhysical.d.ts.map