import { AccessoryPlugin, CharacteristicValue, Service, Nullable } from 'homebridge'; import { SmartHomeNGPlatform } from '../platform'; export declare class SecuritySystem implements AccessoryPlugin { private readonly platform; private readonly accessory; private readonly deviceService; private readonly informationService; name: string; private currentState; private targetState; constructor(platform: SmartHomeNGPlatform, accessory: any); identify(): void; getServices(): Service[]; handleSecuritySystemCurrentStateGet(): Nullable; handleSecuritySystemTargetStateGet(): Nullable; handleSecuritySystemTargetStateSet(value: CharacteristicValue): void; shngCurrentStateCallback(value: unknown): void; shngTargetStateCallback(value: unknown): void; } //# sourceMappingURL=SecuritySystem.d.ts.map