import { Response } from 'express'; import { GoalsService } from './goals.service'; export declare class GoalsController { private goalsService; constructor(goalsService: GoalsService); getGoals(req: any): Promise<{ user: any; goals: import("../models/user-goal.model").UserGoal; bmr: any; tdee: any; }>; updateGoals(req: any, body: any, res: Response): Promise; }