/** * Memory CLI 命令 * * 提供跨会话记忆的索引、搜索、统计、时间线、阶段切片、清除功能。 * 复用 src/core/memory/ 的 createMemoryManager、extractKeywords、detectPhase、calculateRelevance。 */ export declare function memoryIndex(sessionFile: string, options: { json?: boolean; }): Promise; export declare function memorySearch(keywords: string[], options: { phase?: string; session?: string; limit?: string; minRelevance?: string; json?: boolean; }): Promise; export declare function memoryStats(options: { json?: boolean; }): Promise; export declare function memoryTimeline(options: { limit?: string; json?: boolean; }): Promise; export declare function memoryPhases(phase: string, options: { limit?: string; json?: boolean; }): Promise; export declare function memoryClear(options: { json?: boolean; yes?: boolean; }): Promise; export declare function memoryAutoIndex(options: { json?: boolean; force?: boolean; }): Promise; export declare function memoryIndexSummary(summaryFile: string, options: { json?: boolean; }): Promise; export declare function memorySources(options: { json?: boolean; }): Promise; export declare function memoryPreviewInjection(options: { change?: string; phase?: string; json?: boolean; allPhases?: boolean; keywords?: string; userInput?: string; taskDescription?: string; files?: string; }): Promise; //# sourceMappingURL=memory.d.ts.map