import { TypeContext } from "./TypeContext.js"; import { DefaultMap } from "./utils/helpers.js"; import { DefinitionNode } from "graphql"; export type InterfaceImplementor = { kind: "TYPE" | "INTERFACE"; name: string; }; export type InterfaceMap = DefaultMap>; /** * Compute a map of interfaces to the types and interfaces that implement them. */ export declare function computeInterfaceMap(typeContext: TypeContext, docs: DefinitionNode[]): InterfaceMap;