/** * Stringify `value` with object keys sorted recursively. Equal logical * values produce the same string regardless of insertion order; arrays * preserve their element order. Circular references throw (the error * comes straight from JSON.stringify's stack-overflow check). */ export declare function stableStringify(value: unknown): string;