import { A as ActionId, j as ActionImpl, b as Action, i as History } from '../../types-KA65ZTMd.js'; import 'react'; interface ActionInterfaceOptions { historyManager?: History; } declare class ActionInterface { actions: Record; options: ActionInterfaceOptions; constructor(actions?: Action[], options?: ActionInterfaceOptions); add(actions: Action[]): { [x: string]: ActionImpl; }; remove(actions: Action[]): { [x: string]: ActionImpl; }; } export { ActionInterface };