import type { ToolAction } from '@mastra/core/tools'; export type ToolReturn = ToolAction; export interface AgentToolInterface { name: string; run(): ToolReturn; }