import { SchemaTypes } from "@pothos/core";
import { PothosSchemaExporterPlugin } from "./index.js";
declare global {
    export namespace PothosSchemaTypes {
        interface Plugins<Types extends SchemaTypes> {
            pothosSchemaExporter: PothosSchemaExporterPlugin<Types>;
        }
        interface SchemaBuilderOptions<Types extends SchemaTypes> {
            pothosSchemaExporter?: {
                output?: string | null | false;
            };
        }
    }
}
