import { ActionInterface } from"../interface/ActionInterface";
/**
* A record of core actions, mapped by their unique `name` property.
* Automatically derives names from the action classes.
*/
export declareconstcoreActions: Record<string, new () => ActionInterface>;