import { SchemaLoader } from './schema-loader'; import { GraphQLSchema } from 'graphql'; import { CLIOptions } from '../../cli-options'; export declare class IntrospectionFromUrlLoader implements SchemaLoader { canHandle(pointerToSchema: string): boolean; handle(url: string, cliOptions: CLIOptions): Promise; }