import { AbstractDecimal } from './AbstractDecimal'; import { MathContext } from '../MathContext'; /** * Add two decimal numbers together. * * @param a * the first number * @param b * the second number * @param context * optional context with information about scale/precision */ export declare function add>(a: D, b: D, context?: MathContext): D; //# sourceMappingURL=add.d.ts.map