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