/** * What severity lookout opens a measured finding at. * * Its own module because two callers need the same answer and neither may * import the other: ingestion assigns it, and the prose that explains the * finding names it. They used to disagree. The impact sentence said an axe * rating of `serious` means "lookout files as high", which is true of every * axe rule except the one that is capped, so a target-size ticket printed * "severity medium" four lines above prose asserting it was filed as high. */ import type { DeterministicFinding, Severity } from "../types.js"; export declare function severityFromDeterministic(f: DeterministicFinding): Severity;