import { CodegenPlugin } from '@graphql-codegen/plugin-helpers'; import type { RawResolversConfig } from '@graphql-codegen/visitor-plugin-common'; /** * Subset of Config Options that are supported by this plugin */ export type SupportedConfigOptions = Pick; export interface MercuriusLoadersPluginConfig extends SupportedConfigOptions { namespacedImportName?: string; loadersCustomParentTypes?: Record; } export declare const MercuriusLoadersPlugin: CodegenPlugin;