export interface AgentDossierTraveler {
  isMainBooker: boolean;
  email: string;
  phone: string;
  mobile: string;
  dateOfBirth?: Date;
  lastName: string;
  firstName: string;
  guid?: string;
}
