import { ICache, ProjectConfig } from "configcat-common"; export declare class LocalStorageCache implements ICache { cache: { [key: string]: ProjectConfig; }; set(key: string, config: ProjectConfig): void; get(key: string): ProjectConfig | null; } //# sourceMappingURL=Cache.d.ts.map