import type { Observation, AgentConfig, AgentState, Decision, Experience, ReasoningContext } from './types.js'; export declare class Reasoner { reason(observation: Observation, agentConfig: AgentConfig, currentState: AgentState, experiences?: Experience[], enrichedContext?: ReasoningContext): Promise; }