export declare const CLIENT_EVENTS: { TICK_RECEIVED: string; CONNECTED: string; DISCONNECTED: string; DISCONNECTED_PERMANENT: string; UNAVAILABLE: string; AUTHENTICATED: string; AUTHENTICATION_FAILED: string; AUTHENTICATION_ABORTED: string; SUBSCRIPTION_SUCCEEDED: string; SUBSCRIPTION_FAILED: string; }; export declare const SERVER_EVENTS: { UP: { AUTH_REQUEST: string; SUBSCRIBE: string; UNSUBSCRIBE: string; PING: string; }; DOWN: { SUBSCRIPTION_SUCCEEDED: string; SUBSCRIPTION_FAILED: string; CONNECTION_ESTABLISHED: string; AUTH_SUCCESS: string; AUTH_FAILURE: string; PONG: string; }; }; export declare const CONNECTION_STATE: { INITIALIZED: string; CONNECTING: string; RECONNECTING: string; CONNECTED: string; UNAVAILABLE: string; FAILED: string; DISCONNECTED: string; };