import type { StorageBackend } from './index'; export declare class OPFSBackend implements StorageBackend { isSupported(): boolean; read(key: string): Promise; write(key: string, stream: ReadableStream): Promise; getSize(key: string): Promise; list(): Promise>; delete(key: string): Promise; }