/** * Task 1771 — money is compared and summed in integer minor units so the * outstanding invariant is exact and never subject to float drift. Graph * storage is unchanged: `amount` and `totalPaymentDue` stay decimal numbers, * matching the existing JobLogic-exact construction rows. Conversion happens * here, at the boundary, so no stored value changes shape. */ /** Decimal major units to integer minor units. */ export declare function toMinor(n: number): number; /** Integer minor units back to decimal major units. */ export declare function fromMinor(n: number): number; //# sourceMappingURL=money.d.ts.map