import { State, Transitions } from 'typescript-state-machine'; export declare class ClientState extends State { } export declare const states: { STOPPED: ClientState; STARTED: ClientState; AUTHENTICATING: ClientState; AUTHENTICATED: ClientState; NETWORK_OR_SERVER_ERROR: ClientState; AUTHENTICATION_ERROR: ClientState; WS_CONNECTING: ClientState; WS_CONNECTED: ClientState; WS_CONNECTION_ERROR: ClientState; STOPPING: ClientState; }; export declare const validTransitions: Transitions;