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