import { BaseDatastore } from './base.ts'; import type { AbortOptions } from 'abort-error'; import type { Pair, Query, KeyQuery } from 'interface-datastore'; import type { Key } from 'interface-datastore/key'; export declare class BlackHoleDatastore extends BaseDatastore { put(key: Key, value: Uint8Array, options?: AbortOptions): Key | Promise; get(key: Key, options?: AbortOptions): Uint8Array | Promise; has(key: Key, options?: AbortOptions): boolean | Promise; delete(key: Key, options?: AbortOptions): void | Promise; _all(q: Query, options?: AbortOptions): Generator | AsyncGenerator; _allKeys(q: KeyQuery, options?: AbortOptions): Generator | AsyncGenerator; } //# sourceMappingURL=black-hole.d.ts.map