export type ManagedTool = "fd" | "rg" | "rtk"; export declare function getToolPath(tool: ManagedTool): string | null; export interface ToolStatus { type: "info" | "warning"; message: string; } export declare function ensureTool(tool: ManagedTool, onStatus?: (status: ToolStatus) => void): Promise;