import { Response } from 'express'; import { MealPlannerService } from './meal-planner.service'; export declare class MealPlannerController { private mealPlannerService; constructor(mealPlannerService: MealPlannerService); getMealPlanner(req: any): Promise<{ user: any; dates: any[]; meal_plans: {}; today: string; }>; autoGenerate(req: any, body: any, res: Response): Promise; addMealPlan(req: any, body: any, res: Response): Promise; toggleComplete(req: any, id: number, res: Response): Promise; }