/**
 * Combine two objects into one. If both objects have the same key, the value of the second object will be used.
 * @param a
 * @param b
 * @returns
 */
export declare function combineObject<T>(a: T, b: T): T | undefined;
