/** * IndexedDB Cache Manager Class */ export declare class TileCacheDB { private dbPromise; /** * Open/Get database connection */ private openDB; /** * Get data from cache * @param url Cache key (processedUrl) */ get(url: string): Promise; /** * Store data to cache * @param url Cache key (processedUrl) * @param data Data to cache */ set(url: string, data: ArrayBuffer): Promise; /** * Clear cache */ clear(): Promise; } export declare const tileCache: TileCacheDB; //# sourceMappingURL=tile-cache.d.ts.map