/** * Phase 2 — stale compiled-truth. * * Finds `:Person | :Organization | :Concept` entities whose * `compiledTruthUpdatedAt` is more than 180 days old AND that have at * least three new `:TimelineEvent` rows linked since the last compile. * * Surfaces to the operator-review queue (returns the list as `deferred`). * Does NOT auto-dispatch the compiled-truth rewriter — operator triggers * that manually on the entities that warrant it. * * No new label is written: phase 2 is read-only. The returned list is * embedded in the dream-cycle `:Report` body so the operator can see * which entities need re-compiling. */ import type { PhaseContext, PhaseResult } from "./index.js"; export declare function phaseStaleTruth(ctx: PhaseContext): Promise; //# sourceMappingURL=phase-stale-truth.d.ts.map