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