export declare class EventAggregator {
    private channels;
    constructor();
    publish(channel: string, ...args: any[]): void;
    unsubscribe(channel: string, func: Function): void;
    subscribe(channel: string, func: Function): void;
}
