import { ConnectionState } from '../entities/connection-state';
export declare class ConnectionStateChangedEvent {
    static readonly type = "ConnectionStateChanged";
    previous?: ConnectionState;
    state: ConnectionState;
    reason?: string;
    code?: number;
}
