import type { PlannerConfig } from "./config.js"; import type { CatalogEntry, MemoryContext, RetrievalPlan } from "./types.js"; export declare class DeterministicRetrievalPlanner { private readonly config; constructor(config: PlannerConfig); plan(prompt: string, entries: CatalogEntry[], availableProviderIds: string[], context?: MemoryContext): RetrievalPlan; }