import { SPI, EXPONENT, COEFFICIENT } from './ops/symbols'; import { DecimalSPI } from './DecimalSPI'; /** * Base class for decimal values. Stores numbers in two parts, a coefficient * and an exponent in base 10. * * The value of a decimal is calculated with: * * ``` * coefficient * 10 ^ exponent * ``` * * BaseDecimal is designed so that the exponent is always a `number` and * `coefficient` is a dense value that subclasses define. */ export declare abstract class AbstractDecimal { readonly [EXPONENT]: number; readonly [COEFFICIENT]: C; constructor(coefficient: C, exponent: number); toString(): string; readonly [SPI]: DecimalSPI; } //# sourceMappingURL=AbstractDecimal.d.ts.map