import { Idb } from "../utils/idb/types.js"; import { Op, Magazine, Scan, Value } from "../types.js"; export declare class IdbMagazine implements Magazine { #private; constructor(idb: Idb); commit(ops: Op[]): Promise; getMany(keys: string[]): Promise; entries(scan?: Scan): AsyncGenerator<[string, unknown], void, unknown>; }