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