import { Action } from '../../utils/actions/actions'; export declare const enum UndoActionTypes { UNDO = "@@undo/UNDO", REDO = "@@undo/REDO" } export type UndoActions = UndoAction | RedoAction; export type UndoAction = Action; export type RedoAction = Action;