import type { IssueContext } from "./context.js"; /** * Where before what. Somebody who reads the defect first has already started * forming a plan to fix it on the screen they saw it on, and in a project * with a design system that plan is usually wrong. This is also why it sits * under the standing rules rather than above them: the rules say how to work * here, this says where. */ export declare function placementSection(ctx: IssueContext): string[]; export declare function whatIsWrongSection(ctx: IssueContext): string[]; /** * What this will be graded against, before the evidence and long before the * instruction at the end: whoever fixes this should know what has to be true * when they are done, not discover it from a failed verify-fix. */ export declare function acceptanceSection(ctx: IssueContext): string[];