/** * Gets the intersection between two arrays. */ declare function intersection(array1: readonly T[], array2: readonly S[]): (T & S)[]; export { intersection as i };