import { DBIndex } from './db-index.js'; import type { ObjectStoreSchema } from './schema.js'; export declare class DBObjectStore { private idbObjStore; constructor(idbObjStore: IDBObjectStore); get name(): string; index(name: string): DBIndex; get(key: IDBValidKey | IDBKeyRange): Promise; getKey(query: IDBValidKey | IDBKeyRange): Promise; getAll(query?: IDBValidKey | IDBKeyRange | null, count?: number): Promise; getAllKeys(query?: IDBValidKey | IDBKeyRange | null, count?: number): Promise; add(value: Schema, key?: IDBValidKey): Promise; put(value: Schema, key?: IDBValidKey): Promise; delete(key: IDBValidKey | IDBKeyRange): Promise; clear(): Promise; } //# sourceMappingURL=db-object-store.d.ts.map