import type { Handoff, SemanticIssue } from "./types.js"; export interface H001Issue { code: "H001"; path: string; message: string; } export type HandoffRuleCode = "H002" | "H003" | "H004" | "H005" | "H008" | "H009" | "H010"; export interface HandoffRuleIssue { code: HandoffRuleCode; path: string; message: string; } /** H001 repository-relative path and normalized-duplicate checks. */ export declare function lintHandoffPaths(handoff: Handoff): H001Issue[]; export declare function lintHandoff(handoff: Handoff): Array;