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