import { z } from "zod";
export declare const configSchema: z.ZodObject<{
    openaiApiKey: z.ZodString;
    debug: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
}, "strip", z.ZodTypeAny, {
    openaiApiKey: string;
    debug: boolean;
}, {
    openaiApiKey: string;
    debug?: boolean | undefined;
}>;
export default function createStatelessServer({ config, }: {
    config: z.infer<typeof configSchema>;
}): void;
//# sourceMappingURL=smithery-index-backup.d.ts.map