/** * Generates an array of objects from the countries.csv file. * @returns {array} - Returns an array of objects. */ declare const mapCountries: () => { [key: string]: string; }[]; export default mapCountries; //# sourceMappingURL=mapCountries.d.ts.map