import type { NourishGoals, NutrientMap } from "../types.js"; export interface UpdateGoalsInput { daily?: NutrientMap; hydration_ml?: number; } export declare function getGoals(path?: string): Promise; export declare function updateGoals(input: UpdateGoalsInput): Promise;