/** * Background sync daemon management * Manages a child process that runs the file watcher * * Day 1: not invoked by CLI surface; retained for future automatic-sync milestone. */ import type { DaemonState } from "./types.js"; export declare function isDaemonRunning(hqRoot: string): boolean; export declare function startDaemon(hqRoot: string): void; export declare function stopDaemon(hqRoot: string): void; export declare function getDaemonState(hqRoot: string): DaemonState | null; //# sourceMappingURL=daemon.d.ts.map