export type RegionKeyType = 'north' | 'northEast' | 'east' | 'west' | 'central' | 'islandwide'; export type RegionLabelType = 'North' | 'North-East' | 'East' | 'West' | 'Central' | 'Islandwide'; export type RegionLabelKeyMappingType = Record; export const REGION_MAPPING: RegionLabelKeyMappingType = { 'North-East': 'northEast', Central: 'central', East: 'east', Islandwide: 'islandwide', North: 'north', West: 'west', };