import type { List } from '@sdkset/types'; /** * 返回一个数组,数组由给定数组集合的交集组成。 * * @example * intersection([1, 2, 3], [101, 2, 1, 10], [2, 1]) * => [1, 2] * * intersection([1, 2, 3]) * => [1, 2, 3] * * @param arrays 给定数组集合 */ export declare function intersection(...arrays: V[]): V[];