/** * Check if the claude-mem worker is currently running. */ export declare function isWorkerRunning(port?: number): Promise; /** * Get the command to start the claude-mem worker. * Tries multiple discovery strategies. */ export declare function getWorkerCommand(): { cmd: string; args: string[]; } | null; /** * Start the claude-mem worker if not already running. * Idempotent — does nothing if worker is already running. * Returns true if worker is running after this call. */ export declare function startWorker(port?: number, timeoutMs?: number): Promise; //# sourceMappingURL=worker-manager.d.ts.map