/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { Cache, CacheStore } from './cache'; export declare class LmbdCacheStore implements CacheStore { #private; readonly cachePath: string; constructor(cachePath: string); get(key: string): Promise; has(key: string): boolean; set(key: string, value: unknown): Promise; createCache(namespace: string): Cache; close(): Promise; }