export declare function getHiveNodeModulesPath(): string; export declare function getHiveBinPath(): string; export declare function isToolAvailable(name: string): boolean; /** * Auto-install all tools into the hive packages directory. * Agent Tools land in node_modules for require() resolution. * CLI Tools get binaries symlinked to hive/bin/ for PATH access. */ export declare function ensureToolsInstalled(): Promise<{ installed: string[]; failed: string[]; }>;