import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CodeInterpreterOutputImage = { type: "image"; url: string; }; /** @internal */ export declare const CodeInterpreterOutputImage$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterOutputImage$Outbound = { type: "image"; url: string; }; /** @internal */ export declare const CodeInterpreterOutputImage$outboundSchema: z.ZodType; export declare function codeInterpreterOutputImageToJSON(codeInterpreterOutputImage: CodeInterpreterOutputImage): string; export declare function codeInterpreterOutputImageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpreteroutputimage.d.ts.map