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