import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge'; import { PanasonicApi } from './api/panasonicApi'; import { DeviceContext, DeviceDetails } from './types'; import { Accessory } from './accessories/accessory'; export declare class PanasonicHeatPumpHomebridgePlatform implements DynamicPlatformPlugin { readonly log: Logger; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; cachedAccessories: PlatformAccessory[]; readonly accessories: Accessory[]; readonly panasonicApi?: PanasonicApi; private readonly timeoutIds; constructor(log: Logger, config: PlatformConfig, api: API); /** * This function is invoked when homebridge restores cached accessories from disk at startup. * It should be used to setup event handlers for characteristics and update respective values. */ configureAccessory(accessory: PlatformAccessory): void; configureDevices(): Promise; fetchDevices(): Promise<{ uniqueId: any; displayName: any; isCoolModeEnabled: boolean; hasWaterTank: boolean; }[] | undefined>; private refreshTimeout; updateReadings(deviceId: string): Promise; } //# sourceMappingURL=platform.d.ts.map