/**
 * Neural MCP Tools for CLI
 *
 * V2 Compatibility - Neural network and ML tools
 *
 * ✅ HYBRID Implementation:
 * - Uses @claude-flow/embeddings for REAL ML embeddings when available
 * - Falls back to deterministic hash-based embeddings when ML model not installed
 * - Pattern storage and search with cosine similarity (real math in all tiers)
 * - Training stores patterns as searchable embeddings (not simulated)
 *
 * Note: For production neural features, use @claude-flow/neural module
 */
import { type MCPTool } from './types.js';
export declare const neuralTools: MCPTool[];
//# sourceMappingURL=neural-tools.d.ts.map