export interface ICountry {
    flag: string;
    name: string;
    full_name: string;
    sovereignty: string;
    'alpha-2': string;
    'alpha-3': string;
    numeric: string;
    subdivision: string;
    tlds: string[];
}
declare const countries: Array<ICountry>;
export default countries;
