import { ICity, ICityKeys, ICityUniqueKeys } from '../interfaces/city-interface'; interface findCityDataByValueProps { cityList: ICity[]; key?: ICityUniqueKeys; value: string; } interface filterCitiesProps { cityList: ICity[]; key?: ICityKeys; value: string; } interface filterCitiesByCountryStateProps { cityList: ICity[]; countryCode: string; stateCode: string; } export declare const findCityByKeyValue: ({ cityList, key, value }: findCityDataByValueProps) => ICity | null; export declare const filterCities: ({ cityList, key, value }: filterCitiesProps) => ICity[] | null; export declare const filterCitiesByCountryState: ({ cityList, countryCode, stateCode }: filterCitiesByCountryStateProps) => ICity[] | null; export {};