import { Value } from './value';
import BigNumber from 'bignumber.js';
declare class IOUValue extends Value {
    constructor(value: string | BigNumber, roundingMode?: BigNumber.RoundingMode, base?: number);
    multiply(multiplicand: Value): void;
    divide(divisor: Value): void;
    negate(): IOUValue;
    _canonicalize(value: any): IOUValue;
    equals(comparator: any): boolean;
}
export { IOUValue };
//# sourceMappingURL=iouvalue.d.ts.map