import { ICity, ICityUniqueKeys } from '../interfaces'; export declare const getAllCities: () => ICity[]; export declare const getCityByKeyValue: (key: ICityUniqueKeys, value: string) => ICity | null; export declare const getCitiesByCountry: (countryCode: string) => ICity[] | null; export declare const getCitiesByCountryAndState: (countryCode: string, stateCode: string) => ICity[] | null;