import { z } from 'zod'; import type { AgentTool as LegacyAgentTool } from '../types.js'; import type { LlmTool } from './types/tool.js'; export { jsonSchemaToZod } from './json-schema-zod.js'; /** `@zhin.js/ai` AgentTool → pi LlmTool for agentLoop transport. */ export declare function agentToolToLlmTool(tool: LegacyAgentTool): LlmTool; export declare function agentToolsToLlmTools(tools: LegacyAgentTool[]): LlmTool[]; export type ToolParametersSchema = z.ZodObject; //# sourceMappingURL=legacy-tool-bridge.d.ts.map