import { ApiError } from './apiError';
import { ForecastErrorReason } from './forecastErrorReason';
export interface ForecastError extends ApiError {
    reason?: ForecastErrorReason;
}
