import { Bit, Bits } from '../types'; /** * Applies the OR operation on the given bits. Returns one bit. * Throws if less than 2 bits are given. * * @example * reduceOr([1, 0, 0, 0, 1, 1, 0, 1]) => 1 * * @param {Array} bits input data * @return {Integer} OR bits */ declare const _default: (bits: Bits) => Bit; export default _default;