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<google.maps.LatLngLiteral>;
    ngOnChanges(changes: SimpleChanges): any;
    static ɵfac: i0.ɵɵFactoryDeclaration<NgMapsPolylinePoint, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<NgMapsPolylinePoint, "map-polyline-point", never, { "latitude": { "alias": "latitude"; "required": false; }; "longitude": { "alias": "longitude"; "required": false; }; }, { "positionChanged": "positionChanged"; }, never, never, false, never>;
}
