import { Listener } from "../types/env";
export default class EventBus {
constructor();
addEvent(callerId: string, type: string, listener: Listener): void;
removeEvent(callerId: string, type: string): void;
trigger(type: string, detail?: unknown): void;
}