import { ApolloCache } from '@apollo/client/core'; import Log from './Log'; export interface TriggerFunctionConfig { log: Log; cache: ApolloCache; } declare const _default: ({ log, cache }: TriggerFunctionConfig) => (persist: () => void) => () => void; export default _default;