import { Bits } from '../types'; /** * Applies the exclusive or operation, expects two arrays of the same size and returns a new one. * * @example * xor([1,0,0,0,1,1,0,1], [0,1,1,0,0,1,0,0]) => [1,1,1,0,1,0,0,1] * * @param {Array} bits1 input data * @param {Array} bits2 input data * @return {Array} [bits1 XOR bits2] */ declare const _default: (bits1: Bits, bits2: Bits) => Bits; export default _default;