export interface DaemonOptions { apiUrl?: string; /** Exact installed CLI version advertised to the gateway. */ cliVersion?: string; workerId?: string; platform?: string; capabilities?: string; label?: string; debug?: boolean; interactiveSession?: boolean; } /** * Run a headless device worker against one Lobu installation. * * WORKER_API_TOKEN remains an escape hatch for unattended setups. Ordinarily * the command uses the target installation's named OAuth context to mint and * cache a worker-bound child PAT. The short-lived OAuth bearer is never handed * to the long-running worker and never crosses URL origins. */ export declare function daemonCommand(options: DaemonOptions): Promise; //# sourceMappingURL=daemon.d.ts.map