import { BaseBlockstore } from './base.ts'; import type { Pair } from 'interface-blockstore'; import type { AbortOptions, Await, AwaitGenerator, AwaitIterable } from 'interface-store'; import type { CID } from 'multiformats/cid'; export declare class BlackHoleBlockstore extends BaseBlockstore { put(key: CID, value: Uint8Array | AwaitIterable, options?: AbortOptions): Await; get(key: CID, options?: AbortOptions): AwaitGenerator; has(key: CID, options?: AbortOptions): Await; delete(cid: CID, options?: AbortOptions): Promise; getAll(options?: AbortOptions): AwaitGenerator; } //# sourceMappingURL=black-hole.d.ts.map