import { JsonObject } from "./types"; /** * deepDiff * Returns the slice of `a` that differs from `b`. * – Added/changed keys carry `a`'s value. * – Keys that exist in `b` but not in `a` are surfaced with `null`. * – For arrays, only items that are new in `a` (not present in `b`) are included. */ export declare function deepDiff(a: A, b: B): Partial; //# sourceMappingURL=deepDiff.d.ts.map