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