import { Country } from '../types/types';
/**
 * @description Each country object contains the following properties:
 *
 * @property {string} name - The country's name.
 * @property {string} iso2 - The country's ISO 2-letter code.
 * @property {string} dialCode - The country's dial code.
 * @property {string} flag - The country's flag (emoji).
 * @exports Countries - An array of country objects.
 */
export declare const Countries: Country[];
