import type { GoalState } from "../domain/types.js"; export declare function addProgressNote(goal: GoalState, input: { summary: string; next?: string; now?: number; }): GoalState; export declare function closeObservedTurn(goal: GoalState, input?: { maxStalledTurns?: number; now?: number; }): GoalState; export declare function markHostProgress(goal: GoalState, input: { fingerprint: string; source: string; summary?: string; now?: number; }): GoalState; /** @deprecated Use markHostProgress with a stable host-observed fingerprint. */ export declare function markHostActivity(goal: GoalState, input: { source: string; summary?: string; now?: number; }): GoalState; //# sourceMappingURL=progress.d.ts.map