import { MapPoiSearchResponseType, MapRecodingResponseType } from '../../module/map/type/map.type'; export declare enum MapMicroserviceFunction { getRecodingData = "MapService:getRecodingData", getPointOfInterestData = "MapService:getPointOfInterestData" } export declare class MapMicroserviceHandler { static getRecodingData(params: { location: string; radius: string; }): Promise; static getPointOfInterestData(params: { keywords: string; city: string; offset: string; page: string; }): Promise; }