import { BigInteger as BigInt } from 'jsbn';
export default class EncryptedValue {
    readonly a: BigInt;
    readonly b: BigInt;
    constructor(a: string | number | BigInt, b: string | number | BigInt);
    multiply(encryptedValue: EncryptedValue): EncryptedValue;
}
