declare class Events { exchange: string; emitter: any; constructor(); on(event: string, callback: Function): void; init(): Promise; emit(event: string, payload?: any): Promise; } declare const events: Events; export { events }; //# sourceMappingURL=events.d.ts.map