/** * RFC 8785 JSON Canonicalization Scheme (JCS). * * Produces a deterministic JSON serialization by: * 1. Sorting object keys lexicographically (Unicode code-point order) * 2. Using ES2015+ `JSON.stringify` number serialization (IEEE 754 → shortest round-trip) * 3. No whitespace * * Reference: https://www.rfc-editor.org/rfc/rfc8785 */ export declare function jcsCanonicalise(value: unknown): string; //# sourceMappingURL=jcs.d.ts.map