import { Model } from 'sequelize-typescript'; import { User } from './user.model'; import { PlannedFood } from './planned-food.model'; export declare class MealPlan extends Model { UserId: number; user: User; date: Date; meal_type: string; is_completed: boolean; notes: string; plannedFoods: PlannedFood[]; }