import { FOOD_TYPE } from "./interfaces/foodTypes"; import { NUTRIENT_TYPES } from "./interfaces/nutrientTypes"; import { INutrientValues } from "./interfaces/scoreTableInterface"; export declare const nutriScore: { calculate: (nutrientValues: INutrientValues, foodType?: FOOD_TYPE) => number; calculateClass: (nutrientValues: INutrientValues, foodType?: FOOD_TYPE) => string; nutrientScore: (nutrientScoreRanges: [number, number, number][], nutrientValue: number) => number; nutrientListScore: (nutrientList: NUTRIENT_TYPES[], foodType: FOOD_TYPE, nutrientValues: INutrientValues) => number; inRange: (x: number, min: number, max: number) => boolean; };