import { LatLng } from '../../common/latlng'; import { PlaneBounds } from '../../common/plane-bounds'; import { PlaneXY } from '../../common/plane-xy'; import { Projection } from './projection'; export declare class Mercator extends Projection { static R: number; static R_MINOR: number; bounds: PlaneBounds; project(latlng: LatLng): PlaneXY; unproject(xy: PlaneXY): LatLng; }