import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { TemperatureUnitType } from '../../../modules/system/system.constants'; import { WEATHER_OPENWEATHERMAP_PLUGIN_NAME } from '../weather-openweathermap.constants'; export declare class UpdateOpenWeatherMapConfigDto extends UpdatePluginConfigDto { type: typeof WEATHER_OPENWEATHERMAP_PLUGIN_NAME; enabled?: boolean; apiKey?: string | null; unit?: TemperatureUnitType; }