import { ICache, KeyManifestEntry, MaybePromise } from './shared'; export declare class CacheKeyManifest { private cache; private clientId; private readonly manifestKey; constructor(cache: ICache, clientId: string); add(key: string): Promise; remove(key: string): Promise; get(): MaybePromise; clear(): MaybePromise; private createManifestKeyFrom; }