export interface ICountry { guid: string title: string numCode: string isoCodes: string[] } export interface ICountries { countries: ICountry[] }