import type { Tool } from './tool'; /** * Infer the output type of a tool. */ export type InferToolOutput> = TOOL extends Tool ? OUTPUT : never;