import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseCodeInterpreterCallInProgressEvent = { type: "response.code_interpreter_call.in_progress"; sequenceNumber: number; itemId: string; outputIndex: number; }; /** @internal */ export declare const ResponseCodeInterpreterCallInProgressEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseCodeInterpreterCallInProgressEvent$Outbound = { type: "response.code_interpreter_call.in_progress"; sequence_number: number; item_id: string; output_index: number; }; /** @internal */ export declare const ResponseCodeInterpreterCallInProgressEvent$outboundSchema: z.ZodType; export declare function responseCodeInterpreterCallInProgressEventToJSON(responseCodeInterpreterCallInProgressEvent: ResponseCodeInterpreterCallInProgressEvent): string; export declare function responseCodeInterpreterCallInProgressEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsecodeinterpretercallinprogressevent.d.ts.map