import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; /** * NgMapsPolylinePoint represents one element of a polyline within a {@link * NgMapsPolyline} */ export declare class NgMapsPolylinePoint implements OnChanges { /** * 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; ngOnChanges(changes: SimpleChanges): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }