import * as z from "zod/v3"; import { ToolsCallParameter, ToolsCallParameter$Outbound } from "./toolscallparameter.js"; export type ToolsCallRequest = { /** * Required name of the tool to execute */ name: string; /** * The parameters for the tool. Each key is the name of the parameter and the value is the parameter object. */ parameters: { [k: string]: ToolsCallParameter; }; }; /** @internal */ export type ToolsCallRequest$Outbound = { name: string; parameters: { [k: string]: ToolsCallParameter$Outbound; }; }; /** @internal */ export declare const ToolsCallRequest$outboundSchema: z.ZodType; export declare function toolsCallRequestToJSON(toolsCallRequest: ToolsCallRequest): string; //# sourceMappingURL=toolscallrequest.d.ts.map