/**
 * 将多个数的值返回唯一的并集数组
 *
 * @param {...Array} 数组
 * @return {Array}
 */
declare function union(): any[];
export default union;
