import type { ToolDefinition } from '../types/tool.js'; import { z } from 'zod'; export declare const toMpcTools: (defs: ToolDefinition[]) => { name: string; description: string; inputSchema: z.core.JSONSchema.BaseSchema; annotations: Record | undefined; }[];