import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge'; import { HvacUnit } from './hvac'; export declare class ActronQuePlatform implements DynamicPlatformPlugin { readonly log: Logger; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; readonly accessories: PlatformAccessory[]; private readonly clientName; private readonly username; private readonly password; readonly userProvidedSerialNo: string; readonly zonesFollowMaster: boolean; readonly zonesPushMaster: boolean; readonly fanOnlyDevices: boolean; readonly wiredZoneSensors: string[]; readonly hardRefreshInterval: number; readonly softRefreshInterval: number; readonly maxCoolingTemp: number; readonly minCoolingTemp: number; readonly maxHeatingTemp: number; readonly minHeatingTemp: number; hvacInstance: HvacUnit; constructor(log: Logger, config: PlatformConfig, api: API); configureAccessory(accessory: PlatformAccessory): void; discoverDevices(): Promise; } //# sourceMappingURL=platform.d.ts.map