import type { StorageBlobEntry } from '../../types.js'; import { BlobStore } from './base.js'; /** * In-memory implementation of BlobStore for testing. */ export declare class InMemoryBlobStore extends BlobStore { #private; init(): Promise; put(entry: StorageBlobEntry): Promise; get(hash: string): Promise; has(hash: string): Promise; delete(hash: string): Promise; putMany(entries: StorageBlobEntry[]): Promise; getMany(hashes: string[]): Promise>; dangerouslyClearAll(): Promise; } //# sourceMappingURL=inmemory.d.ts.map