import { z } from 'zod'; export interface Tool { name: string; description: string; inputSchema: z.ZodSchema; handler: (args: T) => Promise<{ content: Array<{ type: string; text: string; }>; }>; } //# sourceMappingURL=tool.d.ts.map