export type UID = string; export interface IMemoryCell { uid: UID; content: any; createdAt: Date; lastAccessed: Date; weight: number; associations: UID[]; } export declare class BaseMemoryCell implements IMemoryCell { uid: UID; content: any; createdAt: Date; lastAccessed: Date; weight: number; associations: UID[]; constructor(content: any); }