declare module "./bus.js" { interface Events { "file.changed": { file: string; relative: string; }; } } export declare const useWatcher: () => { subscribe: (type: Type, cb: (payload: import("./bus.js").EventPayload) => void) => { type: keyof import("./bus.js").Events; cb: (payload: any) => void; }; };