import { Faculty } from '../being/index.ts'; export declare const MEMORY = "org.nervur.memory"; export declare abstract class MemoryFaculty extends Faculty { static readonly kind: string; abstract read(place: string): Promise>; abstract write(place: string, entries: ReadonlyMap): Promise; abstract places(): Promise; abstract forget(place: string): Promise; occupies(_place: string): boolean; }