import { Bits } from '../types'; /** * Flips all given bits and returns the flipped bits. * * @example * not([1,0,1,1,0,1]) => [0,1,0,0,1,0] * * @param {Array} bits input data * @return {Array} [NOT bits] */ declare const _default: (bits: Bits) => Bits; export default _default;