import { AddReviewDto } from './dto/review.dto';
import { BookingService } from 'src/booking/booking.service';
import { DbService } from 'src/db/db.service';
import { CommonService } from 'src/common/common.service';
export declare class ReviewService {
    private readonly bookingService;
    private readonly model;
    private readonly commonService;
    constructor(bookingService: BookingService, model: DbService, commonService: CommonService);
    create(body: AddReviewDto, payload: any, req: any): Promise<{
        message: any;
    }>;
    findAll(payload: any, page: any, limit: any): Promise<{
        count: any;
        overall_rating: string;
        data: any;
    }>;
    update_rating(booking: any, payload: any): Promise<void>;
}
