/** * Canonical module enumeration for the Widgets/catalog filtering feature. * * Membership to a module used to be 100% conventional (folder + `name` * prefix). This turns the convention into structure: `tools.ts`, * `resources.ts` and `prompts.ts` group their catalogs as * `Record`, and the server composes the active catalog by * intersecting these groups with the modules enabled via `MODYO_MCP_MODULES`. * * `widgets` is a first-class module: its tools (Storybook + local FS), * prompts (scaffolding) and catalog resources are gated like any other. */ export declare const MODULES: readonly ["core", "content", "channels", "customers", "widgets"]; export type Module = (typeof MODULES)[number]; //# sourceMappingURL=modules.d.ts.map