import { Subject } from 'rxjs';
export interface StreamCollection {
    hasWithoutGlobal(key: string): boolean;
    has(key: string): boolean;
    getWithoutGlobal(key: string): Subject<any>;
    get(key: string, create?: boolean): Subject<any>[];
    add<T>(key: string): Subject<T>;
}
