import { UInt4, Nibble } from '../types'; declare const _default: (nibble: UInt4) => Nibble; /** * Returns an Array of length 8 containing the read bits. * * @example * nibble.read(15) => [1,1,1,1] * * @param {Number} nibble one nibble * @return {Array} */ export default _default;