import { GraphQLSchema } from 'graphql'; /** * Build a GraphQL schema from several files containing the type definitions. * * @export * @param {...string[]} paths - The path of the files. * @returns {Promise} The GraphQL schema. */ export declare function schemaFromTypePaths(...paths: string[]): Promise;