///
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { Observable } from 'rxjs';
import { ExgMapFitBoundsAccessor, ExgMapFitBoundsDetails } from '../services';
export declare class ExgMapPolylinePointDirective implements OnChanges, ExgMapFitBoundsAccessor {
/**
* The latitude position of the point.
*/
latitude: number;
/**
* The longitude position of the point;
*/
longitude: number;
/**
* This event emitter gets emitted when the position of the point changed.
*/
positionChanged: EventEmitter;
constructor();
ngOnChanges(changes: SimpleChanges): any;
/** @internal */
getFitBoundsDetails$(): Observable;
}
//# sourceMappingURL=exg-map-polyline-point.directive.d.ts.map