import type { infer as zodInfer, ZodType } from 'zod'; import type { FunctionTool } from '../models/llm-tool.models'; export declare function zodFunctionTool(options: { name: string; parameters: Schema; description: string; execute: (args: zodInfer) => string | Promise; }): FunctionTool;