import type { CapabilityModule, ModuleKind } from "./types.js"; /** * Ordered catalog: the six channels, four memory tiers, sandbox, observability, * then the two internal provider modules. Wizard-visible modules (all but the two * `provider:*`) come first; the composer presents them in this order. */ export declare const CAPABILITY_MODULES: readonly CapabilityModule[]; /** Resolve a module by its id, or `undefined` when no module owns it. */ export declare function findModule(id: string): CapabilityModule | undefined; /** All modules of a given kind, in catalog order. */ export declare function modulesByKind(kind: ModuleKind): readonly CapabilityModule[]; //# sourceMappingURL=catalog.d.ts.map