export declare function initDb(dbDir: string): void; export declare function saveMemory(chatId: string, content: string): number; export declare function getMemories(chatId: string): { id: number; content: string; created_at: string; }[]; export declare function deleteMemory(chatId: string, id: number): boolean; export declare function formatMemoriesForPrompt(chatId: string): string; //# sourceMappingURL=memory-db.d.ts.map