export declare enum ConnectionState {
    DISCONNECTED = 0,
    CONNECTING = 1,
    CONNECTED = 2,
    HANDSHAKING = 3,
    READY = 4,
    RECONNECTING = 5,
    CLOSING = 6
}
export declare function getConnectionStateName(state: ConnectionState): string;
