import { GraphQLProjectConfig } from 'graphql-config'; import { IntrospectionResult } from '../../types'; export declare function fetchSchema(uri: string): Promise; export declare function checkAndLoadSchema(uri: string, timeout?: number): Promise; export declare function loadSchema(uri: string): Promise; export declare function getUnionsAndInterfacesFromInstrospection(introspection: IntrospectionResult): { kind: "INTERFACE" | "UNION"; name: string; possibleTypes: { kind: "OBJECT"; name: string; }[]; }[]; export declare function getGraphQLUnionAndInterfacesPath(project: GraphQLProjectConfig): string; //# sourceMappingURL=utilities.d.ts.map