/** * Creates an array of unique values that are included in exactly one of the given arrays * * @template T * @param {T[]} array - The array to inspect. * @param {...any} args - The arrays to inspect. * @param {Function} [iteratee=identity] - The iteratee invoked per element. * @returns {T[]} - Returns the new array of filtered values. * * @example * * const arr1 = [1, 2, 3, 4]; * const arr2 = [2, 4, 6]; * const arr3 = [1, 2, 5]; * * const result = xorBy(arr1, arr2, arr3, (n) => n % 2); * console.log(result); // => [3, 6] */ declare const xorBy: (array: T[], ...args: any) => T[]; export default xorBy;