import { PluginConfigModel } from '../../../modules/config/models/config.model'; import { TemperatureUnitType } from '../../../modules/system/system.constants'; export declare class OpenWeatherMapConfigModel extends PluginConfigModel { type: string; enabled: boolean; apiKey: string | null; unit: TemperatureUnitType; }