interface Country { name: string; flag: string; code: string; dialCode: string; length: number; } export declare const countries: Country[]; type CountryWithoutCode = Omit; interface CountriesMap { [code: string]: CountryWithoutCode; } export declare const countriesMap: CountriesMap; export {}; //# sourceMappingURL=countries.d.ts.map