import type { FdoRestaurant } from "@feedmepos/core/entity"; import { type Feedback as BFeedback, type User } from "@/types/feedback"; interface FeedbackResponse extends BFeedback { id: string; billId: string; restaurant: FdoRestaurant; } export interface Feedback extends FeedbackResponse { pfUser: User; } export declare const feedbackApi: { readFeedbacks(businessId: string): Promise; }; export {};