import { type CountryCode } from './country-code'; import type { Country, CountryData, CountryRecord } from './types'; export declare const toDialCode: (record: Pick) => string; export declare const toCountry: (record: CountryRecord) => Country; export declare const countryRecords: readonly CountryRecord[]; export declare const countryData: { [key: string]: CountryData; }; /** @deprecated Use getCountryName / getAllCountries. Kept for backwards compatibility. */ export declare const countries: { [key: string]: string; }; export declare const countryCodes: readonly string[]; export declare const countryNames: readonly string[]; export declare const countryCodeSet: Set; export declare const allCountries: readonly Country[]; export declare const countriesByAlpha2: Map; export declare const countriesByAlpha3: Map; export declare const countriesByNumeric: Map;