import { StoreInterface, StoreInterfaceStoreName } from '@instantdb/core'; import { MMKV } from 'react-native-mmkv'; export default class Store extends StoreInterface { _store: MMKV; constructor(appId: string, storeName: StoreInterfaceStoreName); getItem(k: string): Promise; setItem(k: string, v: any): Promise; multiSet(keyValuePairs: Array<[string, any]>): Promise; removeItem(k: string): Promise; getAllKeys(): Promise; } //# sourceMappingURL=index.d.ts.map