/** * Overrides properties of the target object with non-undefined values from the source object. * * @param target The object to be modified * @param source The object containing override values * @returns The modified target object */ export declare function overrideNonUndefined(target: T, source: Partial): T;