/** * Pure parsers for simctl JSON / text output. No I/O. */ import type { IosDevice } from "./types.js"; /** * Parse output of `xcrun simctl list devices -j` into a flat list of available * simulators. Unavailable devices are filtered out. */ export declare function parseDevicesJson(output: string): IosDevice[]; //# sourceMappingURL=simctl-parsers.d.ts.map