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