import type { IGraphQLSchemaFactory } from "./abstractions.public.js"; import type { GraphQLSchemaBuilder } from "../features/GraphQLSchemaBuilder/abstractions.js"; /** * CoreGraphQLSchemaFactory */ export declare const CoreGraphQLSchemaFactory: import("@webiny/di").Abstraction; export declare namespace CoreGraphQLSchemaFactory { type Interface = IGraphQLSchemaFactory; type SchemaBuilder = GraphQLSchemaBuilder.Interface; type Return = Promise; }