import { type FragmentDefinitionNode, type GraphQLCompositeType, type GraphQLSchema, type SelectionSetNode } from 'graphql'; import type { ResolvedExpandFragmentsOptions } from './expandFragmentsTypes.mts'; export declare function expandSelectionSet(schema: GraphQLSchema, fragments: ReadonlyMap, selectionSet: SelectionSetNode, parentType: GraphQLCompositeType, fragmentStack: readonly string[], options: ResolvedExpandFragmentsOptions): SelectionSetNode;