export declare class CreateReviewDto {
    customerName: string;
    customerPhone?: string;
    rating: number;
    comment: string;
}
