/** * Daemon process entry point. * Starts the unified HTTP server, manages lifecycle, and records its presence * in the per-serial registry (keyed on the device's hardware serial). */ export interface StartDaemonOptions { /** Device hardware serial (stable identity / registry key). Resolved by the client. */ serial: string; /** Current ADB transport address (IP:port or serial). Resolved by the client. */ address: string; /** Requested HTTP port. Defaults to 0 (OS-assigned) when undefined. */ port?: number; host?: string; idleTimeout?: number; lowBattery?: number; unpluggedTimeout?: number; } export declare function startDaemon(opts: StartDaemonOptions): Promise; //# sourceMappingURL=daemon.d.ts.map