/**
 * Join together all input arrays into one new array.
 */
declare const join: (a: Set<any>, b: Set<any>) => Set<any>;
export default join;
