/** * mrsf watch — Monitor files and validate / reanchor on change. * * By default, validation is run on every change. Pass `--reanchor` to * also auto-fix drifted anchors when a Markdown file is saved. * * Trigger rules (avoids feedback loops): * - `.md` change → reanchor (if enabled), then validate sidecar * - `.review.yaml/json` change → validate only */ import type { Command } from "commander"; export interface WatchOptions { reanchor?: boolean; dryRun?: boolean; threshold: string; git: boolean; from?: string; updateText?: boolean; force?: boolean; strict?: boolean; debounce: string; } export declare function registerWatch(program: Command): void; //# sourceMappingURL=watch.d.ts.map