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