type FileWatchHandle = { stop: () => void; }; /** * Watch a directory for file changes. Emits exact capture events with * file content or diffs for each change. */ export declare function watchDirectory(dir: string): FileWatchHandle; export {};