import { GraphQLSchema } from "graphql"; import { SchemaGeneratorOptions } from "../schema/schema-generator"; export interface BuildSchemaOptions extends SchemaGeneratorOptions { /** Array of resolvers classes or glob paths to resolver files */ resolvers: Array; /** Path to the file to where emit the schema or `true` for the default `./schema.gql` one */ emitSchemaFile?: string | boolean; } export declare function buildSchema(options: BuildSchemaOptions): Promise; export declare function buildSchemaSync(options: BuildSchemaOptions): GraphQLSchema; //# sourceMappingURL=buildSchema.d.ts.map