import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseCodeInterpreterCallCodeDeltaEvent = { type: "response.code_interpreter_call_code.delta"; sequenceNumber: number; itemId: string; outputIndex: number; delta: string; }; /** @internal */ export declare const ResponseCodeInterpreterCallCodeDeltaEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseCodeInterpreterCallCodeDeltaEvent$Outbound = { type: "response.code_interpreter_call_code.delta"; sequence_number: number; item_id: string; output_index: number; delta: string; }; /** @internal */ export declare const ResponseCodeInterpreterCallCodeDeltaEvent$outboundSchema: z.ZodType; export declare function responseCodeInterpreterCallCodeDeltaEventToJSON(responseCodeInterpreterCallCodeDeltaEvent: ResponseCodeInterpreterCallCodeDeltaEvent): string; export declare function responseCodeInterpreterCallCodeDeltaEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsecodeinterpretercallcodedeltaevent.d.ts.map