/** * Feature modules for the scaffold composition engine. * * Each module is a FeatureModule function that returns a FeatureDefinition * based on user choices. The definition includes: * - injections: code to inject into shared files at anchor points * - postProcess: optional hook for complex transformations */ import type { FeatureModule } from "../compose.js"; /** * All feature modules keyed by their feature name. * The "footer" key is a pseudo-feature triggered by footerNavGroup or footerCopyright. * Order matches FEATURES array in constants.ts for deterministic injection. */ export declare const featureModules: Record;