import { GraphQLSchema } from 'graphql'; /** * Build a GraphQL schema from several sources. * * @export * @param {...string[]} sources - The type definitions. * @returns {GraphQLSchema} The GraphQL schema. */ export declare function schemaFromTypeDefs(...sources: string[]): GraphQLSchema;