export declare class UpdateFeedbackDto {
    rating?: number;
    comment?: string;
    status?: 'published' | 'pending' | 'hidden';
}
