export declare class ReviewDto {
    review: string;
    patient_name?: string;
    rating: number;
    created_at: string;
}
export declare class DocReviewDetailsDto {
    details: ReviewDto[];
    total: number;
}
