import { type NfFileWatcher } from '@softarc/native-federation/internal'; export interface DebouncedChangeWatcher { watcher: NfFileWatcher; pendingPaths: Set; waitForChange: () => Promise; resetChangePromise: () => void; dispose: () => void; } export declare function createDebouncedChangeWatcher(rebuildDelay: number): DebouncedChangeWatcher; //# sourceMappingURL=change-watcher.d.ts.map