import { Decimal } from 'decimal.js';
declare function decimal(n: Decimal.Value): Decimal;
declare namespace decimal {
    var add: (...values: Decimal.Value[]) => Decimal;
    var sub: (x: Decimal.Value) => any;
    var mul: (x: Decimal.Value) => any;
    var div: (x: Decimal.Value) => any;
}
export default decimal;
