import type { GetCountry } from './types/index.js'; /** * Gets the country information by its country code. * * @param countryCode - Country identifier (ISO 3166-1 alpha-2) to find country related. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getCountry: GetCountry; export default getCountry;