/** * Action mapping registry — public surface. * * Tier 1 mappings auto-register into the default registry on import of * this module. Tier 2 and Tier 3 are added in #88. */ export type { ActionMapping, ActionMapCtx, ActionMappedResult, ActionMappingRegistry, } from "./registry.js"; export { createRegistry, getDefaultRegistry, lookupAction, setDefaultRegistry } from "./registry.js"; import { registerTier1 } from "./tier-1.js"; import { registerTier2 } from "./tier-2.js"; import { registerTier3 } from "./tier-3.js"; export { registerTier1, registerTier2, registerTier3 }; //# sourceMappingURL=index.d.ts.map