import type { EoqInput, EoqResult } from './types.js'; /** * Calculate Economic Order Quantity (EOQ) * * EOQ is the optimal order quantity that minimizes total inventory costs, * balancing ordering costs and holding costs. * * Formula: EOQ = sqrt(2 × D × S / H) * Where: * D = Annual demand (units/year) * S = Order cost per order ($) * H = Holding cost per unit per year ($/unit/year) * * @param input - Annual demand, order cost, and holding cost * @returns EOQ and related metrics */ export declare function eoq(input: EoqInput): EoqResult; //# sourceMappingURL=eoq.d.ts.map