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