import type { PluginFunction } from '@graphql-codegen/plugin-helpers'; import { type FragmentDefinitionNode } from 'graphql'; import { type ExpandFragmentsOptions } from '../expandFragments.mts'; export type Config = Omit & { readonly externalFragments?: readonly ExternalFragment[]; }; interface ExternalFragment { readonly name?: string; readonly onType?: string; readonly node: FragmentDefinitionNode; readonly isExternal?: boolean; readonly importFrom?: string | null; } export declare const plugin: PluginFunction; export {};