/**
 * Enhanced Index tool definitions and handlers
 *
 * Provides MCP tools for accessing semantic relationships, similarity search,
 * and verb-based discovery features of the Enhanced Capability Index.
 *
 * FIXES IMPLEMENTED (Issue #1100):
 * - Uses configuration for default values instead of hardcoded numbers
 */
import { ToolDefinition } from '../../handlers/types/ToolTypes.js';
import { IndexConfiguration } from '../../portfolio/config/IndexConfig.js';
import type { EnhancedIndexHandler } from '../../handlers/EnhancedIndexHandler.js';
type ToolHandler<T> = (args: T) => Promise<any>;
export declare function getEnhancedIndexTools(server: EnhancedIndexHandler, config: IndexConfiguration): Array<{
    tool: ToolDefinition;
    handler: ToolHandler<any>;
}>;
export {};
//# sourceMappingURL=EnhancedIndexTools.d.ts.map