import { GraphQLSchema } from 'graphql'; import { SchemaLoader } from './schema-loader'; import { CLIOptions } from '../../cli-options'; export declare class IntrospectionFromFileLoader implements SchemaLoader { stripBOM(content: string): string; parseBOM(content: string): any; canHandle(pointerToSchema: string): boolean; handle(pointerToSchema: string, _cliOptions: CLIOptions): Promise; }