import type { IndexMemory } from "../indexer/index-memory.js"; import type { MemoryCategory } from "../types/index.js"; interface ExtractedMemory { content: string; category: MemoryCategory; tags: string[]; related_files: string[]; confidence: number; } export declare function importExistingMemories(indexer: IndexMemory, projectPath: string, options?: { mineChats?: boolean; skipPaths?: string[]; }): Promise<{ imported: number; skipped: number; sources: string[]; }>; export declare function importGitLog(projectPath: string, limit?: number): ExtractedMemory[]; export {};