/** getPoiInfo 返回的单条 POI 详情(API 原始字段 + point) */ export interface PoiDetailItem extends Record { name?: string; title?: string; addr?: string; address?: string; tel?: string; uid?: string; geo?: string; point?: { lng: number; lat: number; }; } declare function getPoiInfo(uid: string): Promise; export { getPoiInfo, };