import type { RoiInput, RoiResult } from './types.js'; /** * Return on investment (ROI) calculation * * @param input - ROI input with investment, annual return and years * @returns Total/annualized ROI, payback period, total return and net profit * @throws RangeError if investment, annualReturn or years is not > 0 */ export declare function roi(input: RoiInput): RoiResult; //# sourceMappingURL=roi.d.ts.map