import { Feature } from "../types/Feature"; import { EntityDict } from 'oak-domain/lib/types'; import { EntityDict as BaseEntityDict } from 'oak-domain/lib/base-app-domain'; import { Cache } from './cache'; export declare class Geo extends Feature { private cache; constructor(cache: Cache); searchPoi(name: string, areaId?: string, typeCode?: string, indexFrom?: number, count?: number): Promise<{ poiName: string; areaId: string; latitude: number; longitude: number; }[]>; }