import { AccessoryPlugin, HAP, Logger, Service } from "homebridge"; import { InverterStateEmitter } from "./solaxPlatform"; export default class PowerThresholdMotionSensor implements AccessoryPlugin { private readonly hap; private readonly log; private readonly name; private readonly inverterStateEmitter; private readonly shouldTrigger; private readonly service; private readonly informationService; constructor(hap: HAP, log: Logger, name: string, inverterStateEmitter: InverterStateEmitter, shouldTrigger: () => boolean); handleMotionDetectedGet: (callback: any) => void; identify(): void; getServices(): Service[]; } //# sourceMappingURL=powerThresholdMotionSensor.d.ts.map