export declare const CLIENT_PROTOCOL_VERSION = 1.5; /** * A collection of the different states a connection may be in. * @exports CONNECTION_STATES * @type {{connecting: number, connected: number, reconnecting: number, disconnected: number}} * @readonly * @public */ export declare const CONNECTION_STATES: { connecting: number; connected: number; reconnecting: number; disconnected: number; }; /** * A collection of different states that the client may be in. * @exports CLIENT_STATES * @type {{starting: number, started: number, stopping: number, stopped: number}} * @readonly * @public */ export declare const CLIENT_STATES: { starting: number; started: number; stopping: number; stopped: number; }; /** * A collection of all of the currently defined events that may be fired off during different stages of a connection's lifecycle. * @exports CONNECTION_EVENTS * @type {{error: string, connectionSlow: string, connecting: string, onConnected: string, receiving: string, received: string, reconnecting: string, reconnected: string, stateChanging: string, stateChanged: string, disconnecting: string, disconnected: string}} * @readonly * @public */ export declare const CONNECTION_EVENTS: { error: string; connectionSlow: string; connecting: string; onConnected: string; receiving: string; received: string; reconnecting: string; reconnected: string; stateChanging: string; stateChanged: string; disconnecting: string; disconnected: string; }; /** * A collection of all of the currently defined events that may be fired off during the different stages of the client's lifecycle. * @exports CLIENT_EVENTS * @type {{starting: string, started: string, stopping: string, stopped: string, error: string, stateChanging: string, stateChanged: string, receiving: string, received: string}} * @readonly * @public */ export declare const CLIENT_EVENTS: { starting: string; started: string; stopping: string; stopped: string; error: string; stateChanging: string; stateChanged: string; receiving: string; received: string; connectionSlow: string; }; /** * A collection of different messages that may be written to the console when certain conditions are met. * @exports RESOURCES * @type {{nojQuery: string, noTransportOnInit: string, errorOnNegotiate: string, stoppedWhileLoading: string, stoppedWhileNegotiating: string, errorParsingNegotiateResponse: string, errorDuringStartRequest: string, stoppedDuringStartRequest: string, errorParsingStartResponse: string, invalidStartResponse: string, protocolIncompatible: string, sendFailed: string, parseFailed: string, longPollFailed: string, eventSourceFailedToConnect: string, eventSourceError: string, webSocketClosed: string, pingServerFailedInvalidResponse: string, pingServerFailed: string, pingServerFailedStatusCode: string, pingServerFailedParse: string, noConnectionTransport: string, webSocketsInvalidState: string, reconnectTimeout: string, reconnectWindowTimeout: string}} * @readonly * @public */ export declare const RESOURCES: { nojQuery: string; noTransportOnInit: string; errorOnNegotiate: string; stoppedWhileLoading: string; stoppedWhileNegotiating: string; errorParsingNegotiateResponse: string; errorDuringStartRequest: string; stoppedDuringStartRequest: string; errorParsingStartResponse: string; invalidStartResponse: string; protocolIncompatible: string; sendFailed: string; parseFailed: string; longPollFailed: string; eventSourceFailedToConnect: string; eventSourceError: string; webSocketClosed: string; pingServerFailedInvalidResponse: string; pingServerFailed: string; pingServerFailedStatusCode: string; pingServerFailedParse: string; noConnectionTransport: string; webSocketsInvalidState: string; reconnectTimeout: string; reconnectWindowTimeout: string; }; //# sourceMappingURL=Constants.d.ts.map