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