/**
 * Returns the intersection between the two input arrays
 */
declare const intersect: (a: any[], b: any[]) => any[];
export default intersect;
