/** * Action type registry: map ActionType to ActionFactory. */ import type { ActionFactory, ActionType } from "../actions/types.js"; declare function register(actionType: ActionType, factory: ActionFactory): void; declare function get(actionType: ActionType): ActionFactory | undefined; export declare const ActionRegistry: { register: typeof register; get: typeof get; }; export {}; //# sourceMappingURL=action-registry.d.ts.map