import type { CalorieInput, CalorieResult } from './types.js'; /** * Calculate daily calorie needs using Mifflin-St Jeor equation * * BMR (male) = 10 × weight(kg) + 6.25 × height(cm) - 5 × age + 5 * BMR (female) = 10 × weight(kg) + 6.25 × height(cm) - 5 × age - 161 * TDEE = BMR × activity multiplier * * @param input - Calorie input parameters * @returns Calorie result with BMR, TDEE, and calorie goals * @throws RangeError if weightKg, heightCm, or age is not greater than 0 */ export declare function calorie(input: CalorieInput): CalorieResult; //# sourceMappingURL=calorie.d.ts.map