import type { SerializableObject } from 'with-cache-normalization/dist/domain/NormalizeCacheValueMethod'; import type { SimpleAsyncCache } from 'with-simple-cache'; /** * gets all of the dependency pointers which a mutation has invalidated */ export declare const getDependencyPointersInvalidatedByMutation: ({ cache, output, }: { cache: SimpleAsyncCache; output: SerializableObject; }) => Promise;