import * as actions from '../actions'; import { ActionType, Actions } from "../actions"; import * as serialize from './schema'; export interface SerializedAction { type: ActionType; tableName: string; datum: object; schema: serialize.JsonTableSchema; __origin: string; } export declare function actionToJSON(action: actions.Actions): SerializedAction; export declare function actionFromJSON(action: SerializedAction): Actions;