import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseShellCallCompletedEvent = { type: "response.shell_call.completed"; sequenceNumber: number; itemId: string; outputIndex: number; functionCallOutput?: string | undefined; }; /** @internal */ export declare const ResponseShellCallCompletedEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseShellCallCompletedEvent$Outbound = { type: "response.shell_call.completed"; sequence_number: number; item_id: string; output_index: number; function_call_output?: string | undefined; }; /** @internal */ export declare const ResponseShellCallCompletedEvent$outboundSchema: z.ZodType; export declare function responseShellCallCompletedEventToJSON(responseShellCallCompletedEvent: ResponseShellCallCompletedEvent): string; export declare function responseShellCallCompletedEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responseshellcallcompletedevent.d.ts.map