import { TripDomainResponseDTO } from './trip'; export declare class CreateTripOperatorDTO { operatorId: string; firstName: string; lastName: string; phone?: string; } export declare class TripOperatorResponseDTO { id: string; firstName: string; lastName: string; operatorId: string; trip: TripDomainResponseDTO; }