import { TripDomainResponseDTO } from './trip'; import { CreateTripOperatorDTO } from './trip-operator'; import { CreateTripVehicleDTO } from './trip-vehicle'; export declare class CreateTripStatusDTO { comment?: string; status: string; statusId?: number; tripId: string; } export declare class TripStatusDTO { id: string; status: string; createdAt: Date; trip: TripDomainResponseDTO; } export declare class UpdateTripStatusDTO { tripId: string; status: CreateTripStatusDTO; operator?: CreateTripOperatorDTO; vehicle?: CreateTripVehicleDTO; } export declare class TripStatusResponseDTO { id: string; comment: string; createdAt: Date; createdBy: string; status: string; constructor(model: TripStatusResponseDTO); static of(model: TripStatusResponseDTO): TripStatusResponseDTO; }