export declare class UtilsStore { static getDBFromStore(dbName: string, store: LocalForage): Promise; static setInitialDBToStore(dbName: string, store: LocalForage): Promise; static setDBToStore(mDb: any, dbName: string, store: LocalForage): Promise; static saveDBToStore(dbName: string, data: Uint8Array, store: LocalForage): Promise; static removeDBFromStore(dbName: string, store: LocalForage): Promise; static isDBInStore(dbName: string, store: LocalForage): Promise; static restoreDBFromStore(dbName: string, prefix: string, store: LocalForage): Promise; static copyDBToStore(dbName: string, toDb: string, store: LocalForage): Promise; static getDBListFromStore(store: LocalForage): Promise; }