/**
 * Return the intersection between arrays
 * @param args Multiple arrays to intersect
 * @returns The intersection of the multiple arrays
 */
export declare function intersect<T>(...args: Array<Array<T>>): Array<T>;
