import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { TemperatureUnitType } from '../../../modules/system/system.constants'; import { WEATHER_OPEN_METEO_PLUGIN_NAME } from '../weather-open-meteo.constants'; export declare class UpdateOpenMeteoConfigDto extends UpdatePluginConfigDto { type: typeof WEATHER_OPEN_METEO_PLUGIN_NAME; enabled?: boolean; unit?: TemperatureUnitType; }