export declare module Event {
    interface IEventSubscription {
        subscriptionId: string;
        eventName: string;
        callback: (...args: any[]) => void;
    }
}
