import type { ICmsGraphQLSchemaPlugin } from "../plugins/index.js"; import type { GraphQLSchema } from "graphql"; interface Params { plugins: ICmsGraphQLSchemaPlugin[]; } export declare const assertFieldDescriptionsAreStrings: (schema: GraphQLSchema) => void; export declare const createExecutableSchema: (params: Params) => GraphQLSchema; export {};