import type { CacheOptions, Evaluation, Target } from './types';
export interface GetCacheResponse {
    loadFromCache: () => Promise<Evaluation[]>;
    saveToCache: (evaluations: Evaluation[]) => Promise<void>;
    updateCachedEvaluation: (evaluation: Evaluation) => Promise<void>;
    removeCachedEvaluation: (flagIdentifier: string) => Promise<void>;
}
export declare function getCache(seed: string, cacheOptions?: CacheOptions): Promise<GetCacheResponse>;
export declare function createCacheIdSeed(target: Target, apiKey: string, config?: CacheOptions): string;
