/// <reference types="node" />
import { BigInteger as BigInt } from 'jsbn';
export default class DecryptedValue {
    bi: BigInt;
    constructor(m: number | Buffer | bigint);
    toString(): string;
}
