import type { AuditTask, Lens } from "../types.js"; /** Lens ordering for task prioritization, derived from {@link LENS_REGISTRY} * (sorted ascending by `order_weight`). Deriving this from the registry ensures * every lens — including `architecture`, which was previously absent from the * hardcoded array — is automatically included when added to the registry. */ export declare const LENS_ORDER: Lens[]; export declare function priorityRank(priority: AuditTask["priority"]): number; export declare function computeRiskEstimate(task: AuditTask): number; export declare function sortLenses(lenses: Iterable): string[]; //# sourceMappingURL=auditTaskUtils.d.ts.map