/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * */ import type { WatcherBackend, WatcherBackendChangeEvent, WatcherBackendOptions } from "../flow-types"; export interface Listeners { readonly onFileEvent: (event: WatcherBackendChangeEvent) => void; readonly onError: (error: Error) => void; } export declare class AbstractWatcher implements WatcherBackend { readonly root: string; readonly ignored: null | undefined | RegExp; readonly globs: ReadonlyArray; readonly dot: boolean; readonly doIgnore: (path: string) => boolean; constructor(dir: string, $$PARAM_1$$: WatcherBackendOptions); onFileEvent(listener: (event: WatcherBackendChangeEvent) => void): () => void; onError(listener: (error: Error) => void): () => void; startWatching(): Promise; stopWatching(): Promise; emitFileEvent(event: Omit): void; emitError(error: Error): void; getPauseReason(): null | undefined | string; }