export declare const mergeObjects: <T extends object, S extends object>(target: T, ...sources: S[]) => Partial<T & S>;
