/** * RFC 8785 — JSON Canonicalization Scheme (JCS) * * Produces a deterministic JSON string suitable for signing/verifying. * * Notes: * - Only valid JSON data is supported (no undefined/functions/symbols). * - Object keys are sorted lexicographically. * - Numbers must be finite. * - Output contains no whitespace. */ export declare function jcsCanonicalize(value: unknown): string; //# sourceMappingURL=jcs.d.ts.map