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