/** * Receives a list or lists of objects and combines them * @param {object[] | object[object[]]} arr Objects that you want to combine * @returns {object} Object combined */ declare const combineObjects: (...arr: object[] | object | any) => object; export { combineObjects };