import { JourneyType } from './JourneyType.js';
import { PortOfExit } from './PortOfExit.js';

declare class Journey {
    private static readonly REG_EX_JOURNEY;
    goodsCarried?: string | null;
    journeyStartLctn?: string | null;
    journeyEndLocatn?: string | null;
    journeyType: JourneyType | null;
    portOfExit?: PortOfExit | null;
}

export { Journey };
