import { z } from "zod"; export interface Tool { name: string; description: string; parameters: T; handler: (args: z.infer>) => Promise<{ content: { type: "text"; text: string; }[]; }>; } //# sourceMappingURL=tools.d.ts.map