/** * Watch Command * * Monitors Claude Code sessions and saves transcripts to ~/.nori/transcripts/ * Runs as a background daemon with PID file management. */ /** * Check if the watch daemon is running * * @returns True if daemon is running, false otherwise */ export declare const isWatchRunning: () => Promise; /** * Clean up watch daemon resources * * @param args - Configuration arguments * @param args.exitProcess - Whether to call process.exit (false for tests) */ export declare const cleanupWatch: (args?: { exitProcess?: boolean | null; }) => Promise; /** * Main watch function * * @param args - Configuration arguments * @param args.agent - Agent to watch (default: claude-code) * @param args.daemon - Whether to run as daemon */ export declare const watchMain: (args?: { agent?: string | null; daemon?: boolean | null; }) => Promise; /** * Stop the watch daemon * * @param args - Configuration arguments * @param args.quiet - Suppress output */ export declare const watchStopMain: (args?: { quiet?: boolean | null; }) => Promise; //# sourceMappingURL=watch.d.ts.map