import type { CmsContext, CmsModel } from "../types/index.js"; import type { ICmsGraphQLSchemaPlugin } from "../plugins/index.js"; /** * This factory is called whenever we need to generate graphql-schema plugins using the current context. */ interface BuildSchemaPluginsParams { context: CmsContext; models: CmsModel[]; } export declare const buildSchemaPlugins: (params: BuildSchemaPluginsParams) => Promise; export {};