/** * Produces an array of all values which exist in all the collections passed. * * @param {...Collection} collections * @returns {Array} */ export default function intersect(...collections: Collection[]): Array;