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