import type { CheckTarget } from './cliTarget.js'; export type LoopMarker = { target: CheckTarget; maxIterations: number; startedAt: string; label: string; until?: string; }; export declare const loopMarkerPath: (root: string) => string; export declare function readLoopMarker(root: string): LoopMarker | null; /** One-line description of a loop target for `loop status` / arm messages. */ export declare function describeTarget(t: CheckTarget): string;