import { Types } from 'graphql-codegen-core'; import { SchemaLoader } from './schema-loader'; import { GraphQLSchema } from 'graphql'; export declare class IntrospectionFromUrlLoader implements SchemaLoader { canHandle(pointerToSchema: string): boolean; handle(url: string, config: Types.Config, schemaOptions: any): Promise; }