/** * Narrative and memory seed generators — produce human-readable text * from computed scenario context and roles. * * Narratives are methodology-aware: they use the profile's container * terminology (waves/sprints/cycles) and state names rather than * generic language. */ import type { BuildContext, ScenarioRoles } from './types.js'; import type { ScenarioNarrative } from '../types.js'; /** Generate the scenario narrative from computed facts and profile context. */ export declare function generateNarrative(ctx: BuildContext, roles: ScenarioRoles): ScenarioNarrative; /** Generate governance memory seed from computed facts. */ export declare function generateMemorySeed(ctx: BuildContext, roles: ScenarioRoles): string; //# sourceMappingURL=narrative.d.ts.map