1 2 3 4 5 6 7 8 9
export interface FetchedCountry { country: string; flag: string; languages: string; capital: string; region: string; population: number; currencies: string; }