import { RawClientSideBasePluginConfig } from '@graphql-codegen/visitor-plugin-common';
/**
 * @description This plugin generates a generic for the `@urql/exchange-graphcache` (https://github.com/FormidableLabs/urql/exchanges/graphcache) config.
 */
export type UrqlGraphCacheConfig = RawClientSideBasePluginConfig & {
    offlineExchange?: boolean;
};
