/** * Complete Enhanced Psycho-Symbolic Reasoning with Full Learning Integration * Includes: Domain Adaptation, Creative Reasoning, Enhanced Knowledge Base, Analogical Reasoning */ import { Tool } from '@modelcontextprotocol/sdk/types.js'; export declare class CompletePsychoSymbolicTools { private knowledgeBase; private domainEngine; private creativeEngine; private analogicalEngine; private performanceCache; private toolLearningHooks; constructor(); getTools(): Tool[]; handleToolCall(name: string, args: any): Promise; private performCompleteReasoning; private extractAdvancedEntities; private enhancedKnowledgeTraversal; private synthesizeAdvancedAnswer; private advancedKnowledgeQuery; private addEnhancedKnowledge; private registerToolInteraction; private getCrossToolInsights; private getLearningStatus; }