export declare enum PointType { SWEREF99TM = "SWEREF99TM", WGS84 = "WGS84" } export declare type PointTypes = PointType | keyof typeof PointType; export declare class Point { private type; private axis1; private axis2; constructor(type: T, rawPoint: string); constructor(type: PointType.WGS84, latitude: number, longitude: number); constructor(type: PointType.SWEREF99TM, easting: number, northing: number); get latitude(): number; get longitude(): number; get easting(): number; get northing(): number; toJSON(includeType?: boolean): object; toString(includeType?: boolean): string; static SWEREF99TM(rawPoint: string): Point; static SWEREF99TM(easting: number, northing: number): Point; static WGS84(rawPoint: string): Point; static WGS84(latitude: number, longitude: number): Point; }