import * as z from "zod/v4"; import { AnthropicOutputEffort } from "./anthropicoutputeffort.js"; export type AnthropicMessageOutputConfig = { effort?: AnthropicOutputEffort | null | undefined; }; /** @internal */ export type AnthropicMessageOutputConfig$Outbound = { effort?: string | null | undefined; }; /** @internal */ export declare const AnthropicMessageOutputConfig$outboundSchema: z.ZodType; export declare function anthropicMessageOutputConfigToJSON(anthropicMessageOutputConfig: AnthropicMessageOutputConfig): string; //# sourceMappingURL=anthropicmessageoutputconfig.d.ts.map