import * as z from "zod/v4"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Reasoning effort to apply from this point in the conversation onward */ export declare const ConfigurationUpdateReasoningEffort: { readonly Max: "max"; readonly Xhigh: "xhigh"; readonly High: "high"; readonly Medium: "medium"; readonly Low: "low"; readonly Minimal: "minimal"; readonly None: "none"; }; /** * Reasoning effort to apply from this point in the conversation onward */ export type ConfigurationUpdateReasoningEffort = OpenEnum; /** * Reasoning settings applied from this point in the conversation onward */ export type ConfigurationUpdateReasoning = { /** * Reasoning effort to apply from this point in the conversation onward */ effort: ConfigurationUpdateReasoningEffort; }; /** @internal */ export declare const ConfigurationUpdateReasoningEffort$inboundSchema: z.ZodType; /** @internal */ export declare const ConfigurationUpdateReasoningEffort$outboundSchema: z.ZodType; /** @internal */ export declare const ConfigurationUpdateReasoning$inboundSchema: z.ZodType; /** @internal */ export type ConfigurationUpdateReasoning$Outbound = { effort: string; }; /** @internal */ export declare const ConfigurationUpdateReasoning$outboundSchema: z.ZodType; export declare function configurationUpdateReasoningToJSON(configurationUpdateReasoning: ConfigurationUpdateReasoning): string; export declare function configurationUpdateReasoningFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=configurationupdatereasoning.d.ts.map