import { IMemoryUnit, IMemoryAssociation } from './base'; import { IMemoryStorage, IMemoryIndex } from './storage'; export declare class MemoryAssociator implements IMemoryAssociation { private storage; private index; constructor(storage: IMemoryStorage, index: IMemoryIndex); associate(sourceId: string, targetId: string): Promise; dissociate(sourceId: string, targetId: string): Promise; getAssociations(id: string): Promise; findRelatedMemories(id: string, maxResults?: number): Promise; }