/** * Configuration Module * * Centralized exports for platform configuration and device catalog. */ export { PLATFORM_NAME, PLUGIN_NAME, DYSON_MQTT_PORT, DYSON_MDNS_SERVICE, DYSON_PRODUCT_TYPES, } from './constants.js'; export { type DeviceSeries, type DeviceModel, type PowerProtocol, DEVICE_CATALOG, getDeviceByProductType, isProductTypeSupported, getSupportedProductTypes, getDeviceFeatures, getPowerProtocol, getDeviceModelName, getProductTypeDisplayNames, getDevicesBySeries, getHeatingDevices, getHumidifierDevices, } from './deviceCatalog.js'; //# sourceMappingURL=index.d.ts.map