type JsonValue = string | number | boolean | null | undefined | JsonObject | JsonArray; type JsonObject = { [key: string]: JsonValue; }; type JsonArray = JsonValue[]; declare const getDifferences: (obj1: T, obj2: T) => Partial | undefined; export default getDifferences;