import { GraphQLSchema } from 'graphql'; /** * Build a GraphQL schema from several files containing the type definitions. * * @export * @param {string} pattern - A glob pattern describing the file paths. * @returns {Promise} The GraphQL schema. */ export declare function schemaFromTypeGlob(pattern: string): Promise;