/** * [交集] * 示例:intersection([1, 2], [2, 3]) => [2] */ declare const intersection: (...args: any[]) => any[]; export default intersection;