import type { WatchJobOutput } from '../../types.js'; import type { ParsedArgs } from '../parser.js'; import type { ReplDeps } from './types.js'; export type WatchExecOutput = WatchJobOutput & { error?: string; }; /** * A one-shot CLI process has no resident scheduler, so a created/paused/resumed * job never fires on its own — checks only run inside a long-lived `wigolo * serve` daemon or an active MCP session. Surface that on every mutation so the * write is not mistaken for a silent no-op. */ export declare const WATCH_SCHEDULER_CAVEAT = "jobs run while `wigolo serve` (or an MCP session) is active"; export declare function executeWatch(args: ParsedArgs, deps: ReplDeps): Promise; //# sourceMappingURL=watch.d.ts.map