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