export declare class CreatePublicReviewDto {
    shopId: string;
    category: string;
    customerUserId?: string;
    customerName?: string;
    customerPhone?: string;
    rating: number;
    comment: string;
}
