interface WatcherOptions { root: string; debounceMs?: number; onUpdate?: (file: string) => void; onError?: (error: Error) => void; } export declare function startWatcher(options: WatcherOptions): { stop: () => void; }; export {}; //# sourceMappingURL=watcher.d.ts.map