import { AbstractDecimal } from './AbstractDecimal'; import { MathContext } from '../MathContext'; /** * Divide a number with another one. * * @param a * first number to divide * @param b * number to divide by * @param context * context with information about the requested scale and how to perform * rounding */ export declare function divide>(a: D, b: D, context: MathContext): D; //# sourceMappingURL=divide.d.ts.map