import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AgentSessionToolCallEventPayload = { toolCallId: string; toolName: string; input?: any | null | undefined; }; export type AgentSessionToolCallEvent = { seq: number; createdAt: string; type: "tool_call"; payload: AgentSessionToolCallEventPayload; }; /** @internal */ export declare const AgentSessionToolCallEventPayload$inboundSchema: z.ZodType; export declare function agentSessionToolCallEventPayloadFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentSessionToolCallEvent$inboundSchema: z.ZodType; export declare function agentSessionToolCallEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessiontoolcallevent.d.ts.map