import type { Decision, AgentConfig, ActionPlan, PlanningContext } from './types.js'; export declare class Planner { plan(decision: Decision, config: AgentConfig, planningContext?: PlanningContext): Promise; }