import { BaseAccessory } from './base-accessory'; import { RingCamera, RingDevice } from '../api'; import { HAP } from './hap'; import { RingPlatformConfig } from './config'; import Service = HAP.Service; export declare abstract class BaseDataAccessory extends BaseAccessory { abstract readonly device: T; abstract readonly accessory: HAP.Accessory; abstract readonly logger: HAP.Log; abstract readonly config: RingPlatformConfig; registerCharacteristic(characteristicType: HAP.Characteristic, serviceType: Service, getValue: (data: T['data']) => any, setValue?: (data: any) => any, setValueDebounceTime?: number, name?: string, requestUpdate?: () => any, serviceSubType?: string): void; registerLevelCharacteristic(characteristicType: HAP.Characteristic, serviceType: Service, getValue: (data: T['data']) => number, setValue: (data: any) => any): void; }