import type { SessionPolicy } from "./session-policy.js"; import type { ChatMessage } from "../types.js"; /** * Build a rich summary when the agent stops (user declined to continue or * maxIterations ceiling hit). Includes plan state, jobs, key findings, and * clear resume instructions so a later "continue" can pick up exactly here. */ export declare function buildRichStopSummary(messages: ChatMessage[], session: SessionPolicy, steps: number): Promise;