import { BillMetaService } from '~backend/billMeta/billMeta.service'; import { RestaurantService } from '~backend/business/restaurant/restaurant.service'; import { UserService } from '~backend/user/user.service'; export declare class FeedbackController { private readonly billMetaService; private readonly restaurantService; protected readonly userService: UserService; constructor(billMetaService: BillMetaService, restaurantService: RestaurantService, userService: UserService); getBusinessFeedback(businessId: string): Promise; }