import { Bit } from '../types'; declare const _default: (bits: Bit[]) => Bit[]; /** * 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] */ export default _default;