/**
 * Possible states for the RxStomp
 *
 * Part of `@stomp/rx-stomp`
 */
export declare enum RxStompState {
    CONNECTING = 0,
    OPEN = 1,
    CLOSING = 2,
    CLOSED = 3
}
