import { DocumentLoader } from './document-loader'; import { DocumentNode } from 'graphql'; import { Types, DocumentFile } from 'graphql-codegen-core'; export declare const graphQLExtensions: string[]; export declare class DocumentsFromGlob implements DocumentLoader { canHandle(doc: string): Promise | boolean; documentsFromGlobs(documentGlob: string): Promise; loadFileContent(filePath: string): DocumentNode | null; loadDocumentsSources(filePaths: string[]): DocumentFile[]; handle(doc: string, config: Types.Config): Promise; }