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