/**
 * Concat multiple arrays and remove duplicates
 */
declare function union(arrs: any): any[];
export default union;
