import { InMemoryCache } from "apollo-cache-inmemory"; interface CooperCacheConfig { /** * Determines if the cache has to be persisted in local storage. False by default. */ persistCache?: boolean; } /** * Creates cache for Apollo client. * @param cacheConfig Configuration for created cache. */ export declare const createCooperCache: ({ persistCache, }: CooperCacheConfig) => Promise; export {};