import type { Bit } from '../types/bit'; declare const bitsToBigUint: (bits: Bit[]) => { value: bigint; isSafe: boolean; }; declare const bitsToBigInt: (bits: Bit[]) => { value: bigint; isSafe: boolean; }; declare const bitsToIntUint: (bits: Bit[], options: { type: 'int' | 'uint'; }) => number; export { bitsToIntUint, bitsToBigUint, bitsToBigInt };