/**
 * Helper class for the 'GaussKreuger' class.
 * This class was not part of the corresponding original C#.NET class in 'MightyLittleGeodesy'
 * but the class 'GaussKreuger' has later been changed to return this 'LatLon' instead of array 'double[]'
 */
export default class LatLon {
    readonly yLatitude: number;
    readonly xLongitude: number;
    constructor(yLatitude: number, xLongitude: number);
}
//# sourceMappingURL=lat_lon.d.ts.map