import { DataSourceEntity } from '../../../modules/dashboard/entities/dashboard.entity'; import { WeatherLocationEntity } from '../../../modules/weather/entities/locations.entity'; import { WeatherDataField } from '../data-sources-weather.constants'; export declare class CurrentWeatherDataSourceEntity extends DataSourceEntity { get type(): string; location?: WeatherLocationEntity | string | null; locationId?: string | null; field: WeatherDataField; icon?: string | null; unit?: string | null; } export declare class ForecastDayDataSourceEntity extends DataSourceEntity { get type(): string; location?: WeatherLocationEntity | string | null; locationId?: string | null; dayOffset: number; field: WeatherDataField; icon?: string | null; unit?: string | null; }