import type { MemoryBase } from '../types//memory/MemoryBase.js'; export declare const getMemoryOrDefault: (key: string, getDefaultMemory: () => V, config?: { forceStrongMemory?: boolean; }) => V; export declare const setWeakMemory: (key: string, value: V) => void; export declare const setStrongMemory: (key: string, value: V) => void; export declare const deleteMemory: (key: string) => void; export declare const getMemory: (key: string) => T | undefined; export declare const getAllLivingMemory: () => T[];