import { z } from 'zod'; import type { AgentTool as LegacyAgentTool } from '../types.js'; import type { LlmTool } from './types/tool.js'; export { jsonSchemaToZod, jsonSchemaToTypeBox } from './json-schema-zod.js'; export declare function convertLegacyTool(tool: LegacyAgentTool): LlmTool; export declare function convertLegacyTools(tools: LegacyAgentTool[]): LlmTool[]; export type ToolParametersSchema = z.ZodObject; //# sourceMappingURL=legacy-tool-bridge.d.ts.map