import { AxiosResponse } from 'axios'; import { City, Country, State } from '../types/countryStateCityService.type'; declare const CountryStateCityService: { getCountry: () => Promise>; /** * Get state by country * @param country ISO2 Code of Country * @returns */ getState: (country: Country["iso2"]) => Promise>; /** * Get city by state and country * @param country ISO2 Code of Country * @param state ISO2 Code of State * @returns */ getCity: (country: Country["iso2"], state: Country["iso2"]) => Promise>; }; export default CountryStateCityService;