import { mFloat64 } from './Raw'; export declare type XOrY = mFloat64; export declare class Point { x: XOrY; y: XOrY; constructor(x: XOrY, y: XOrY); } export declare type LngOrLat = mFloat64; export declare class LngLatPoint { mapX: LngOrLat; mapY: LngOrLat; constructor(mapX: LngOrLat, mapY: LngOrLat); }