import { GraphQLError } from "graphql"; import type { SubgraphState } from "../../subgraph/state.js"; export type SupergraphValidationContext = ReturnType; export declare function createSupergraphValidationContext(subgraphStates: Map): { subgraphStates: Map; graphIdToName(id: string): string; graphNameToId(name: string): string | null; reportError(error: GraphQLError): void; collectReportedErrors(): GraphQLError[]; }; //# sourceMappingURL=validation-context.d.ts.map