declare const _exports: BrowserCache; export = _exports; declare class BrowserCache { _db: Promise>; /** * * @param {string} key * @returns {Promise} */ read(key: string): Promise; /** * * @param {string} key * @param {ArrayBuffer} data * @returns {Promise} */ write(key: string, data: ArrayBuffer): Promise; /** * * @param {string} key * @returns {Promise} */ exists(key: string): Promise; /** * * @param {string} key * @returns {Promise} */ remove(key: string): Promise; }