import { z } from "zod";
export declare const stdioTransportConfigSchema: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
    debug: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    debug: boolean;
}, {
    debug?: boolean | undefined;
}>]>>;
export type StdioTransportConfig = z.infer<typeof stdioTransportConfigSchema>;
