import * as usbmux from "./usbmux"; export { startCdpServer, type CdpServerOptions, type CdpServer, } from "./cdp/server"; export { startBunCdpServer, type BunCdpServerOptions, type BunCdpServer, type BunUpstream, } from "./cdp/bun-server"; export type { Device, DeviceProperties } from "./usbmux"; export type Target = { source: "device" | "simulator"; udid: string; deviceID?: number; appId: string; appName: string; bundleId?: string; pageId: number; title: string; url: string; type: string; }; export declare function listDevices(): Promise; export declare function listTargets(): Promise;