export declare const minGeolocLong = -180;
export declare const maxGeolocLong = 180;
export declare const minGeolocLat = -90;
export declare const maxGeolocLat = 90;
/**
 * The geolocation type (long or lat)
 */
export declare enum GeoType {
    long = "long",
    lat = "lat"
}
/**
 * Renerates a random geo location point
 */
export declare function randomGeolocation(from?: number, to?: number, type?: GeoType): number;
