/** * Device information from parsing simctl output */ interface BootedDevice { name: string; udid: string; } /** * Get the currently booted iOS simulator * * @returns Device info with name and UDID * @throws Error if no booted simulator is found */ export declare function getBootedDevice(): Promise; /** * Resolve a device UDID, using auto-detection if not provided * * @param udid - Optional UDID to use directly * @returns The resolved UDID * @throws McpError if UDID is empty or if auto-detection fails */ export declare function resolveDeviceId(udid?: string): Promise; export {}; //# sourceMappingURL=device-detection.d.ts.map