/** * Optimized algorithm to maximize the total discount * Returns an array where each index corresponds to the nth discount for each item * @param priceMatrix A 2D array where priceMatrix[i][j] represents the discount amount for the ith item at the jth position */ export declare function calculateHungarianAlgorithm(priceMatrix: number[][]): number[]; //# sourceMappingURL=calculateHungarianAlgorithm.d.ts.map