export declare const context: {
    subId: number;
};
export declare class Bus {
    protected subscribers: any;
    constructor();
    getSubscribers(): any;
    subscribe(subId: string, callback: Function): void;
    unsubscribe(subId: string): void;
}
