import { Adapter, SyncAdapter } from '../core/Low.js'; export declare class Memory implements Adapter { #private; read(): Promise; write(obj: T): Promise; } export declare class MemorySync implements SyncAdapter { #private; read(): T | null; write(obj: T): void; }