import { ID } from '../../commonStateTypes/common'; export interface CountryWithCurrency { countryCode: string; countryName: string; currency: string; currencyCode: string; currencySymbol: string; } export interface CurrencyState { currencyByCountryCode: Record; }