import IIntersection from './interface/IIntersection'; /** * Returns an array of unique values that are included in all given arrays, using `SameValueZero` for equality comparisons. * * @since 1.0.0 * * @template T * @param {...Array} array - The arrays to inspect. * @returns {Array} - The array of common elements. * @example * * intersection([1, 2, 3], [4, 3, 2]) * // => [2, 3] * * intersection(['apple', 'banana', 'orange'], ['pear', 'apple', 'orange']) * // => ['apple', 'orange'] */ declare const intersection: IIntersection; export default intersection;