import { AbstractDecimal } from './AbstractDecimal'; import { RoundingMode } from '../RoundingMode'; /** * Round the given decimal number, optionally specifying the rounding mode to * use. * * @param a * number to round * @param roundingMode * the rounding mode to use, or HalfUp if not specified */ export declare function round>(a: D, roundingMode?: RoundingMode): D; //# sourceMappingURL=round.d.ts.map