/** * Recursively sort object keys alphabetically so `JSON.stringify` produces a * deterministic, byte-stable output (the repo's deterministic-JSON invariant). * Arrays preserve order; their elements are sorted recursively. */ export declare function sortKeysDeep(value: unknown): unknown;