export interface IGlobalsCountriesResponse {
    countries: ICountry[];
}
export interface ICountry {
    countryName: string;
    countryCode: string;
    states: IState[];
}
export interface IState {
    stateName: string;
    stateCode: string;
}
export interface ICurrencyExchangeRates {
    exchangeRates: IExchangeRate[];
    currencyCode: string;
}
export interface IExchangeRate {
    currencyCode: string;
    rate: number;
}
