import { LngLat } from '../geometry/lng-lat'; import { Point } from '../geometry/point'; interface CRSOption { wrapLng: number[] | null; wrapLat: number[] | null; projection: any; transformation: any; [propName: string]: any; lngLatToPoint(lnglat: LngLat, zoom: number): Point; } export declare const CRS: CRSOption; export {};