export type Country = { alpha2: string; name: string; alpha3: string; numeric: string; }; export declare const countries: Country[];