import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseShellCallExecutingEvent = { type: "response.shell_call.executing"; sequenceNumber: number; itemId: string; outputIndex: number; }; /** @internal */ export declare const ResponseShellCallExecutingEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseShellCallExecutingEvent$Outbound = { type: "response.shell_call.executing"; sequence_number: number; item_id: string; output_index: number; }; /** @internal */ export declare const ResponseShellCallExecutingEvent$outboundSchema: z.ZodType; export declare function responseShellCallExecutingEventToJSON(responseShellCallExecutingEvent: ResponseShellCallExecutingEvent): string; export declare function responseShellCallExecutingEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responseshellcallexecutingevent.d.ts.map