/** * @name objectSpread * @summary Concats all sources into the destination */ export declare function objectSpread(dest: object, ...sources: (object | undefined | null)[]): T;