/** * The overlay: what the run in flight is saying about an issue right now. * * Narration, not state, and treated as such. It is read from the events * directly rather than from a fold, because a log truncated by a plain `check` * carries nothing else to attach to, and it is laid over a board that exists * whether or not anything is executing. */ import type { LookoutEvent } from "./events.js"; import type { BoardStep } from "./board-types.js"; /** * The issue a `verify-fix` is judging this second, if one is, and everything * that run has said about it so far. * * Read from the events directly rather than from a fold, because a log * truncated by a plain `check` carries nothing else to attach to. The run is in * flight while its run-start has no matching run-end. */ export declare function liveVerify(events: LookoutEvent[]): { cluster: string | null; steps: BoardStep[]; };