import { Point } from "geojson"; import { Coordinate } from "./coordinate"; export declare class Location { readonly Latitude: Coordinate; readonly Longitude: Coordinate; constructor(latitude: Coordinate, longitude: Coordinate); toString(): string; static isLocation(spot: Location | Point): spot is Location; }