/** * What lookout says about one attempt, in the sentences it has always used. * * The board's record feed and the issue document both narrate the same * attempts, and they must say the same thing about each: a fixer who reads one * and then the other should recognise every line. So the sentences live here, * once, and both surfaces print them. */ import type { AttemptRecord } from "./state.js"; export interface AttemptSentences { /** "a fix was reported at : ", when anything was reported. */ claimed?: string; /** "fixing this surfaced issue ", when the attempt surfaced any. */ surfaced?: string; /** "lookout ruled it : ", once ruled. */ verdict?: string; } export declare function attemptSentences(a: AttemptRecord): AttemptSentences;