import { ToolDefinition, LazyToolInfo } from "./types.js"; /** * Load all tool definitions from the definitions directory */ export declare function loadAllTools(definitionsDir: string): Promise>; /** * Get lazy tool info (minimal metadata for search) */ export declare function getLazyInfo(tool: ToolDefinition): LazyToolInfo; /** * Search tools by query */ export declare function searchTools(tools: Map, query: string, limit?: number): LazyToolInfo[];