import { Idb } from "./types.js"; import { idbWait } from "./wait.js"; export declare function idbTransactions({ db, storeName }: Idb): { readonly: (fn: (store: IDBObjectStore, wait: typeof idbWait) => Promise) => Promise; readwrite: (fn: (store: IDBObjectStore, wait: typeof idbWait) => Promise) => Promise; };