import { Action, IApplicationSpec, ServerStoreAction } from "../util"; import { MetaAction } from "../util/meta"; import { IClient } from "./clients"; export type ServerStoreInternalAction = ServerStoreAction | MetaAction; export declare function tagActionWithOriginatingClient(action: Action, client: IClient): void; export declare function getOriginatingClient(action: Action): IClient | undefined; export declare function tagActionWithTargetClientId(action: Action, id: string): void; export declare function getTargetClientId(action: Action): string | undefined;