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