export type { Json as t }; /** * Represents a JSON value. */ export type Json = null | number | string | boolean | { [key: string]: Json; } | Json[]; /** * Serializes a JSON value in a way that is deterministic, such that 2 strings * are equal if they encode the same value. * * @example * * Serialize({ a: "a", b: "b" }) === Serialize({ b: "b", a: "a" }) */ export declare function serialize(value: Json): string; /** * Recursively sorts the properties of an object. */ export declare function sortDeep(value: Json): Json; //# sourceMappingURL=Json.d.ts.map