export declare class EventBus {
    private static instance?;
    private subscriptions;
    private constructor();
    static getInstance(): EventBus;
    private isEventExist;
    static broadcast(contextName: string, args: unknown[]): void;
    static subscribe<T extends Function>(contextName: string, callback: T): () => void;
}
//# sourceMappingURL=EventBus.d.ts.map