import { City, Country, Language, Phonecodes, Region, State } from "../types"; export declare const GetRegions: (src?: string) => Promise; export declare const GetPhonecodesByRegion: (_region: string, src?: string) => Promise; export declare const GetPhonecodes: (src?: string) => Promise; export declare const GetCountriesByRegion: (_region: string, src?: string) => Promise; export declare const GetCountries: (src?: string) => Promise; export declare const GetLanguages: (src?: string) => Promise; export declare const GetState: (id: number, src?: string) => Promise | []>; export declare const GetCity: (countryid: number, stateid: number, src?: string) => Promise | []>; export declare const GetAllCities: (src?: string) => Promise | []>;