import { ForecastConditionsModel } from './forecast-conditions.model'; import { RoutePointModel } from './route-point.model'; export declare class ForecastDataModel { /** * Forecast weather conditions and values */ forecast: ForecastConditionsModel; /** * Route points and absolute seconds */ points: Array; /** * The display name of the current route */ displayName?: string; }