import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CodeInterpreterOutputLogs = { /** * The logs output from the code interpreter. */ logs: string; type?: "logs" | undefined; }; /** @internal */ export declare const CodeInterpreterOutputLogs$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterOutputLogs$Outbound = { logs: string; type: "logs"; }; /** @internal */ export declare const CodeInterpreterOutputLogs$outboundSchema: z.ZodType; export declare function codeInterpreterOutputLogsToJSON(codeInterpreterOutputLogs: CodeInterpreterOutputLogs): string; export declare function codeInterpreterOutputLogsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codeinterpreteroutputlogs.d.ts.map