import type { CmsContext, CmsModel } from "../../types/index.js"; import type { ICmsGraphQLSchemaPlugin } from "../../plugins/index.js"; interface GenerateSchemaPluginsParams { context: CmsContext; models: CmsModel[]; } export declare const generateSchemaPlugins: (params: GenerateSchemaPluginsParams) => Promise; export {};