import type { ArtifactBundle } from "../../io/artifacts.js"; /** * Return the canonical pending semantic-review frontier. * * This is intentionally a projection only. Grouping, backend fit, admission, * model selection, and launch policy belong to the host. */ export declare function buildPendingAuditTasks(bundle: ArtifactBundle): { unit_id: string; file_paths: string[]; lens: string; rationale: string; task_id: string; pass_id: string; status?: "complete" | "pending" | undefined; tags?: string[] | undefined; token_estimate?: number | undefined; completed_at?: string | undefined; file_line_counts?: Record | undefined; inputs?: Record | undefined; line_ranges?: { path: string; end: number; start: number; }[] | undefined; priority?: "high" | "low" | "medium" | undefined; risk_estimate?: number | undefined; completion_reason?: string | undefined; }[]; //# sourceMappingURL=packetFilter.d.ts.map