import { LyraJSAPIMethodBrowser } from './index'; export interface IChooseCityOptions { showLocatedCity: boolean; showHotCities: boolean; cities: string[]; hotCities: string[]; } export interface IChooseCityResponse { city: string; adCode: any; longitude: number; latitude: number; } export interface ICityAPI { chooseCity: LyraJSAPIMethodBrowser; } //# sourceMappingURL=city.d.ts.map