import { Cartesian3, GeocodeType } from "cesium"; export declare enum EHR_GEOMETRY_TYPE { Point = "Point", LineString = "LineString", MultiLineString = "MultiLineString", Polygon = "Polygon" } export interface EHRGeocoderServiceResult { displayName: string; destination: Cartesian3 | number[] | number[][]; type: EHR_GEOMETRY_TYPE; ehr_code: string; ehr_type: string; } export default class MaametGeocoderService { private url; private resource; constructor(app_url: string); geocode(query: string, type?: GeocodeType): Promise; }