/** * RFC 8785 JSON Canonicalization Scheme. * * Fixes object-key order, number form, string escaping and whitespace so that * two structurally equal documents serialize to identical bytes. */ export declare function jcs(value: unknown): string;