import { ICity, IGeoCoordinates } from '.';
export interface ILocation {
    closest_point: null | {
        label: string;
        coords: IGeoCoordinates;
    };
    coords: IGeoCoordinates | null;
    city: ICity;
    distance_from_road: number;
}
