declare class EventBus { private events; constructor(); emit(type: string, ...args: any): void; on(type: string, fun: any): void; off(type: string): void; } declare const eventBus: EventBus; export default eventBus;