import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CodeInterpreterOutputLogs = { type: "logs"; logs: string; }; /** @internal */ export declare const CodeInterpreterOutputLogs$inboundSchema: z.ZodType; /** @internal */ export type CodeInterpreterOutputLogs$Outbound = { type: "logs"; logs: string; }; /** @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