import { GraphQLSchema, GraphQLSchemaConfig } from "graphql"; import { Interceptor } from "./utils/util-types"; import { Operation } from "./Operation"; /** * @api-category PrimaryAPI */ export declare function mapSchema(operations: Operation[], interceptFields?: Interceptor): GraphQLSchema;