/** * status-note.ts — Parenthetical status note appended to agent result text. */ /** * Explicit parenthetical note for a non-normal terminal outcome, so the parent * agent can't mistake partial output for a completed result. Empty string for a * clean completion (and any unknown/non-terminal status). * * `stopped` (a human aborted it) is deliberately distinct from `aborted` (the * turn limit was hit) — the parent should treat human intervention differently * from a budget cutoff. */ export declare function getStatusNote(status: string): string;