/** * Watch Command — Watch specs for changes and auto-regenerate code. * * Usage: * memi watch Watch all specs * memi watch --debounce Debounce interval in ms (default 500) */ import type { Command } from "commander"; import type { MemoireEngine } from "../engine/core.js"; export declare function registerWatchCommand(program: Command, engine: MemoireEngine): void;