import type { IssueContext } from "./context.js"; /** "Where it is" for a source finding, "Look at these first" for a photographed one. */ export declare function evidenceSection(ctx: IssueContext): string[]; /** * Where it was rendering, when capture joined the finding to an element. * Facts observed on the page, not placement advice; a path is printed only * after it is verified to exist, and a member whose file is gone still * names its component. */ export declare function rendersSection(ctx: IssueContext): string[]; /** * The other open issues filed against the same screenshots. A thrown error or * a blank capture on the same picture is often the cause of what this issue * describes, and clustering files it under its own number: without this, the * two documents never mention each other. */ export declare function siblingsSection(ctx: IssueContext): string[];