import { BSEventSubscriberModel, BSEvent } from "../commonTypes/common-types";
declare class DataEventsService {
    callbacks: BSEventSubscriberModel[];
    constructor();
    registerWinPopState(): void;
    Emit(eventName: string, source: any, eventArgs: BSEvent): void;
    Unsubscribe(model: BSEventSubscriberModel): void;
    Subscribe(model: BSEventSubscriberModel): void;
}
export declare const dataEventsService: DataEventsService;
export {};
