export declare class ConnectionStatus {
    private static names;
    private _value;
    readonly value: Number;
    readonly name: string;
    constructor(value: number);
    toString(): string;
    equals(other: ConnectionStatus): boolean;
}
