export declare function formatCoordinates(coords: number[], locale: string): string[]; /** * Will check if given coords can be mapped to a max extent * if not, an empty array is returned * @param coords [lat, lon], [lon, lat], [east, north] accepted * @param extent bbox of 4 numbers, typically maxExtent defined in config * @returns coords in provided srid if extent is given, otherwise, returns coords */ export declare function parseCoordinates(coords: number[], extent: number[] | undefined, srid: string): number[]; export declare function decimalToDMS(coordinate: number[]): string[]; export declare function printCoordinate(coordinate: [number, number], format: 'dms' | 'decimal', precision: number): string[];