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