/** * Returns true if any element of arr1 appears in arr2. */ export declare function arraysIntersect(arr1: T[], arr2: T[]): boolean;