export type DaemonStatus = { running: boolean; pid?: number; socket: string; }; export declare function status(): DaemonStatus; /** * Spawn the daemon as a detached background process. * Resolves once the socket appears or rejects on timeout. */ export declare function spawnDetached(options?: { logPath?: string; }): Promise; export declare function stopDaemon(): Promise; //# sourceMappingURL=lifecycle.d.ts.map