/** Deterministic Planner — returns a fixed scenario. The replay path's planner, no LLM (invariant #4). */ import type { Planner } from "../../core/ports.js"; import type { Context, Scenario } from "../../core/types.js"; export declare class StaticPlanner implements Planner { private readonly scenario; constructor(scenario: Scenario); plan(_ctx: Context): Promise; }