import { Agent } from './agent'; /** * Infer the type of the tools of an agent. */ export type InferAgentTools = AGENT extends Agent ? TOOLS : never;