type CountriesListType = {
    name: string;
    shortName: string;
};

declare const countryNames: () => Promise<string[]>;
declare const countryShortNames: () => Promise<string[]>;
declare const countries: () => Promise<CountriesListType[]>;
declare const getCountry: ({ name }: {
    name: string;
}) => Promise<CountriesListType | undefined>;

export { type CountriesListType, countries, countryNames, countryShortNames, getCountry };
