/** * C# scaffolding emitter — static support files. * * Replaces `context.cs.njk` and `utils.cs.njk` Nunjucks templates with typed * TypeScript functions that produce the same C# source code. * * Emitted files: * - Context.cs — LoadContext / SaveContext helper classes * - Utils.cs — JsonUtils, YamlUtils, and internal Utils extension methods */ /** * Emit the C# LoadContext / SaveContext file. */ export declare function emitCSharpContext(namespace: string): string; /** * Emit the C# utility classes file (JsonUtils, YamlUtils, Utils). */ export declare function emitCSharpUtils(namespace: string): string;