import type { AuditTask } from "../types.js"; import type { ReviewPacket } from "../types/reviewPlanning.js"; import type { GraphEdge } from "audit-tools/shared"; /** The planning intermediate reviewPackets builds and reviewPacketMetrics scores. */ export interface ReviewPacketPlanningData { graphEdges: GraphEdge[]; groups: Map; planningGraphEdges: GraphEdge[]; packets: ReviewPacket[]; } /** Normalize an AuditTask priority; absent → "low". */ export declare function normalizePriority(priority: AuditTask["priority"]): NonNullable; /** Line count for one path: the task's own counts first, then the shared index. */ export declare function lineCountForPath(task: AuditTask, path: string, lineIndex?: Record): number; //# sourceMappingURL=reviewPacketShared.d.ts.map