import { Bus } from "./Bus.js"; declare module "./Bus" { interface Events { "file.changed": { file: string; }; } } interface Opts { bus: Bus; root: string; } export declare function createProjectWatcher(opts: Opts): void; export {};