/** * Returns an array of unique values that are included only in one of the given arrays. * @template T * @param {T[]} array - The input array. * @param {...T[][]} restArray - The rest of the arrays to be compared. * @returns {T[]} - An array of unique values from the input arrays. * * @example * xor([2, 1], [2, 3]) // => [1, 3] * xor(['a', 'b', 'c'], ['b', 'd'], ['d', 'e']) // => ['a', 'c', 'e'] */ declare const xor: (array: T[], ...restArray: T[][]) => T[]; export default xor;