/**
 * Combines an array with all the items of another.
 * Does not allow duplicates and is case and type sensitive.
 */
declare function combine(arr1: any, arr2: any): any;
export default combine;
