/**
 * A Point subclass representing a turn point in turn-by-turn directions for a
 * walk/bike/drive segment
 */
export default class TurnPoint extends Point {
    constructor(data: any, id: any);
    name: string;
    worldX: any;
    worldY: any;
    isSegmentEndPoint: boolean;
    id: any;
}
import Point from "./point";
