export type EventBusCallback = (event: Event) => void; export declare class EventBus { static on(type: string, callback: EventBusCallback): void; static dispatch(type: string, data: any): void; static remove(type: string, callback: EventBusCallback): void; }