import type { API, Characteristic as CharacteristicClass } from 'homebridge'; import type { EveCharacteristicUUIDs } from '../types.js'; export default class EveCharacteristics { readonly uuids: EveCharacteristicUUIDs; readonly CurrentConsumption: typeof CharacteristicClass; readonly Voltage: typeof CharacteristicClass; readonly ElectricCurrent: typeof CharacteristicClass; readonly LastActivation: typeof CharacteristicClass; constructor(api: API); }