import type { ToolResult } from "../types.js"; export interface ToolAvailability { name: string; available: boolean; path?: string | undefined; version?: string | undefined; installHint?: string | undefined; } /** True if path is only a project-local node_modules/.bin shim (not global). */ export declare function isProjectLocalNodeBin(path: string): boolean; export declare function checkTool(name: string): Promise; export declare function checkTools(names: string[]): Promise; export declare function toolCheckHandler(args: Record): Promise;