import type { GraphQLSchemaPluginConfig as BaseGraphQLSchemaPluginConfig, IGraphQLSchemaPlugin } from "@webiny/handler-graphql"; import { GraphQLSchemaPlugin } from "@webiny/handler-graphql"; import type { CmsContext } from "../../types/index.js"; export type ICmsGraphQLSchemaPlugin = IGraphQLSchemaPlugin; export type CmsGraphQLSchemaPluginConfig = BaseGraphQLSchemaPluginConfig; export declare class CmsGraphQLSchemaPlugin extends GraphQLSchemaPlugin implements ICmsGraphQLSchemaPlugin { static readonly type = "cms.graphql.schema"; } export declare const createCmsGraphQLSchemaPlugin: (config: CmsGraphQLSchemaPluginConfig) => ICmsGraphQLSchemaPlugin;