/** * Session Narrative Generator — generate human-readable narratives from session data. * * 4 output formats: pr, standup, adr, onboarding. * Default: deterministic template-based rendering (zero-LLM). */ import type { StoragePlugin } from './types.js'; export type NarrativeFormat = 'pr' | 'standup' | 'adr' | 'onboarding'; export interface NarrativeOpts { sessionId?: string; timeRange?: { from: number; to: number; }; topic?: string; format: NarrativeFormat; } export interface NarrativeData { decisions: string[]; errors: string[]; changes: string[]; patterns: string[]; people: string[]; todos: string[]; } /** * Generate a narrative from session/project data. */ export declare function generateNarrative(storage: StoragePlugin, opts: NarrativeOpts): string; //# sourceMappingURL=narrative-generator.d.ts.map