import type { GetCountryStateCities } from './types/index.js'; /** * Gets all the country cities by state id. * * @param countryCode - Country identifier (ISO 3166-1 alpha-2) to find the cities related. * @param stateId - State identifier to find the cities 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 getCountryStateCities: GetCountryStateCities; export default getCountryStateCities;