/**
 * Return a new Array with elements common to all Arrays.
 * - based on underscore.js implementation
 */
declare function intersection(arr: any): any[];
export default intersection;
