import { RatingType } from "../constants/rating-type.constants";
export declare class CreateRatingDto {
    rater_id: number;
    rated_id: number;
    trip_id: number;
    rating: number;
    other_input?: string;
    rating_type: RatingType;
    tags?: string[];
}
