import * as z from "zod/v3";
/**
 * Request body for calling an MCP tool.
 */
export type MCPToolCallRequest = {
    arguments?: {
        [k: string]: any;
    } | undefined;
};
/** @internal */
export type MCPToolCallRequest$Outbound = {
    arguments?: {
        [k: string]: any;
    } | undefined;
};
/** @internal */
export declare const MCPToolCallRequest$outboundSchema: z.ZodType<MCPToolCallRequest$Outbound, z.ZodTypeDef, MCPToolCallRequest>;
export declare function mcpToolCallRequestToJSON(mcpToolCallRequest: MCPToolCallRequest): string;
//# sourceMappingURL=mcptoolcallrequest.d.ts.map