import type { GeoPoint as GeoPointInterface } from '@enonic-types/lib-value';
export declare class GeoPoint implements GeoPointInterface {
    readonly lat: number;
    readonly lon: number;
    constructor({ lat, lon }: {
        lat: number;
        lon: number;
    });
    static fromString(v: string): GeoPoint;
    getLatitude(): number;
    getLongitude(): number;
    toString(): string;
}
