import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Effort: { readonly Low: "low"; readonly Medium: "medium"; readonly High: "high"; }; export type Effort = ClosedEnum; export type Reasoning = { effort: Effort; summary?: any | null | undefined; }; /** @internal */ export declare const Effort$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Effort$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Reasoning$inboundSchema: z.ZodType; /** @internal */ export type Reasoning$Outbound = { effort: string; summary?: any | null | undefined; }; /** @internal */ export declare const Reasoning$outboundSchema: z.ZodType; export declare function reasoningToJSON(reasoning: Reasoning): string; export declare function reasoningFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reasoning.d.ts.map