import { InMemoryCache } from '@apollo/client/core'; export type ResolverContext = { cache: InMemoryCache; optimisticResponse: any; getCacheKey: (storeObj: any) => string; }; export type ResolverDefinition = { Mutation: { [name: string]: (rootValue: any, args: any, context: ResolverContext, info?: any) => any; }; }; export declare const clientResolvers: ResolverDefinition;