/**
 * Location coordinates interface with lon and lat properties
 */
export interface Location {
    /**
     * @ignore
     */
    lat: number;
    lon: number;
}
