import { PlatformAccessory, PlatformConfig } from 'homebridge'; import { KnxAccessoryConfig, KnxPlatformConfig } from './config'; declare type KnxPlatformAccessory = PlatformAccessory; declare const isKnxPlatformConfig: (config: PlatformConfig) => config is KnxPlatformConfig; export type { KnxPlatformAccessory }; export { isKnxPlatformConfig };