import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CodeInterpreterOutputImage, CodeInterpreterOutputImage$Outbound } from "./codeinterpreteroutputimage.js"; import { CodeInterpreterOutputLogs, CodeInterpreterOutputLogs$Outbound } from "./codeinterpreteroutputlogs.js"; export type CodeInterpreterOutput = CodeInterpreterOutputLogs | CodeInterpreterOutputImage; /** @internal */ export declare const CodeInterpreterOutput$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterOutput$Outbound = CodeInterpreterOutputLogs$Outbound | CodeInterpreterOutputImage$Outbound; /** @internal */ export declare const CodeInterpreterOutput$outboundSchema: z.ZodType; export declare function codeInterpreterOutputToJSON(codeInterpreterOutput: CodeInterpreterOutput): string; export declare function codeInterpreterOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpreteroutput.d.ts.map