export declare class FileWatcher { static watch(paths: string | string[], sits: ("add" | "change" | "unlink")[], callback: (changedFiles: { type: string; filePath: string; }[]) => void): Promise; }