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