export declare class ConnectionTransport {
    private _name;
    get name(): string;
    constructor(name: string);
    toString(): string;
    equals(other: ConnectionTransport): boolean;
}
