/// import { BigInteger } from 'jsbn'; declare const kBigInteger: unique symbol; export declare class BigInt { static fromBuffer(buffer: Buffer): BigInt; static ZERO: BigInt; private [kBigInteger]; constructor(raw: BigInteger); eq(val: BigInt): boolean; add(bigInt: BigInt): BigInt; subtract(bigInt: BigInt): BigInt; multiply(bigInt: BigInt): BigInt; mod(v: BigInt): BigInt; modPow(e: BigInt, n: BigInt): BigInt; xor(bigInt: BigInt): BigInt; toHex(): string; toBuffer(): Buffer; } export {};