export declare const countryData: {
    [key: string]: {
        name: string;
        alpha3: string;
        callingCode: string;
        flag: string;
    };
};
export declare const countries: {
    [key: string]: string;
};
export declare const countryCodes: string[];
export declare const countryNames: string[];
export { getAllCountries, getAlpha3Code, getCallingCode, getCountryByCode, getCountryFlag, getCountryName, searchCountries, isValidCountryCode, isValidCallingCode, getCountriesByCallingCode, } from "./utils";
export { type Country, type CountryCode, type CountryData, type CountrySearchOptions, } from "./types";
