import type { WorldSnapshot } from './snapshotTypes'; /** * Returns a snapshot whose auto-generated `Type#N` path segments are renumbered in content order. * Idempotent, and stable across runs whose traversal order differs but whose content does not. * Objects are returned re-sorted by canonical path; everything else is passed through untouched. */ export declare function canonicalizeSnapshot(snapshot: WorldSnapshot): WorldSnapshot;