import { HubConnectionOptions } from "./hub-connection.model";
import { HubConnection } from "./hub-connection";
export declare class HubConnectionFactory {
    private source;
    private hubConnections;
    create(...connectionOptions: HubConnectionOptions[]): this;
    get<THub>(key: string): HubConnection<THub>;
    remove(key: string): void;
    connectAll(): void;
    disconnectAll(): void;
}
