import { Chunk, StorageAdapterInterface, type StorageKey } from "../../src/index.js"; export declare class DummyStorageAdapter implements StorageAdapterInterface { #private; loadRange(keyPrefix: StorageKey): Promise; removeRange(keyPrefix: string[]): Promise; load(key: string[]): Promise; save(key: string[], binary: Uint8Array): Promise; remove(key: string[]): Promise; keys(): string[]; } //# sourceMappingURL=DummyStorageAdapter.d.ts.map