/** * Core Templates — fusion.ts, context.ts, server.ts * * The architectural spine of every scaffolded project. * @module */ import type { ProjectConfig } from '../types.js'; /** Generate `src/fusion.ts` — The one-file context center */ export declare function fusionTs(): string; /** Generate `src/context.ts` — Application context type + factory */ export declare function contextTs(): string; /** Generate `src/server.ts` — Bootstrap with autoDiscover + transport */ export declare function serverTs(config: ProjectConfig): string; //# sourceMappingURL=core.d.ts.map