import { CacheConfig, Cache, DefaultCacheConfig } from '../../types'; export declare class NetworkCache { protected memoryCache: Cache; protected config: DefaultCacheConfig; constructor(config?: CacheConfig); load(): void; get(key: string): Response | void; private purgeExpired; set(key: string, value: Response): void; clear(): void; } //# sourceMappingURL=NetworkCache.d.ts.map