export interface GeneratedMemoryFiles { files: Array<{ relativePath: string; content: string; }>; } /** * Generates the working memory system: PreCompact hook, SessionStart hook, * and the initial working-memory.json schema. */ export declare function generateMemoryPipeline(): GeneratedMemoryFiles; /** * Writes memory pipeline files to disk. * Preserves existing working-memory.json (user state). */ export declare function writeMemoryPipeline(targetDir: string): string[];