export type CountryDialCode = { code: string; name: string; dialCode: string; flag: string; }; /** * Generate flag emoji from country code * Converts ISO alpha-2 country code to flag emoji * E.g., 'US' → '🇺🇸', 'ID' → '🇮🇩' */ export declare const getFlagEmoji: (countryCode: string) => string; /** * Get all countries with dial codes for the selector. * When a locale is provided, country names are translated using Intl.DisplayNames. * Returns countries sorted alphabetically by name. */ export declare const getCountriesForDialSelector: (allowedCountries?: string[], locale?: string) => CountryDialCode[]; /** * Get country dial code info by country code */ export declare const getCountryDialCodeInfo: (countryCode: string) => CountryDialCode | null; //# sourceMappingURL=countryDialCodes.d.ts.map