export declare class Idb { static getDbAsync(): Promise; static clearStorageAsync(): Promise; static deleteDataAsync(data: any): Promise; static getDataListAsync(): Promise; static getDataByKeysAsync(keysArray: string[]): Promise; static getDataByKeyAsync(key: any): Promise; static saveDataAsync(data: any, key?: string | undefined): Promise; static saveBatchDataAsync(storageName: string, data: any[], keys: string[]): Promise; }