import type { GetCountryCurrencies } from './types/index.js'; /** * Gets all the country currencies by country code. * * @param countryCode - Country identifier (ISO 3166-1 alpha-2) to find the currencies 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 getCountryCurrencies: GetCountryCurrencies; export default getCountryCurrencies;