export declare function findMany(companyId: string, where: Record, skip: number, take: number): Promise; export declare function findById(id: string, companyId: string): Promise; export declare function updateById(id: string, data: Record): Promise; export declare function getStats(companyId: string): Promise<{ total: any; averageOverall: number; averageVehicle: number; averageService: number; byRating: Record; }>; export declare function sendReminder(reservationId: string, sentAt: Date, field: 'reviewReminderSentAt' | 'reviewFinalReminderSentAt'): Promise; //# sourceMappingURL=review.repo.d.ts.map