import { AllActions } from "./actions"; import { Action } from "./types"; export declare const metaActions: { /** Batch multiple actions in one message to the client. */ multiAction: import("./actions").ActionCreator<"Meta", "multiAction", Action[]>; /** When the connection is first established. */ connected: import("./actions").ActionCreator<"Meta", "connected", void>; /** Client is responsible for initializing the handshake after a connection is established. */ handshakeRequest: import("./actions").ActionCreator<"Meta", "handshakeRequest", { queuedActions: Action[]; }>; /** Handshake reply from the server. */ handshakeReply: import("./actions").ActionCreator<"Meta", "handshakeReply", { initialState: any; version: string; id: string; }>; /** When the connection is lost. */ disconnected: import("./actions").ActionCreator<"Meta", "disconnected", void>; /** Send an error status to the client. Should not be dispatched in the server store. */ error: import("./actions").ActionCreator<"Meta", "error", unknown>; /** Regularly dispatched event, mostly used for time synchronization. */ sync: import("./actions").ActionCreator<"Meta", "sync", void>; }; export type MetaAction = AllActions;