import type { FileBackend } from "../storage.js"; import type { Metafile } from "../types.js"; export declare class MemoryBackend implements FileBackend { private cache; read(key: string): Promise; write(key: string, value: Metafile): Promise; writeRaw(key: string, value: Uint8Array): Promise; delete(key: string): Promise; }