import { type ContentCoherenceTrace } from "../../shared/decompose/contentCoherence.js"; import { type TaskAffinityGraph } from "./taskAffinityGraph.js"; /** Audit projection of one canonical content-coherence component. */ export interface GraphPacket { packet_id: string; task_ids: string[]; token_estimate: number; risk_mass: number; risk_score: number; } export interface TaskCoherencePartition { coherence_trace: ContentCoherenceTrace; packets: GraphPacket[]; } /** * Project the persisted task-affinity graph through the shared membership core. * Any additional JavaScript arguments are deliberately inert: backend sizing * is not an input to semantic membership. */ export declare function buildTaskCoherencePartition(input: TaskAffinityGraph, ..._ignored: readonly unknown[]): TaskCoherencePartition; //# sourceMappingURL=partitionTaskGraph.d.ts.map