import { FSWatcher } from 'chokidar'; import { Service } from '../services'; declare type WatchNextRoutesCallback = { (): Promise; }; export declare const watchNextRoutes: (services: Service[], callback: WatchNextRoutesCallback) => Promise; export {};