import { useIndexedDBCollection } from './DrizzleIndexedDBProvider.js'; import { IDBDatabaseLike } from '../idb-types.js'; import 'react/jsx-runtime'; import 'react'; import '@tanstack/db'; import '@firtoz/db-helpers'; import '@firtoz/drizzle-utils'; import '../function-migrator.js'; import '@firtoz/idb-collections'; type UseDrizzleIndexedDBContextReturn> = { useCollection: (tableName: TTableName) => ReturnType>; indexedDB: IDBDatabaseLike | null; }; declare function useDrizzleIndexedDB>(): UseDrizzleIndexedDBContextReturn; export { type UseDrizzleIndexedDBContextReturn, useDrizzleIndexedDB };