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