export type CarrierType = 'DHL' | 'UPS' | 'DPD' | 'FedEx' | 'GLS'; export type PackageStatusType = | 'in-transit' | 'inbound-scan' | 'delivery' | 'transit' | 'scanned';