type WatchOptions = { cwd: string; isomorphicPackages?: string[]; }; export declare class LinuxFileWatcher { private options; private sub?; private change$; readonly rebuild$: import("rxjs").Observable<{}>; private debounceTimer?; constructor(options: WatchOptions); start(): Promise; stop(): void; private triggerDebounced; } export {};