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