import { Bits } from '../model/export/bits'; export declare function numberToBinary(value: number, maxBits: number): Bits; export declare function binaryToNumber(bits: Bits): number; export declare function booleanToBinary(value: boolean): Bits; export declare function binaryToBoolean(bits: Bits): boolean; export declare function takeBitsChunk(bits: Bits, size: number): Bits;