export { timeZones } from './timezones.js'; declare function getFlag(countryCode: string): string; interface CountryData { name: string; flag: string; short?: string; currency: { code: string; symbol: string; }; } declare const countries: Record; type Countries = keyof typeof countries; export { type Countries, countries, getFlag };