export interface Country { cost_score: number; country: string; country_code: string; long_slug: string; name: string; name_chinese: string; overall_score: number; region: string; short_slug: string; slug: string; } interface CountryHash { [key: string]: Country; } export declare const countries: CountryHash; export {}; //# sourceMappingURL=countries.d.ts.map