import { BasePlugin, SchemaTypes } from "@pothos/core";
import "./global-types.js";
import { GraphQLSchema } from "graphql";
export declare class PothosSchemaExporterPlugin<Types extends SchemaTypes> extends BasePlugin<Types> {
    afterBuild(schema: GraphQLSchema): GraphQLSchema;
}
declare const pluginName: "pothosSchemaExporter";
export default pluginName;
