/**
 * Find the difference between two objects.
 */
export declare const getObjectDelta: <T extends object>(a: T, b: Partial<T>) => Partial<T>;
