import { type PlanningTodoFlags } from "../planning/planning-rules"; import type { StateStore } from "../state/state-store"; export declare class PlanningLifecycle { private readonly stateStore; constructor(stateStore: StateStore); ensureScope(sessionId: string): Promise; markTodo(sessionId: string, patch: Partial): Promise; }