import * as z from "zod/v4"; import { OpenEnum } from "../types/enums.js"; /** * Selects the reasoning mode. `standard` is the default; `pro` engages deeper reasoning on models that support it, billed at standard token rates. Only supported by OpenAI GPT-5.6 and newer. */ export declare const ReasoningMode: { readonly Standard: "standard"; readonly Pro: "pro"; }; /** * Selects the reasoning mode. `standard` is the default; `pro` engages deeper reasoning on models that support it, billed at standard token rates. Only supported by OpenAI GPT-5.6 and newer. */ export type ReasoningMode = OpenEnum; /** @internal */ export declare const ReasoningMode$inboundSchema: z.ZodType; /** @internal */ export declare const ReasoningMode$outboundSchema: z.ZodType; //# sourceMappingURL=reasoningmode.d.ts.map