1import { Adapter } from '../Low.js'; 2export declare class Memory<T> implements Adapter<T> { 3 private data; 4 read(): Promise<T | null>; 5 write(obj: T): Promise<void>; 6} 7 8