import type { CommentTriggerMode } from '../services/doc-subs-store.js'; export type DocWatchCommand = { kind: 'usage'; } | { kind: 'list'; } | { kind: 'off'; docRef?: string; } | { kind: 'watch'; docRef: string; workingDir?: string; requestedMode?: CommentTriggerMode; } | { kind: 'invalid'; reason: 'missing_argument' | 'conflicting_modes'; }; /** Parse the `/watch-comment` command family. */ export declare function parseDocWatchCommand(content: string): DocWatchCommand; /** Only the actual watch action needs a live/prewarmed AI session. */ export declare function docWatchCommandNeedsSession(content: string): boolean; //# sourceMappingURL=doc-watch-command.d.ts.map