import { FoodItem } from '../models/food-item.model'; export declare class FoodsService { private foodItemModel; constructor(foodItemModel: typeof FoodItem); getFoods(category?: string, searchQuery?: string): Promise<{ filipino_foods: FoodItem[]; other_foods: FoodItem[]; categories: string[]; current_category: string; search_query: string; }>; }