type JsonInput = null | undefined | string | number | boolean | JsonInput[] | { [k: string]: JsonInput; }; export declare function canonicalJson(value: JsonInput | unknown): string; export declare function deepEqualCanonical(a: JsonInput | unknown, b: JsonInput | unknown): boolean; export {}; //# sourceMappingURL=canonical-json.d.ts.map