/// import { Bits } from '../types'; /** * Creates a new buffer and writes the given bits. * * @example * createBuffer([1,1,1,1, 0,0,0,1, 1,0,1,0]) => buffer with data 1111 0001 1010 0000 * * @param {Array} bits an array containing the bits to insert * @returns {Buffer} */ declare const _default: (bits: Bits) => Buffer; export default _default;