import type { AuditTask } from "../types.js"; import type { AuditPlanMetrics } from "../types/reviewPlanning.js"; import type { ReviewPacketPlanningData } from "./reviewPacketShared.js"; /** * Compute AuditPlanMetrics from pre-built planning data. * Called by buildAuditPlanMetrics in reviewPackets.ts after it runs the * planning pass; not intended for direct use outside this module pair. */ export declare function computeAuditPlanMetrics(planningData: ReviewPacketPlanningData, tasks: AuditTask[], lineIndex?: Record, generatedAt?: Date): AuditPlanMetrics; //# sourceMappingURL=reviewPacketMetrics.d.ts.map