import type { MemoryStore } from './store.js'; /** * Ingest strategic docs as lightweight catalog entries (filename + summary). * Full content is read on-demand via the readStrategicDoc tool. */ export declare function ingestStrategicDocs(projectRoot: string, store: MemoryStore): Promise; /** * List available strategic doc filenames. */ export declare function listStrategicDocs(projectRoot: string): Promise; /** * Read the full content of a strategic doc. */ export declare function readStrategicDoc(projectRoot: string, filename: string): Promise;