export declare enum FeedbackType {
    LIKE = "LIKE",
    DISLIKE = "DISLIKE"
}
export declare class CreateFeedbackDto {
    type: FeedbackType;
    comment?: string;
}
export declare class UpdateFeedbackDto {
    type?: FeedbackType;
    comment?: string;
}
