declare enum ConnectionState {
    /**
     * An unknown network event has created a disconnect between the client and its event provider. The SDK will attempt
     * to automatically reconnect.
     */
    DISCONNECTED = "DISCONNECTED",
    /**
     * The SDK has successfully reconnected.
     */
    CONNECTED = "CONNECTED"
}
export default ConnectionState;
//# sourceMappingURL=ConnectionState.d.ts.map