import { DocumentLoader } from './document-loader'; import { Types, DocumentFile } from 'graphql-codegen-core'; export declare class DocumentFromString implements DocumentLoader { canHandle(doc: string): Promise | boolean; handle(doc: string, config: Types.Config): Promise | DocumentFile[]; }