import { Repository } from "../Repository"; export declare const DEF_STORE_TABLE: string; export declare const OBJECT_ID: string; export type DBItemPredicate = (key: string, result: any) => boolean; export type AsyncStoreResult = { store: Repository; result: any; error: Error | null; };