/** * Given a cache key and an object, generates the normalized key. * Assumes the query contains the necessary fields to generate the cache key, * meaning it has been run through the generateNormalizedOperation / addNormalizedFields * code generation functions */ export declare function makeCacheKey(key: string, obj: any): string;