import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type JSONObjectResponseFormat = { type: "json_object"; }; /** @internal */ export declare const JSONObjectResponseFormat$inboundSchema: z.ZodType; /** @internal */ export type JSONObjectResponseFormat$Outbound = { type: "json_object"; }; /** @internal */ export declare const JSONObjectResponseFormat$outboundSchema: z.ZodType; export declare function jsonObjectResponseFormatToJSON(jsonObjectResponseFormat: JSONObjectResponseFormat): string; export declare function jsonObjectResponseFormatFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=jsonobjectresponseformat.d.ts.map