matterbridge 3.1.6-dev-20250720-88d6141 → 3.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. package/CHANGELOG.md +6 -4
  2. package/README-DOCKER.md +35 -0
  3. package/dist/cli.d.ts +26 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +91 -2
  6. package/dist/cli.js.map +1 -0
  7. package/dist/cliEmitter.d.ts +34 -0
  8. package/dist/cliEmitter.d.ts.map +1 -0
  9. package/dist/cliEmitter.js +30 -0
  10. package/dist/cliEmitter.js.map +1 -0
  11. package/dist/clusters/export.d.ts +2 -0
  12. package/dist/clusters/export.d.ts.map +1 -0
  13. package/dist/clusters/export.js +2 -0
  14. package/dist/clusters/export.js.map +1 -0
  15. package/dist/defaultConfigSchema.d.ts +28 -0
  16. package/dist/defaultConfigSchema.d.ts.map +1 -0
  17. package/dist/defaultConfigSchema.js +24 -0
  18. package/dist/defaultConfigSchema.js.map +1 -0
  19. package/dist/deviceManager.d.ts +112 -0
  20. package/dist/deviceManager.d.ts.map +1 -0
  21. package/dist/deviceManager.js +94 -1
  22. package/dist/deviceManager.js.map +1 -0
  23. package/dist/devices/batteryStorage.d.ts +48 -0
  24. package/dist/devices/batteryStorage.d.ts.map +1 -0
  25. package/dist/devices/batteryStorage.js +48 -1
  26. package/dist/devices/batteryStorage.js.map +1 -0
  27. package/dist/devices/dishwasher.d.ts +91 -0
  28. package/dist/devices/dishwasher.d.ts.map +1 -0
  29. package/dist/devices/dishwasher.js +78 -3
  30. package/dist/devices/dishwasher.js.map +1 -0
  31. package/dist/devices/evse.d.ts +75 -0
  32. package/dist/devices/evse.d.ts.map +1 -0
  33. package/dist/devices/evse.js +74 -10
  34. package/dist/devices/evse.js.map +1 -0
  35. package/dist/devices/export.d.ts +11 -0
  36. package/dist/devices/export.d.ts.map +1 -0
  37. package/dist/devices/export.js +2 -0
  38. package/dist/devices/export.js.map +1 -0
  39. package/dist/devices/extractorHood.d.ts +46 -0
  40. package/dist/devices/extractorHood.d.ts.map +1 -0
  41. package/dist/devices/extractorHood.js +42 -0
  42. package/dist/devices/extractorHood.js.map +1 -0
  43. package/dist/devices/heatPump.d.ts +47 -0
  44. package/dist/devices/heatPump.d.ts.map +1 -0
  45. package/dist/devices/heatPump.js +50 -2
  46. package/dist/devices/heatPump.js.map +1 -0
  47. package/dist/devices/laundryDryer.d.ts +87 -0
  48. package/dist/devices/laundryDryer.d.ts.map +1 -0
  49. package/dist/devices/laundryDryer.js +83 -6
  50. package/dist/devices/laundryDryer.js.map +1 -0
  51. package/dist/devices/laundryWasher.d.ts +242 -0
  52. package/dist/devices/laundryWasher.d.ts.map +1 -0
  53. package/dist/devices/laundryWasher.js +91 -7
  54. package/dist/devices/laundryWasher.js.map +1 -0
  55. package/dist/devices/roboticVacuumCleaner.d.ts +112 -0
  56. package/dist/devices/roboticVacuumCleaner.d.ts.map +1 -0
  57. package/dist/devices/roboticVacuumCleaner.js +93 -7
  58. package/dist/devices/roboticVacuumCleaner.js.map +1 -0
  59. package/dist/devices/solarPower.d.ts +40 -0
  60. package/dist/devices/solarPower.d.ts.map +1 -0
  61. package/dist/devices/solarPower.js +38 -0
  62. package/dist/devices/solarPower.js.map +1 -0
  63. package/dist/devices/waterHeater.d.ts +111 -0
  64. package/dist/devices/waterHeater.d.ts.map +1 -0
  65. package/dist/devices/waterHeater.js +82 -2
  66. package/dist/devices/waterHeater.js.map +1 -0
  67. package/dist/dgram/dgram.d.ts +140 -0
  68. package/dist/dgram/dgram.d.ts.map +1 -0
  69. package/dist/dgram/dgram.js +348 -0
  70. package/dist/dgram/dgram.js.map +1 -0
  71. package/dist/dgram/mdns.d.ts +288 -0
  72. package/dist/dgram/mdns.d.ts.map +1 -0
  73. package/dist/dgram/mdns.js +840 -0
  74. package/dist/dgram/mdns.js.map +1 -0
  75. package/dist/dgram/multicast.d.ts +65 -0
  76. package/dist/dgram/multicast.d.ts.map +1 -0
  77. package/dist/dgram/multicast.js +170 -0
  78. package/dist/dgram/multicast.js.map +1 -0
  79. package/dist/dgram/unicast.d.ts +56 -0
  80. package/dist/dgram/unicast.d.ts.map +1 -0
  81. package/dist/dgram/unicast.js +91 -0
  82. package/dist/dgram/unicast.js.map +1 -0
  83. package/dist/frontend.d.ts +304 -0
  84. package/dist/frontend.d.ts.map +1 -0
  85. package/dist/frontend.js +435 -21
  86. package/dist/frontend.js.map +1 -0
  87. package/dist/globalMatterbridge.d.ts +59 -0
  88. package/dist/globalMatterbridge.d.ts.map +1 -0
  89. package/dist/globalMatterbridge.js +47 -0
  90. package/dist/globalMatterbridge.js.map +1 -0
  91. package/dist/helpers.d.ts +48 -0
  92. package/dist/helpers.d.ts.map +1 -0
  93. package/dist/helpers.js +53 -0
  94. package/dist/helpers.js.map +1 -0
  95. package/dist/index.d.ts +33 -0
  96. package/dist/index.d.ts.map +1 -0
  97. package/dist/index.js +30 -1
  98. package/dist/index.js.map +1 -0
  99. package/dist/logger/export.d.ts +2 -0
  100. package/dist/logger/export.d.ts.map +1 -0
  101. package/dist/logger/export.js +1 -0
  102. package/dist/logger/export.js.map +1 -0
  103. package/dist/matter/behaviors.d.ts +2 -0
  104. package/dist/matter/behaviors.d.ts.map +1 -0
  105. package/dist/matter/behaviors.js +2 -0
  106. package/dist/matter/behaviors.js.map +1 -0
  107. package/dist/matter/clusters.d.ts +2 -0
  108. package/dist/matter/clusters.d.ts.map +1 -0
  109. package/dist/matter/clusters.js +2 -0
  110. package/dist/matter/clusters.js.map +1 -0
  111. package/dist/matter/devices.d.ts +2 -0
  112. package/dist/matter/devices.d.ts.map +1 -0
  113. package/dist/matter/devices.js +2 -0
  114. package/dist/matter/devices.js.map +1 -0
  115. package/dist/matter/endpoints.d.ts +2 -0
  116. package/dist/matter/endpoints.d.ts.map +1 -0
  117. package/dist/matter/endpoints.js +2 -0
  118. package/dist/matter/endpoints.js.map +1 -0
  119. package/dist/matter/export.d.ts +5 -0
  120. package/dist/matter/export.d.ts.map +1 -0
  121. package/dist/matter/export.js +3 -0
  122. package/dist/matter/export.js.map +1 -0
  123. package/dist/matter/types.d.ts +3 -0
  124. package/dist/matter/types.d.ts.map +1 -0
  125. package/dist/matter/types.js +3 -0
  126. package/dist/matter/types.js.map +1 -0
  127. package/dist/matterbridge.d.ts +460 -0
  128. package/dist/matterbridge.d.ts.map +1 -0
  129. package/dist/matterbridge.js +810 -52
  130. package/dist/matterbridge.js.map +1 -0
  131. package/dist/matterbridgeAccessoryPlatform.d.ts +42 -0
  132. package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -0
  133. package/dist/matterbridgeAccessoryPlatform.js +36 -0
  134. package/dist/matterbridgeAccessoryPlatform.js.map +1 -0
  135. package/dist/matterbridgeBehaviors.d.ts +1351 -0
  136. package/dist/matterbridgeBehaviors.d.ts.map +1 -0
  137. package/dist/matterbridgeBehaviors.js +68 -5
  138. package/dist/matterbridgeBehaviors.js.map +1 -0
  139. package/dist/matterbridgeDeviceTypes.d.ts +709 -0
  140. package/dist/matterbridgeDeviceTypes.d.ts.map +1 -0
  141. package/dist/matterbridgeDeviceTypes.js +579 -15
  142. package/dist/matterbridgeDeviceTypes.js.map +1 -0
  143. package/dist/matterbridgeDynamicPlatform.d.ts +42 -0
  144. package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -0
  145. package/dist/matterbridgeDynamicPlatform.js +36 -0
  146. package/dist/matterbridgeDynamicPlatform.js.map +1 -0
  147. package/dist/matterbridgeEndpoint.d.ts +1328 -0
  148. package/dist/matterbridgeEndpoint.d.ts.map +1 -0
  149. package/dist/matterbridgeEndpoint.js +1200 -43
  150. package/dist/matterbridgeEndpoint.js.map +1 -0
  151. package/dist/matterbridgeEndpointHelpers.d.ts +3198 -0
  152. package/dist/matterbridgeEndpointHelpers.d.ts.map +1 -0
  153. package/dist/matterbridgeEndpointHelpers.js +322 -12
  154. package/dist/matterbridgeEndpointHelpers.js.map +1 -0
  155. package/dist/matterbridgePlatform.d.ts +310 -0
  156. package/dist/matterbridgePlatform.d.ts.map +1 -0
  157. package/dist/matterbridgePlatform.js +233 -0
  158. package/dist/matterbridgePlatform.js.map +1 -0
  159. package/dist/matterbridgeTypes.d.ts +195 -0
  160. package/dist/matterbridgeTypes.d.ts.map +1 -0
  161. package/dist/matterbridgeTypes.js +25 -0
  162. package/dist/matterbridgeTypes.js.map +1 -0
  163. package/dist/pluginManager.d.ts +270 -0
  164. package/dist/pluginManager.d.ts.map +1 -0
  165. package/dist/pluginManager.js +249 -3
  166. package/dist/pluginManager.js.map +1 -0
  167. package/dist/shelly.d.ts +174 -0
  168. package/dist/shelly.d.ts.map +1 -0
  169. package/dist/shelly.js +168 -7
  170. package/dist/shelly.js.map +1 -0
  171. package/dist/storage/export.d.ts +2 -0
  172. package/dist/storage/export.d.ts.map +1 -0
  173. package/dist/storage/export.js +1 -0
  174. package/dist/storage/export.js.map +1 -0
  175. package/dist/update.d.ts +59 -0
  176. package/dist/update.d.ts.map +1 -0
  177. package/dist/update.js +54 -0
  178. package/dist/update.js.map +1 -0
  179. package/dist/utils/colorUtils.d.ts +117 -0
  180. package/dist/utils/colorUtils.d.ts.map +1 -0
  181. package/dist/utils/colorUtils.js +263 -2
  182. package/dist/utils/colorUtils.js.map +1 -0
  183. package/dist/utils/commandLine.d.ts +59 -0
  184. package/dist/utils/commandLine.d.ts.map +1 -0
  185. package/dist/utils/commandLine.js +54 -0
  186. package/dist/utils/commandLine.js.map +1 -0
  187. package/dist/utils/copyDirectory.d.ts +33 -0
  188. package/dist/utils/copyDirectory.d.ts.map +1 -0
  189. package/dist/utils/copyDirectory.js +38 -1
  190. package/dist/utils/copyDirectory.js.map +1 -0
  191. package/dist/utils/createDirectory.d.ts +34 -0
  192. package/dist/utils/createDirectory.d.ts.map +1 -0
  193. package/dist/utils/createDirectory.js +33 -0
  194. package/dist/utils/createDirectory.js.map +1 -0
  195. package/dist/utils/createZip.d.ts +39 -0
  196. package/dist/utils/createZip.d.ts.map +1 -0
  197. package/dist/utils/createZip.js +47 -2
  198. package/dist/utils/createZip.js.map +1 -0
  199. package/dist/utils/deepCopy.d.ts +32 -0
  200. package/dist/utils/deepCopy.d.ts.map +1 -0
  201. package/dist/utils/deepCopy.js +39 -0
  202. package/dist/utils/deepCopy.js.map +1 -0
  203. package/dist/utils/deepEqual.d.ts +54 -0
  204. package/dist/utils/deepEqual.d.ts.map +1 -0
  205. package/dist/utils/deepEqual.js +72 -1
  206. package/dist/utils/deepEqual.js.map +1 -0
  207. package/dist/utils/error.d.ts +44 -0
  208. package/dist/utils/error.d.ts.map +1 -0
  209. package/dist/utils/error.js +41 -0
  210. package/dist/utils/error.js.map +1 -0
  211. package/dist/utils/export.d.ts +12 -0
  212. package/dist/utils/export.d.ts.map +1 -0
  213. package/dist/utils/export.js +1 -0
  214. package/dist/utils/export.js.map +1 -0
  215. package/dist/utils/hex.d.ts +49 -0
  216. package/dist/utils/hex.d.ts.map +1 -0
  217. package/dist/utils/hex.js +58 -0
  218. package/dist/utils/hex.js.map +1 -0
  219. package/dist/utils/isvalid.d.ts +103 -0
  220. package/dist/utils/isvalid.d.ts.map +1 -0
  221. package/dist/utils/isvalid.js +101 -0
  222. package/dist/utils/isvalid.js.map +1 -0
  223. package/dist/utils/network.d.ts +74 -0
  224. package/dist/utils/network.d.ts.map +1 -0
  225. package/dist/utils/network.js +81 -5
  226. package/dist/utils/network.js.map +1 -0
  227. package/dist/utils/spawn.d.ts +33 -0
  228. package/dist/utils/spawn.d.ts.map +1 -0
  229. package/dist/utils/spawn.js +40 -0
  230. package/dist/utils/spawn.js.map +1 -0
  231. package/dist/utils/wait.d.ts +56 -0
  232. package/dist/utils/wait.d.ts.map +1 -0
  233. package/dist/utils/wait.js +62 -9
  234. package/dist/utils/wait.js.map +1 -0
  235. package/npm-shrinkwrap.json +2 -2
  236. package/package.json +2 -1
@@ -0,0 +1,3198 @@
1
+ /**
2
+ * This file contains the helpers for the class MatterbridgeEndpoint.
3
+ *
4
+ * @file matterbridgeEndpointHelpers.ts
5
+ * @author Luca Liguori
6
+ * @created 2024-10-01
7
+ * @version 2.1.0
8
+ * @license Apache-2.0
9
+ *
10
+ * Copyright 2024, 2025, 2026 Luca Liguori.
11
+ *
12
+ * Licensed under the Apache License, Version 2.0 (the "License");
13
+ * you may not use this file except in compliance with the License.
14
+ * You may obtain a copy of the License at
15
+ *
16
+ * http://www.apache.org/licenses/LICENSE-2.0
17
+ *
18
+ * Unless required by applicable law or agreed to in writing, software
19
+ * distributed under the License is distributed on an "AS IS" BASIS,
20
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
+ * See the License for the specific language governing permissions and
22
+ * limitations under the License.
23
+ */
24
+ import { AnsiLogger } from 'node-ansi-logger';
25
+ import { ActionContext, Behavior, ClusterBehavior, ClusterId, Endpoint } from '@matter/main';
26
+ import { ClusterType } from '@matter/main/types';
27
+ import { PowerSource } from '@matter/main/clusters/power-source';
28
+ import { OnOff } from '@matter/main/clusters/on-off';
29
+ import { LevelControl } from '@matter/main/clusters/level-control';
30
+ import { WindowCovering } from '@matter/main/clusters/window-covering';
31
+ import { Thermostat } from '@matter/main/clusters/thermostat';
32
+ import { ValveConfigurationAndControl } from '@matter/main/clusters/valve-configuration-and-control';
33
+ import { PumpConfigurationAndControl } from '@matter/main/clusters/pump-configuration-and-control';
34
+ import { SmokeCoAlarm } from '@matter/main/clusters/smoke-co-alarm';
35
+ import { BooleanState } from '@matter/main/clusters/boolean-state';
36
+ import { ElectricalPowerMeasurement } from '@matter/main/clusters/electrical-power-measurement';
37
+ import { AirQuality } from '@matter/main/clusters/air-quality';
38
+ import { OperationalState } from '@matter/main/clusters/operational-state';
39
+ import { DeviceEnergyManagement } from '@matter/main/clusters/device-energy-management';
40
+ import { PowerSourceServer } from '@matter/main/behaviors/power-source';
41
+ import { UserLabelServer } from '@matter/main/behaviors/user-label';
42
+ import { FixedLabelServer } from '@matter/main/behaviors/fixed-label';
43
+ import { BasicInformationServer } from '@matter/main/behaviors/basic-information';
44
+ import { BridgedDeviceBasicInformationServer } from '@matter/main/behaviors/bridged-device-basic-information';
45
+ import { GroupsServer } from '@matter/main/behaviors/groups';
46
+ import { PumpConfigurationAndControlServer } from '@matter/main/behaviors/pump-configuration-and-control';
47
+ import { SwitchServer } from '@matter/main/behaviors/switch';
48
+ import { BooleanStateServer } from '@matter/main/behaviors/boolean-state';
49
+ import { PowerTopologyServer } from '@matter/main/behaviors/power-topology';
50
+ import { ElectricalPowerMeasurementServer } from '@matter/main/behaviors/electrical-power-measurement';
51
+ import { ElectricalEnergyMeasurementServer } from '@matter/main/behaviors/electrical-energy-measurement';
52
+ import { TemperatureMeasurementServer } from '@matter/main/behaviors/temperature-measurement';
53
+ import { RelativeHumidityMeasurementServer } from '@matter/main/behaviors/relative-humidity-measurement';
54
+ import { PressureMeasurementServer } from '@matter/main/behaviors/pressure-measurement';
55
+ import { FlowMeasurementServer } from '@matter/main/behaviors/flow-measurement';
56
+ import { IlluminanceMeasurementServer } from '@matter/main/behaviors/illuminance-measurement';
57
+ import { OccupancySensingServer } from '@matter/main/behaviors/occupancy-sensing';
58
+ import { AirQualityServer } from '@matter/main/behaviors/air-quality';
59
+ import { CarbonMonoxideConcentrationMeasurementServer } from '@matter/main/behaviors/carbon-monoxide-concentration-measurement';
60
+ import { CarbonDioxideConcentrationMeasurementServer } from '@matter/main/behaviors/carbon-dioxide-concentration-measurement';
61
+ import { NitrogenDioxideConcentrationMeasurementServer } from '@matter/main/behaviors/nitrogen-dioxide-concentration-measurement';
62
+ import { OzoneConcentrationMeasurementServer } from '@matter/main/behaviors/ozone-concentration-measurement';
63
+ import { FormaldehydeConcentrationMeasurementServer } from '@matter/main/behaviors/formaldehyde-concentration-measurement';
64
+ import { Pm1ConcentrationMeasurementServer } from '@matter/main/behaviors/pm1-concentration-measurement';
65
+ import { Pm25ConcentrationMeasurementServer } from '@matter/main/behaviors/pm25-concentration-measurement';
66
+ import { Pm10ConcentrationMeasurementServer } from '@matter/main/behaviors/pm10-concentration-measurement';
67
+ import { RadonConcentrationMeasurementServer } from '@matter/main/behaviors/radon-concentration-measurement';
68
+ import { TotalVolatileOrganicCompoundsConcentrationMeasurementServer } from '@matter/main/behaviors/total-volatile-organic-compounds-concentration-measurement';
69
+ import { DeviceEnergyManagementServer } from '@matter/node/behaviors/device-energy-management';
70
+ import { MatterbridgeEndpoint, MatterbridgeEndpointCommands } from './matterbridgeEndpoint.js';
71
+ import { MatterbridgeIdentifyServer, MatterbridgeOnOffServer, MatterbridgeLevelControlServer, MatterbridgeColorControlServer, MatterbridgeLiftWindowCoveringServer, MatterbridgeThermostatServer, MatterbridgeFanControlServer, MatterbridgeDoorLockServer, MatterbridgeModeSelectServer, MatterbridgeValveConfigurationAndControlServer, MatterbridgeSmokeCoAlarmServer, MatterbridgeBooleanStateConfigurationServer, MatterbridgeOperationalStateServer, MatterbridgeDeviceEnergyManagementModeServer } from './matterbridgeBehaviors.js';
72
+ /**
73
+ * Capitalizes the first letter of a string.
74
+ *
75
+ * @param {string} name - The string to capitalize.
76
+ * @returns {string} The string with the first letter capitalized.
77
+ */
78
+ export declare function capitalizeFirstLetter(name: string): string;
79
+ /**
80
+ * Lowercases the first letter of a string.
81
+ *
82
+ * @param {string} name - The string to lowercase the first letter of.
83
+ * @returns {string} The string with the first letter lowercased.
84
+ */
85
+ export declare function lowercaseFirstLetter(name: string): string;
86
+ /**
87
+ * Checks if the device name contains non-Latin characters.
88
+ *
89
+ * @param {string} deviceName - The name of the device to check.
90
+ * @returns {boolean} Returns true if the device name contains non-Latin characters, false otherwise.
91
+ */
92
+ export declare function checkNotLatinCharacters(deviceName: string): boolean;
93
+ /**
94
+ * Generates a unique ID based on the device name.
95
+ *
96
+ * @param {string} deviceName - The name of the device to generate a unique ID for.
97
+ * @returns {string} A unique ID generated from the device name using MD5 hashing.
98
+ */
99
+ export declare function generateUniqueId(deviceName: string): string;
100
+ /**
101
+ * Generates a unique ID based on four parameters.
102
+ *
103
+ * @param {string} param1 - The first parameter.
104
+ * @param {string} param2 - The second parameter.
105
+ * @param {string} param3 - The third parameter.
106
+ * @param {string} param4 - The fourth parameter.
107
+ * @returns {string} A unique ID generated from the concatenation of the parameters using MD5 hashing.
108
+ */
109
+ export declare function createUniqueId(param1: string, param2: string, param3: string, param4: string): string;
110
+ /**
111
+ * Maps a list of ClusterId to Behavior.Type for server clusters.
112
+ *
113
+ * @param {ClusterId[]} clusterServerList - The list of ClusterId to map.
114
+ * @returns {Behavior.Type[]} An array of Behavior.Type corresponding to the ClusterId in the server list.
115
+ */
116
+ export declare function getBehaviourTypesFromClusterServerIds(clusterServerList: ClusterId[]): Behavior.Type[];
117
+ /**
118
+ * Maps a list of ClusterId to Behavior.Type for client clusters.
119
+ *
120
+ * @param {ClusterId[]} clusterClientList - The list of ClusterId to map.
121
+ * @returns {Behavior.Type[]} An array of Behavior.Type corresponding to the ClusterId in the client list.
122
+ */
123
+ export declare function getBehaviourTypesFromClusterClientIds(clusterClientList: ClusterId[]): Behavior.Type[];
124
+ /**
125
+ * Maps a ClusterId to a Behavior.Type for server clusters.
126
+ *
127
+ * @param {ClusterId} clusterId - The ClusterId to map.
128
+ * @returns {Behavior.Type} The corresponding Behavior.Type for the given ClusterId.
129
+ */
130
+ export declare function getBehaviourTypeFromClusterServerId(clusterId: ClusterId): typeof MatterbridgeIdentifyServer | typeof MatterbridgeColorControlServer | typeof MatterbridgeDoorLockServer | typeof MatterbridgeFanControlServer | typeof MatterbridgeBooleanStateConfigurationServer | typeof MatterbridgeOperationalStateServer | typeof MatterbridgeModeSelectServer | typeof MatterbridgeDeviceEnergyManagementModeServer | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
131
+ readonly id: 47;
132
+ readonly name: "PowerSource";
133
+ readonly revision: 3;
134
+ readonly features: {
135
+ readonly wired: import("@matter/main/types").BitFlag;
136
+ readonly battery: import("@matter/main/types").BitFlag;
137
+ readonly rechargeable: import("@matter/main/types").BitFlag;
138
+ readonly replaceable: import("@matter/main/types").BitFlag;
139
+ };
140
+ readonly attributes: {
141
+ readonly status: import("@matter/main/types").Attribute<PowerSource.PowerSourceStatus, any>;
142
+ readonly order: import("@matter/main/types").Attribute<number, any>;
143
+ readonly description: import("@matter/main/types").FixedAttribute<string, any>;
144
+ readonly endpointList: import("@matter/main/types").Attribute<import("@matter/main").EndpointNumber[], any>;
145
+ };
146
+ readonly extensions: readonly [{
147
+ readonly flags: {
148
+ readonly wired: true;
149
+ };
150
+ readonly component: {
151
+ readonly attributes: {
152
+ readonly wiredAssessedInputVoltage: import("@matter/main/types").OptionalAttribute<number | null, any>;
153
+ readonly wiredAssessedInputFrequency: import("@matter/main/types").OptionalAttribute<number | null, any>;
154
+ readonly wiredCurrentType: import("@matter/main/types").FixedAttribute<PowerSource.WiredCurrentType, any>;
155
+ readonly wiredAssessedCurrent: import("@matter/main/types").OptionalAttribute<number | null, any>;
156
+ readonly wiredNominalVoltage: import("@matter/main/types").OptionalFixedAttribute<number, any>;
157
+ readonly wiredMaximumCurrent: import("@matter/main/types").OptionalFixedAttribute<number, any>;
158
+ readonly wiredPresent: import("@matter/main/types").OptionalAttribute<boolean, any>;
159
+ readonly activeWiredFaults: import("@matter/main/types").OptionalAttribute<PowerSource.WiredFault[], any>;
160
+ };
161
+ readonly events: {
162
+ readonly wiredFaultChange: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
163
+ current: import("@matter/main/types").FieldType<PowerSource.WiredFault[]>;
164
+ previous: import("@matter/main/types").FieldType<PowerSource.WiredFault[]>;
165
+ }>, any>;
166
+ };
167
+ };
168
+ }, {
169
+ readonly flags: {
170
+ readonly battery: true;
171
+ };
172
+ readonly component: {
173
+ readonly attributes: {
174
+ readonly batVoltage: import("@matter/main/types").OptionalAttribute<number | null, any>;
175
+ readonly batPercentRemaining: import("@matter/main/types").OptionalAttribute<number | null, any>;
176
+ readonly batTimeRemaining: import("@matter/main/types").OptionalAttribute<number | null, any>;
177
+ readonly batChargeLevel: import("@matter/main/types").Attribute<PowerSource.BatChargeLevel, any>;
178
+ readonly batReplacementNeeded: import("@matter/main/types").Attribute<boolean, any>;
179
+ readonly batReplaceability: import("@matter/main/types").FixedAttribute<PowerSource.BatReplaceability, any>;
180
+ readonly batPresent: import("@matter/main/types").OptionalAttribute<boolean, any>;
181
+ readonly activeBatFaults: import("@matter/main/types").OptionalAttribute<PowerSource.BatFault[], any>;
182
+ };
183
+ readonly events: {
184
+ readonly batFaultChange: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
185
+ current: import("@matter/main/types").FieldType<PowerSource.BatFault[]>;
186
+ previous: import("@matter/main/types").FieldType<PowerSource.BatFault[]>;
187
+ }>, any>;
188
+ };
189
+ };
190
+ }, {
191
+ readonly flags: {
192
+ readonly replaceable: true;
193
+ };
194
+ readonly component: {
195
+ readonly attributes: {
196
+ readonly batReplacementDescription: import("@matter/main/types").FixedAttribute<string, any>;
197
+ readonly batCommonDesignation: import("@matter/main/types").OptionalFixedAttribute<PowerSource.BatCommonDesignation, any>;
198
+ readonly batAnsiDesignation: import("@matter/main/types").OptionalFixedAttribute<string, any>;
199
+ readonly batIecDesignation: import("@matter/main/types").OptionalFixedAttribute<string, any>;
200
+ readonly batApprovedChemistry: import("@matter/main/types").OptionalFixedAttribute<PowerSource.BatApprovedChemistry, any>;
201
+ readonly batQuantity: import("@matter/main/types").FixedAttribute<number, any>;
202
+ };
203
+ };
204
+ }, {
205
+ readonly flags: {
206
+ readonly replaceable: true;
207
+ };
208
+ readonly component: {
209
+ readonly attributes: {
210
+ readonly batCapacity: import("@matter/main/types").OptionalFixedAttribute<number, any>;
211
+ };
212
+ };
213
+ }, {
214
+ readonly flags: {
215
+ readonly rechargeable: true;
216
+ };
217
+ readonly component: {
218
+ readonly attributes: {
219
+ readonly batCapacity: import("@matter/main/types").OptionalFixedAttribute<number, any>;
220
+ };
221
+ };
222
+ }, {
223
+ readonly flags: {
224
+ readonly rechargeable: true;
225
+ };
226
+ readonly component: {
227
+ readonly attributes: {
228
+ readonly batChargeState: import("@matter/main/types").Attribute<PowerSource.BatChargeState, any>;
229
+ readonly batTimeToFullCharge: import("@matter/main/types").OptionalAttribute<number | null, any>;
230
+ readonly batFunctionalWhileCharging: import("@matter/main/types").Attribute<boolean, any>;
231
+ readonly batChargingCurrent: import("@matter/main/types").OptionalAttribute<number | null, any>;
232
+ readonly activeBatChargeFaults: import("@matter/main/types").OptionalAttribute<PowerSource.BatChargeFault[], any>;
233
+ };
234
+ readonly events: {
235
+ readonly batChargeFaultChange: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
236
+ current: import("@matter/main/types").FieldType<PowerSource.BatChargeFault[]>;
237
+ previous: import("@matter/main/types").FieldType<PowerSource.BatChargeFault[]>;
238
+ }>, any>;
239
+ };
240
+ };
241
+ }, {
242
+ readonly flags: {
243
+ readonly rechargeable: true;
244
+ readonly battery: false;
245
+ };
246
+ readonly component: false;
247
+ }, {
248
+ readonly flags: {
249
+ readonly replaceable: true;
250
+ readonly battery: false;
251
+ };
252
+ readonly component: false;
253
+ }, {
254
+ readonly flags: {
255
+ readonly wired: true;
256
+ readonly battery: true;
257
+ };
258
+ readonly component: false;
259
+ }, {
260
+ readonly flags: {
261
+ readonly wired: false;
262
+ readonly battery: false;
263
+ };
264
+ readonly component: false;
265
+ }];
266
+ }>, readonly [PowerSource.Feature.Wired]>, typeof PowerSourceServer, {
267
+ components: never[];
268
+ }> | typeof UserLabelServer | typeof FixedLabelServer | typeof BasicInformationServer | typeof BridgedDeviceBasicInformationServer | typeof GroupsServer | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<OnOff.Cluster, readonly [OnOff.Feature.Lighting]>, readonly []>, readonly ["Lighting"]>, typeof MatterbridgeOnOffServer, import("@matter/node/behaviors").OnOffInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
269
+ readonly id: 8;
270
+ readonly name: "LevelControl";
271
+ readonly revision: 6;
272
+ readonly features: {
273
+ readonly onOff: import("@matter/main/types").BitFlag;
274
+ readonly lighting: import("@matter/main/types").BitFlag;
275
+ readonly frequency: import("@matter/main/types").BitFlag;
276
+ };
277
+ readonly attributes: {
278
+ readonly currentLevel: import("@matter/main/types").Attribute<number | null, any>;
279
+ readonly maxLevel: import("@matter/main/types").OptionalAttribute<number, any>;
280
+ readonly options: import("@matter/main/types").WritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
281
+ executeIfOff: import("@matter/main/types").BitFlag;
282
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
283
+ }>, any>;
284
+ readonly onOffTransitionTime: import("@matter/main/types").OptionalWritableAttribute<number, any>;
285
+ readonly onLevel: import("@matter/main/types").WritableAttribute<number | null, any>;
286
+ readonly onTransitionTime: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
287
+ readonly offTransitionTime: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
288
+ readonly defaultMoveRate: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
289
+ };
290
+ readonly commands: {
291
+ readonly moveToLevel: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
292
+ level: import("@matter/main/types").FieldType<number>;
293
+ transitionTime: import("@matter/main/types").FieldType<number | null>;
294
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
295
+ executeIfOff: import("@matter/main/types").BitFlag;
296
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
297
+ }>>;
298
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
299
+ executeIfOff: import("@matter/main/types").BitFlag;
300
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
301
+ }>>;
302
+ }>, void, any>;
303
+ readonly move: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
304
+ moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
305
+ rate: import("@matter/main/types").FieldType<number | null>;
306
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
307
+ executeIfOff: import("@matter/main/types").BitFlag;
308
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
309
+ }>>;
310
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
311
+ executeIfOff: import("@matter/main/types").BitFlag;
312
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
313
+ }>>;
314
+ }>, void, any>;
315
+ readonly step: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
316
+ stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
317
+ stepSize: import("@matter/main/types").FieldType<number>;
318
+ transitionTime: import("@matter/main/types").FieldType<number | null>;
319
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
320
+ executeIfOff: import("@matter/main/types").BitFlag;
321
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
322
+ }>>;
323
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
324
+ executeIfOff: import("@matter/main/types").BitFlag;
325
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
326
+ }>>;
327
+ }>, void, any>;
328
+ readonly stop: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
329
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
330
+ executeIfOff: import("@matter/main/types").BitFlag;
331
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
332
+ }>>;
333
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
334
+ executeIfOff: import("@matter/main/types").BitFlag;
335
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
336
+ }>>;
337
+ }>, void, any>;
338
+ readonly moveToLevelWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
339
+ level: import("@matter/main/types").FieldType<number>;
340
+ transitionTime: import("@matter/main/types").FieldType<number | null>;
341
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
342
+ executeIfOff: import("@matter/main/types").BitFlag;
343
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
344
+ }>>;
345
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
346
+ executeIfOff: import("@matter/main/types").BitFlag;
347
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
348
+ }>>;
349
+ }>, void, any>;
350
+ readonly moveWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
351
+ moveMode: import("@matter/main/types").FieldType<LevelControl.MoveMode>;
352
+ rate: import("@matter/main/types").FieldType<number | null>;
353
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
354
+ executeIfOff: import("@matter/main/types").BitFlag;
355
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
356
+ }>>;
357
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
358
+ executeIfOff: import("@matter/main/types").BitFlag;
359
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
360
+ }>>;
361
+ }>, void, any>;
362
+ readonly stepWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
363
+ stepMode: import("@matter/main/types").FieldType<LevelControl.StepMode>;
364
+ stepSize: import("@matter/main/types").FieldType<number>;
365
+ transitionTime: import("@matter/main/types").FieldType<number | null>;
366
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
367
+ executeIfOff: import("@matter/main/types").BitFlag;
368
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
369
+ }>>;
370
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
371
+ executeIfOff: import("@matter/main/types").BitFlag;
372
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
373
+ }>>;
374
+ }>, void, any>;
375
+ readonly stopWithOnOff: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
376
+ optionsMask: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
377
+ executeIfOff: import("@matter/main/types").BitFlag;
378
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
379
+ }>>;
380
+ optionsOverride: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
381
+ executeIfOff: import("@matter/main/types").BitFlag;
382
+ coupleColorTempToLevel: import("@matter/main/types").BitFlag;
383
+ }>>;
384
+ }>, void, any>;
385
+ };
386
+ readonly extensions: readonly [{
387
+ readonly flags: {
388
+ readonly lighting: true;
389
+ };
390
+ readonly component: {
391
+ readonly attributes: {
392
+ readonly remainingTime: import("@matter/main/types").Attribute<number, any>;
393
+ readonly minLevel: import("@matter/main/types").OptionalAttribute<number, any>;
394
+ readonly startUpCurrentLevel: import("@matter/main/types").WritableAttribute<number | null, any>;
395
+ };
396
+ };
397
+ }, {
398
+ readonly flags: {
399
+ readonly lighting: false;
400
+ };
401
+ readonly component: {
402
+ readonly attributes: {
403
+ readonly minLevel: import("@matter/main/types").OptionalAttribute<number, any>;
404
+ };
405
+ };
406
+ }, {
407
+ readonly flags: {
408
+ readonly frequency: true;
409
+ };
410
+ readonly component: {
411
+ readonly attributes: {
412
+ readonly currentFrequency: import("@matter/main/types").Attribute<number, any>;
413
+ readonly minFrequency: import("@matter/main/types").Attribute<number, any>;
414
+ readonly maxFrequency: import("@matter/main/types").Attribute<number, any>;
415
+ };
416
+ readonly commands: {
417
+ readonly moveToClosestFrequency: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
418
+ frequency: import("@matter/main/types").FieldType<number>;
419
+ }>, void, any>;
420
+ };
421
+ };
422
+ }];
423
+ }>, readonly ["OnOff", "Lighting"]>, typeof MatterbridgeLevelControlServer, import("@matter/node/behaviors").LevelControlInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
424
+ readonly id: 258;
425
+ readonly name: "WindowCovering";
426
+ readonly revision: 5;
427
+ readonly features: {
428
+ readonly lift: import("@matter/main/types").BitFlag;
429
+ readonly tilt: import("@matter/main/types").BitFlag;
430
+ readonly positionAwareLift: import("@matter/main/types").BitFlag;
431
+ readonly absolutePosition: import("@matter/main/types").BitFlag;
432
+ readonly positionAwareTilt: import("@matter/main/types").BitFlag;
433
+ };
434
+ readonly attributes: {
435
+ readonly type: import("@matter/main/types").FixedAttribute<WindowCovering.WindowCoveringType, any>;
436
+ readonly configStatus: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromPartialBitSchema<{
437
+ operational: import("@matter/main/types").BitFlag;
438
+ onlineReserved: import("@matter/main/types").BitFlag;
439
+ liftMovementReversed: import("@matter/main/types").BitFlag;
440
+ liftPositionAware: import("@matter/main/types").BitFlag;
441
+ tiltPositionAware: import("@matter/main/types").BitFlag;
442
+ liftEncoderControlled: import("@matter/main/types").BitFlag;
443
+ tiltEncoderControlled: import("@matter/main/types").BitFlag;
444
+ }>, any>;
445
+ readonly operationalStatus: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromPartialBitSchema<{
446
+ global: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
447
+ lift: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
448
+ tilt: import("@matter/main/types").BitFieldEnum<WindowCovering.MovementStatus>;
449
+ }>, any>;
450
+ readonly endProductType: import("@matter/main/types").FixedAttribute<WindowCovering.EndProductType, any>;
451
+ readonly mode: import("@matter/main/types").WritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
452
+ motorDirectionReversed: import("@matter/main/types").BitFlag;
453
+ calibrationMode: import("@matter/main/types").BitFlag;
454
+ maintenanceMode: import("@matter/main/types").BitFlag;
455
+ ledFeedback: import("@matter/main/types").BitFlag;
456
+ }>, any>;
457
+ readonly safetyStatus: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
458
+ remoteLockout: import("@matter/main/types").BitFlag;
459
+ tamperDetection: import("@matter/main/types").BitFlag;
460
+ failedCommunication: import("@matter/main/types").BitFlag;
461
+ positionFailure: import("@matter/main/types").BitFlag;
462
+ thermalProtection: import("@matter/main/types").BitFlag;
463
+ obstacleDetected: import("@matter/main/types").BitFlag;
464
+ power: import("@matter/main/types").BitFlag;
465
+ stopInput: import("@matter/main/types").BitFlag;
466
+ motorJammed: import("@matter/main/types").BitFlag;
467
+ hardwareFailure: import("@matter/main/types").BitFlag;
468
+ manualOperation: import("@matter/main/types").BitFlag;
469
+ protection: import("@matter/main/types").BitFlag;
470
+ }>, any>;
471
+ };
472
+ readonly commands: {
473
+ readonly upOrOpen: import("@matter/main/types").Command<void, void, any>;
474
+ readonly downOrClose: import("@matter/main/types").Command<void, void, any>;
475
+ readonly stopMotion: import("@matter/main/types").Command<void, void, any>;
476
+ };
477
+ readonly extensions: readonly [{
478
+ readonly flags: {
479
+ readonly lift: true;
480
+ readonly positionAwareLift: true;
481
+ readonly absolutePosition: true;
482
+ };
483
+ readonly component: {
484
+ readonly attributes: {
485
+ readonly physicalClosedLimitLift: import("@matter/main/types").OptionalFixedAttribute<number, any>;
486
+ readonly currentPositionLift: import("@matter/main/types").OptionalAttribute<number | null, any>;
487
+ readonly installedOpenLimitLift: import("@matter/main/types").Attribute<number, any>;
488
+ readonly installedClosedLimitLift: import("@matter/main/types").Attribute<number, any>;
489
+ };
490
+ };
491
+ }, {
492
+ readonly flags: {
493
+ readonly tilt: true;
494
+ readonly positionAwareTilt: true;
495
+ readonly absolutePosition: true;
496
+ };
497
+ readonly component: {
498
+ readonly attributes: {
499
+ readonly physicalClosedLimitTilt: import("@matter/main/types").OptionalFixedAttribute<number, any>;
500
+ readonly currentPositionTilt: import("@matter/main/types").OptionalAttribute<number | null, any>;
501
+ readonly installedOpenLimitTilt: import("@matter/main/types").Attribute<number, any>;
502
+ readonly installedClosedLimitTilt: import("@matter/main/types").Attribute<number, any>;
503
+ };
504
+ };
505
+ }, {
506
+ readonly flags: {
507
+ readonly lift: true;
508
+ };
509
+ readonly component: {
510
+ readonly attributes: {
511
+ readonly numberOfActuationsLift: import("@matter/main/types").OptionalAttribute<number, any>;
512
+ };
513
+ readonly commands: {
514
+ readonly goToLiftPercentage: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
515
+ liftPercent100thsValue: import("@matter/main/types").FieldType<number>;
516
+ }>, void, any>;
517
+ };
518
+ };
519
+ }, {
520
+ readonly flags: {
521
+ readonly tilt: true;
522
+ };
523
+ readonly component: {
524
+ readonly attributes: {
525
+ readonly numberOfActuationsTilt: import("@matter/main/types").OptionalAttribute<number, any>;
526
+ };
527
+ readonly commands: {
528
+ readonly goToTiltPercentage: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
529
+ tiltPercent100thsValue: import("@matter/main/types").FieldType<number>;
530
+ }>, void, any>;
531
+ };
532
+ };
533
+ }, {
534
+ readonly flags: {
535
+ readonly lift: true;
536
+ readonly positionAwareLift: true;
537
+ };
538
+ readonly component: {
539
+ readonly attributes: {
540
+ readonly currentPositionLiftPercentage: import("@matter/main/types").OptionalAttribute<number | null, any>;
541
+ readonly targetPositionLiftPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
542
+ readonly currentPositionLiftPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
543
+ };
544
+ readonly commands: {
545
+ readonly goToLiftPercentage: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
546
+ liftPercent100thsValue: import("@matter/main/types").FieldType<number>;
547
+ }>, void, any>;
548
+ };
549
+ };
550
+ }, {
551
+ readonly flags: {
552
+ readonly tilt: true;
553
+ readonly positionAwareTilt: true;
554
+ };
555
+ readonly component: {
556
+ readonly attributes: {
557
+ readonly currentPositionTiltPercentage: import("@matter/main/types").OptionalAttribute<number | null, any>;
558
+ readonly targetPositionTiltPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
559
+ readonly currentPositionTiltPercent100ths: import("@matter/main/types").Attribute<number | null, any>;
560
+ };
561
+ readonly commands: {
562
+ readonly goToTiltPercentage: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
563
+ tiltPercent100thsValue: import("@matter/main/types").FieldType<number>;
564
+ }>, void, any>;
565
+ };
566
+ };
567
+ }, {
568
+ readonly flags: {
569
+ readonly lift: true;
570
+ readonly absolutePosition: true;
571
+ };
572
+ readonly component: {
573
+ readonly commands: {
574
+ readonly goToLiftValue: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
575
+ liftValue: import("@matter/main/types").FieldType<number>;
576
+ }>, void, any>;
577
+ };
578
+ };
579
+ }, {
580
+ readonly flags: {
581
+ readonly tilt: true;
582
+ readonly absolutePosition: true;
583
+ };
584
+ readonly component: {
585
+ readonly commands: {
586
+ readonly goToTiltValue: import("@matter/main/types").OptionalCommand<import("@matter/main/types").TypeFromFields<{
587
+ tiltValue: import("@matter/main/types").FieldType<number>;
588
+ }>, void, any>;
589
+ };
590
+ };
591
+ }, {
592
+ readonly flags: {
593
+ readonly positionAwareLift: true;
594
+ readonly lift: false;
595
+ };
596
+ readonly component: false;
597
+ }, {
598
+ readonly flags: {
599
+ readonly positionAwareTilt: true;
600
+ readonly tilt: false;
601
+ };
602
+ readonly component: false;
603
+ }, {
604
+ readonly flags: {
605
+ readonly lift: false;
606
+ readonly tilt: false;
607
+ };
608
+ readonly component: false;
609
+ }];
610
+ }>, readonly [WindowCovering.Feature.Lift, WindowCovering.Feature.PositionAwareLift]>, readonly ["Lift", "PositionAwareLift"]>, typeof MatterbridgeLiftWindowCoveringServer, import("@matter/node/behaviors").WindowCoveringInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
611
+ readonly id: 513;
612
+ readonly name: "Thermostat";
613
+ readonly revision: 8;
614
+ readonly features: {
615
+ readonly heating: import("@matter/main/types").BitFlag;
616
+ readonly cooling: import("@matter/main/types").BitFlag;
617
+ readonly occupancy: import("@matter/main/types").BitFlag;
618
+ readonly scheduleConfiguration: import("@matter/main/types").BitFlag;
619
+ readonly setback: import("@matter/main/types").BitFlag;
620
+ readonly autoMode: import("@matter/main/types").BitFlag;
621
+ readonly localTemperatureNotExposed: import("@matter/main/types").BitFlag;
622
+ readonly matterScheduleConfiguration: import("@matter/main/types").BitFlag;
623
+ readonly presets: import("@matter/main/types").BitFlag;
624
+ };
625
+ readonly attributes: {
626
+ readonly localTemperature: import("@matter/main/types").Attribute<number | null, any>;
627
+ readonly outdoorTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
628
+ readonly hvacSystemTypeConfiguration: import("@matter/main/types").OptionalWritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
629
+ coolingStage: import("@matter/main/types").BitField;
630
+ heatingStage: import("@matter/main/types").BitField;
631
+ heatingIsHeatPump: import("@matter/main/types").BitFlag;
632
+ heatingUsesFuel: import("@matter/main/types").BitFlag;
633
+ }>, any>;
634
+ readonly remoteSensing: import("@matter/main/types").OptionalWritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
635
+ localTemperature: import("@matter/main/types").BitFlag;
636
+ outdoorTemperature: import("@matter/main/types").BitFlag;
637
+ occupancy: import("@matter/main/types").BitFlag;
638
+ }>, any>;
639
+ readonly controlSequenceOfOperation: import("@matter/main/types").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
640
+ readonly systemMode: import("@matter/main/types").WritableAttribute<Thermostat.SystemMode, any>;
641
+ readonly temperatureSetpointHold: import("@matter/main/types").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
642
+ readonly temperatureSetpointHoldDuration: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
643
+ readonly thermostatProgrammingOperationMode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
644
+ scheduleActive: import("@matter/main/types").BitFlag;
645
+ autoRecovery: import("@matter/main/types").BitFlag;
646
+ economy: import("@matter/main/types").BitFlag;
647
+ }>, any>;
648
+ readonly thermostatRunningState: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
649
+ heat: import("@matter/main/types").BitFlag;
650
+ cool: import("@matter/main/types").BitFlag;
651
+ fan: import("@matter/main/types").BitFlag;
652
+ heatStage2: import("@matter/main/types").BitFlag;
653
+ coolStage2: import("@matter/main/types").BitFlag;
654
+ fanStage2: import("@matter/main/types").BitFlag;
655
+ fanStage3: import("@matter/main/types").BitFlag;
656
+ }>, any>;
657
+ readonly setpointChangeSource: import("@matter/main/types").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
658
+ readonly setpointChangeAmount: import("@matter/main/types").OptionalAttribute<number | null, any>;
659
+ readonly setpointChangeSourceTimestamp: import("@matter/main/types").OptionalAttribute<number, any>;
660
+ readonly emergencyHeatDelta: import("@matter/main/types").OptionalWritableAttribute<number, any>;
661
+ readonly acType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcType, any>;
662
+ readonly acCapacity: import("@matter/main/types").OptionalWritableAttribute<number, any>;
663
+ readonly acRefrigerantType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
664
+ readonly acCompressorType: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
665
+ readonly acErrorCode: import("@matter/main/types").OptionalWritableAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
666
+ compressorFail: import("@matter/main/types").BitFlag;
667
+ roomSensorFail: import("@matter/main/types").BitFlag;
668
+ outdoorSensorFail: import("@matter/main/types").BitFlag;
669
+ coilSensorFail: import("@matter/main/types").BitFlag;
670
+ fanFail: import("@matter/main/types").BitFlag;
671
+ }>, any>;
672
+ readonly acLouverPosition: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
673
+ readonly acCoilTemperature: import("@matter/main/types").OptionalAttribute<number | null, any>;
674
+ readonly acCapacityFormat: import("@matter/main/types").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
675
+ readonly setpointHoldExpiryTimestamp: import("@matter/main/types").OptionalAttribute<number | null, any>;
676
+ };
677
+ readonly commands: {
678
+ readonly setpointRaiseLower: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
679
+ mode: import("@matter/main/types").FieldType<Thermostat.SetpointRaiseLowerMode>;
680
+ amount: import("@matter/main/types").FieldType<number>;
681
+ }>, void, any>;
682
+ };
683
+ readonly extensions: readonly [{
684
+ readonly flags: {
685
+ readonly occupancy: true;
686
+ };
687
+ readonly component: {
688
+ readonly attributes: {
689
+ readonly occupancy: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromPartialBitSchema<{
690
+ occupied: import("@matter/main/types").BitFlag;
691
+ }>, any>;
692
+ };
693
+ };
694
+ }, {
695
+ readonly flags: {
696
+ readonly heating: true;
697
+ };
698
+ readonly component: {
699
+ readonly attributes: {
700
+ readonly absMinHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
701
+ readonly absMaxHeatSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
702
+ readonly piHeatingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
703
+ readonly occupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
704
+ readonly minHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
705
+ readonly maxHeatSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
706
+ };
707
+ };
708
+ }, {
709
+ readonly flags: {
710
+ readonly cooling: true;
711
+ };
712
+ readonly component: {
713
+ readonly attributes: {
714
+ readonly absMinCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
715
+ readonly absMaxCoolSetpointLimit: import("@matter/main/types").OptionalFixedAttribute<number, any>;
716
+ readonly piCoolingDemand: import("@matter/main/types").OptionalAttribute<number, any>;
717
+ readonly occupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
718
+ readonly minCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
719
+ readonly maxCoolSetpointLimit: import("@matter/main/types").OptionalWritableAttribute<number, any>;
720
+ };
721
+ };
722
+ }, {
723
+ readonly flags: {
724
+ readonly localTemperatureNotExposed: false;
725
+ };
726
+ readonly component: {
727
+ readonly attributes: {
728
+ readonly localTemperatureCalibration: import("@matter/main/types").OptionalWritableAttribute<number, any>;
729
+ };
730
+ };
731
+ }, {
732
+ readonly flags: {
733
+ readonly cooling: true;
734
+ readonly occupancy: true;
735
+ };
736
+ readonly component: {
737
+ readonly attributes: {
738
+ readonly unoccupiedCoolingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
739
+ };
740
+ };
741
+ }, {
742
+ readonly flags: {
743
+ readonly heating: true;
744
+ readonly occupancy: true;
745
+ };
746
+ readonly component: {
747
+ readonly attributes: {
748
+ readonly unoccupiedHeatingSetpoint: import("@matter/main/types").WritableAttribute<number, any>;
749
+ };
750
+ };
751
+ }, {
752
+ readonly flags: {
753
+ readonly autoMode: true;
754
+ };
755
+ readonly component: {
756
+ readonly attributes: {
757
+ readonly minSetpointDeadBand: import("@matter/main/types").WritableAttribute<number, any>;
758
+ readonly thermostatRunningMode: import("@matter/main/types").OptionalAttribute<Thermostat.ThermostatRunningMode, any>;
759
+ };
760
+ };
761
+ }, {
762
+ readonly flags: {
763
+ readonly scheduleConfiguration: true;
764
+ };
765
+ readonly component: {
766
+ readonly attributes: {
767
+ readonly startOfWeek: import("@matter/main/types").FixedAttribute<Thermostat.StartOfWeek, any>;
768
+ readonly numberOfWeeklyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
769
+ readonly numberOfDailyTransitions: import("@matter/main/types").FixedAttribute<number, any>;
770
+ };
771
+ readonly commands: {
772
+ readonly setWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
773
+ numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
774
+ dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
775
+ sunday: import("@matter/main/types").BitFlag;
776
+ monday: import("@matter/main/types").BitFlag;
777
+ tuesday: import("@matter/main/types").BitFlag;
778
+ wednesday: import("@matter/main/types").BitFlag;
779
+ thursday: import("@matter/main/types").BitFlag;
780
+ friday: import("@matter/main/types").BitFlag;
781
+ saturday: import("@matter/main/types").BitFlag;
782
+ away: import("@matter/main/types").BitFlag;
783
+ }>>;
784
+ modeForSequence: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
785
+ heatSetpointPresent: import("@matter/main/types").BitFlag;
786
+ coolSetpointPresent: import("@matter/main/types").BitFlag;
787
+ }>>;
788
+ transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
789
+ transitionTime: import("@matter/main/types").FieldType<number>;
790
+ heatSetpoint: import("@matter/main/types").FieldType<number | null>;
791
+ coolSetpoint: import("@matter/main/types").FieldType<number | null>;
792
+ }>[]>;
793
+ }>, void, any>;
794
+ readonly getWeeklySchedule: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
795
+ daysToReturn: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
796
+ sunday: import("@matter/main/types").BitFlag;
797
+ monday: import("@matter/main/types").BitFlag;
798
+ tuesday: import("@matter/main/types").BitFlag;
799
+ wednesday: import("@matter/main/types").BitFlag;
800
+ thursday: import("@matter/main/types").BitFlag;
801
+ friday: import("@matter/main/types").BitFlag;
802
+ saturday: import("@matter/main/types").BitFlag;
803
+ away: import("@matter/main/types").BitFlag;
804
+ }>>;
805
+ modeToReturn: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
806
+ heatSetpointPresent: import("@matter/main/types").BitFlag;
807
+ coolSetpointPresent: import("@matter/main/types").BitFlag;
808
+ }>>;
809
+ }>, import("@matter/main/types").TypeFromFields<{
810
+ numberOfTransitionsForSequence: import("@matter/main/types").FieldType<number>;
811
+ dayOfWeekForSequence: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
812
+ sunday: import("@matter/main/types").BitFlag;
813
+ monday: import("@matter/main/types").BitFlag;
814
+ tuesday: import("@matter/main/types").BitFlag;
815
+ wednesday: import("@matter/main/types").BitFlag;
816
+ thursday: import("@matter/main/types").BitFlag;
817
+ friday: import("@matter/main/types").BitFlag;
818
+ saturday: import("@matter/main/types").BitFlag;
819
+ away: import("@matter/main/types").BitFlag;
820
+ }>>;
821
+ modeForSequence: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
822
+ heatSetpointPresent: import("@matter/main/types").BitFlag;
823
+ coolSetpointPresent: import("@matter/main/types").BitFlag;
824
+ }>>;
825
+ transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
826
+ transitionTime: import("@matter/main/types").FieldType<number>;
827
+ heatSetpoint: import("@matter/main/types").FieldType<number | null>;
828
+ coolSetpoint: import("@matter/main/types").FieldType<number | null>;
829
+ }>[]>;
830
+ }>, any>;
831
+ readonly clearWeeklySchedule: import("@matter/main/types").Command<void, void, any>;
832
+ };
833
+ };
834
+ }, {
835
+ readonly flags: {
836
+ readonly setback: true;
837
+ };
838
+ readonly component: {
839
+ readonly attributes: {
840
+ readonly occupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
841
+ readonly occupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
842
+ readonly occupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
843
+ };
844
+ };
845
+ }, {
846
+ readonly flags: {
847
+ readonly setback: true;
848
+ readonly occupancy: true;
849
+ };
850
+ readonly component: {
851
+ readonly attributes: {
852
+ readonly unoccupiedSetback: import("@matter/main/types").WritableAttribute<number | null, any>;
853
+ readonly unoccupiedSetbackMin: import("@matter/main/types").FixedAttribute<number | null, any>;
854
+ readonly unoccupiedSetbackMax: import("@matter/main/types").FixedAttribute<number | null, any>;
855
+ };
856
+ };
857
+ }, {
858
+ readonly flags: {
859
+ readonly presets: true;
860
+ };
861
+ readonly component: {
862
+ readonly attributes: {
863
+ readonly presetTypes: import("@matter/main/types").FixedAttribute<import("@matter/main/types").TypeFromFields<{
864
+ presetScenario: import("@matter/main/types").FieldType<Thermostat.PresetScenario>;
865
+ numberOfPresets: import("@matter/main/types").FieldType<number>;
866
+ presetTypeFeatures: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
867
+ automatic: import("@matter/main/types").BitFlag;
868
+ supportsNames: import("@matter/main/types").BitFlag;
869
+ }>>;
870
+ }>[], any>;
871
+ readonly numberOfPresets: import("@matter/main/types").FixedAttribute<number, any>;
872
+ readonly activePresetHandle: import("@matter/main/types").Attribute<Uint8Array<ArrayBufferLike> | null, any>;
873
+ readonly presets: import("@matter/main/types").WritableAttribute<import("@matter/main/types").TypeFromFields<{
874
+ presetHandle: import("@matter/main/types").FieldType<Uint8Array<ArrayBufferLike> | null>;
875
+ presetScenario: import("@matter/main/types").FieldType<Thermostat.PresetScenario>;
876
+ name: import("@matter/main/types").OptionalFieldType<string | null>;
877
+ coolingSetpoint: import("@matter/main/types").OptionalFieldType<number>;
878
+ heatingSetpoint: import("@matter/main/types").OptionalFieldType<number>;
879
+ builtIn: import("@matter/main/types").FieldType<boolean | null>;
880
+ }>[], any>;
881
+ };
882
+ readonly commands: {
883
+ readonly setActivePresetRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
884
+ presetHandle: import("@matter/main/types").FieldType<Uint8Array<ArrayBufferLike> | null>;
885
+ }>, void, any>;
886
+ };
887
+ };
888
+ }, {
889
+ readonly flags: {
890
+ readonly matterScheduleConfiguration: true;
891
+ };
892
+ readonly component: {
893
+ readonly attributes: {
894
+ readonly scheduleTypes: import("@matter/main/types").FixedAttribute<import("@matter/main/types").TypeFromFields<{
895
+ systemMode: import("@matter/main/types").FieldType<Thermostat.SystemMode>;
896
+ numberOfSchedules: import("@matter/main/types").FieldType<number>;
897
+ scheduleTypeFeatures: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
898
+ supportsPresets: import("@matter/main/types").BitFlag;
899
+ supportsSetpoints: import("@matter/main/types").BitFlag;
900
+ supportsNames: import("@matter/main/types").BitFlag;
901
+ supportsOff: import("@matter/main/types").BitFlag;
902
+ }>>;
903
+ }>[], any>;
904
+ readonly numberOfSchedules: import("@matter/main/types").FixedAttribute<number, any>;
905
+ readonly numberOfScheduleTransitions: import("@matter/main/types").FixedAttribute<number, any>;
906
+ readonly numberOfScheduleTransitionPerDay: import("@matter/main/types").FixedAttribute<number | null, any>;
907
+ readonly activeScheduleHandle: import("@matter/main/types").Attribute<Uint8Array<ArrayBufferLike> | null, any>;
908
+ readonly schedules: import("@matter/main/types").WritableAttribute<import("@matter/main/types").TypeFromFields<{
909
+ scheduleHandle: import("@matter/main/types").FieldType<Uint8Array<ArrayBufferLike> | null>;
910
+ systemMode: import("@matter/main/types").FieldType<Thermostat.SystemMode>;
911
+ name: import("@matter/main/types").OptionalFieldType<string>;
912
+ presetHandle: import("@matter/main/types").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
913
+ transitions: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
914
+ dayOfWeek: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromPartialBitSchema<{
915
+ sunday: import("@matter/main/types").BitFlag;
916
+ monday: import("@matter/main/types").BitFlag;
917
+ tuesday: import("@matter/main/types").BitFlag;
918
+ wednesday: import("@matter/main/types").BitFlag;
919
+ thursday: import("@matter/main/types").BitFlag;
920
+ friday: import("@matter/main/types").BitFlag;
921
+ saturday: import("@matter/main/types").BitFlag;
922
+ away: import("@matter/main/types").BitFlag;
923
+ }>>;
924
+ transitionTime: import("@matter/main/types").FieldType<number>;
925
+ presetHandle: import("@matter/main/types").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
926
+ systemMode: import("@matter/main/types").OptionalFieldType<Thermostat.SystemMode>;
927
+ coolingSetpoint: import("@matter/main/types").OptionalFieldType<number>;
928
+ heatingSetpoint: import("@matter/main/types").OptionalFieldType<number>;
929
+ }>[]>;
930
+ builtIn: import("@matter/main/types").FieldType<boolean | null>;
931
+ }>[], any>;
932
+ };
933
+ readonly commands: {
934
+ readonly setActiveScheduleRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
935
+ scheduleHandle: import("@matter/main/types").FieldType<Uint8Array<ArrayBufferLike>>;
936
+ }>, void, any>;
937
+ };
938
+ };
939
+ }, {
940
+ readonly flags: {
941
+ readonly autoMode: true;
942
+ readonly heating: false;
943
+ };
944
+ readonly component: false;
945
+ }, {
946
+ readonly flags: {
947
+ readonly autoMode: true;
948
+ readonly cooling: false;
949
+ };
950
+ readonly component: false;
951
+ }, {
952
+ readonly flags: {
953
+ readonly heating: false;
954
+ readonly cooling: false;
955
+ };
956
+ readonly component: false;
957
+ }];
958
+ }>, readonly [Thermostat.Feature.Cooling, Thermostat.Feature.Heating, Thermostat.Feature.AutoMode]>, readonly ["AutoMode", "Heating", "Cooling"]>, typeof MatterbridgeThermostatServer, import("@matter/node/behaviors").ThermostatInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ValveConfigurationAndControl.Cluster, readonly [ValveConfigurationAndControl.Feature.Level]>, readonly ["Level"]>, typeof MatterbridgeValveConfigurationAndControlServer, import("@matter/node/behaviors").ValveConfigurationAndControlInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
959
+ readonly id: 512;
960
+ readonly name: "PumpConfigurationAndControl";
961
+ readonly revision: 4;
962
+ readonly features: {
963
+ readonly constantPressure: import("@matter/main/types").BitFlag;
964
+ readonly compensatedPressure: import("@matter/main/types").BitFlag;
965
+ readonly constantFlow: import("@matter/main/types").BitFlag;
966
+ readonly constantSpeed: import("@matter/main/types").BitFlag;
967
+ readonly constantTemperature: import("@matter/main/types").BitFlag;
968
+ readonly automatic: import("@matter/main/types").BitFlag;
969
+ readonly localOperation: import("@matter/main/types").BitFlag;
970
+ };
971
+ readonly attributes: {
972
+ readonly maxPressure: import("@matter/main/types").FixedAttribute<number | null, any>;
973
+ readonly maxSpeed: import("@matter/main/types").FixedAttribute<number | null, any>;
974
+ readonly maxFlow: import("@matter/main/types").FixedAttribute<number | null, any>;
975
+ readonly pumpStatus: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromPartialBitSchema<{
976
+ deviceFault: import("@matter/main/types").BitFlag;
977
+ supplyFault: import("@matter/main/types").BitFlag;
978
+ speedLow: import("@matter/main/types").BitFlag;
979
+ speedHigh: import("@matter/main/types").BitFlag;
980
+ localOverride: import("@matter/main/types").BitFlag;
981
+ running: import("@matter/main/types").BitFlag;
982
+ remotePressure: import("@matter/main/types").BitFlag;
983
+ remoteFlow: import("@matter/main/types").BitFlag;
984
+ remoteTemperature: import("@matter/main/types").BitFlag;
985
+ }>, any>;
986
+ readonly effectiveOperationMode: import("@matter/main/types").Attribute<PumpConfigurationAndControl.OperationMode, any>;
987
+ readonly effectiveControlMode: import("@matter/main/types").Attribute<PumpConfigurationAndControl.ControlMode, any>;
988
+ readonly capacity: import("@matter/main/types").Attribute<number | null, any>;
989
+ readonly speed: import("@matter/main/types").OptionalAttribute<number | null, any>;
990
+ readonly lifetimeRunningHours: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
991
+ readonly power: import("@matter/main/types").OptionalAttribute<number | null, any>;
992
+ readonly lifetimeEnergyConsumed: import("@matter/main/types").OptionalWritableAttribute<number | null, any>;
993
+ readonly operationMode: import("@matter/main/types").WritableAttribute<PumpConfigurationAndControl.OperationMode, any>;
994
+ readonly controlMode: import("@matter/main/types").OptionalWritableAttribute<PumpConfigurationAndControl.ControlMode, any>;
995
+ readonly alarmMask: import("@matter/main/types").OptionalWritableAttribute<number, any>;
996
+ };
997
+ readonly events: {
998
+ readonly supplyVoltageLow: import("@matter/main/types").OptionalEvent<void, any>;
999
+ readonly supplyVoltageHigh: import("@matter/main/types").OptionalEvent<void, any>;
1000
+ readonly powerMissingPhase: import("@matter/main/types").OptionalEvent<void, any>;
1001
+ readonly systemPressureLow: import("@matter/main/types").OptionalEvent<void, any>;
1002
+ readonly systemPressureHigh: import("@matter/main/types").OptionalEvent<void, any>;
1003
+ readonly dryRunning: import("@matter/main/types").OptionalEvent<void, any>;
1004
+ readonly motorTemperatureHigh: import("@matter/main/types").OptionalEvent<void, any>;
1005
+ readonly pumpMotorFatalFailure: import("@matter/main/types").OptionalEvent<void, any>;
1006
+ readonly electronicTemperatureHigh: import("@matter/main/types").OptionalEvent<void, any>;
1007
+ readonly pumpBlocked: import("@matter/main/types").OptionalEvent<void, any>;
1008
+ readonly sensorFailure: import("@matter/main/types").OptionalEvent<void, any>;
1009
+ readonly electronicNonFatalFailure: import("@matter/main/types").OptionalEvent<void, any>;
1010
+ readonly electronicFatalFailure: import("@matter/main/types").OptionalEvent<void, any>;
1011
+ readonly generalFault: import("@matter/main/types").OptionalEvent<void, any>;
1012
+ readonly leakage: import("@matter/main/types").OptionalEvent<void, any>;
1013
+ readonly airDetection: import("@matter/main/types").OptionalEvent<void, any>;
1014
+ readonly turbineOperation: import("@matter/main/types").OptionalEvent<void, any>;
1015
+ };
1016
+ readonly extensions: readonly [{
1017
+ readonly flags: {
1018
+ readonly constantPressure: true;
1019
+ };
1020
+ readonly component: {
1021
+ readonly attributes: {
1022
+ readonly minConstPressure: import("@matter/main/types").FixedAttribute<number | null, any>;
1023
+ readonly maxConstPressure: import("@matter/main/types").FixedAttribute<number | null, any>;
1024
+ };
1025
+ };
1026
+ }, {
1027
+ readonly flags: {
1028
+ readonly automatic: true;
1029
+ };
1030
+ readonly component: {
1031
+ readonly attributes: {
1032
+ readonly minConstPressure: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1033
+ readonly maxConstPressure: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1034
+ readonly minCompPressure: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1035
+ readonly maxCompPressure: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1036
+ readonly minConstSpeed: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1037
+ readonly maxConstSpeed: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1038
+ readonly minConstFlow: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1039
+ readonly maxConstFlow: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1040
+ readonly minConstTemp: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1041
+ readonly maxConstTemp: import("@matter/main/types").OptionalFixedAttribute<number | null, any>;
1042
+ };
1043
+ };
1044
+ }, {
1045
+ readonly flags: {
1046
+ readonly compensatedPressure: true;
1047
+ };
1048
+ readonly component: {
1049
+ readonly attributes: {
1050
+ readonly minCompPressure: import("@matter/main/types").FixedAttribute<number | null, any>;
1051
+ readonly maxCompPressure: import("@matter/main/types").FixedAttribute<number | null, any>;
1052
+ };
1053
+ };
1054
+ }, {
1055
+ readonly flags: {
1056
+ readonly constantSpeed: true;
1057
+ };
1058
+ readonly component: {
1059
+ readonly attributes: {
1060
+ readonly minConstSpeed: import("@matter/main/types").FixedAttribute<number | null, any>;
1061
+ readonly maxConstSpeed: import("@matter/main/types").FixedAttribute<number | null, any>;
1062
+ };
1063
+ };
1064
+ }, {
1065
+ readonly flags: {
1066
+ readonly constantFlow: true;
1067
+ };
1068
+ readonly component: {
1069
+ readonly attributes: {
1070
+ readonly minConstFlow: import("@matter/main/types").FixedAttribute<number | null, any>;
1071
+ readonly maxConstFlow: import("@matter/main/types").FixedAttribute<number | null, any>;
1072
+ };
1073
+ };
1074
+ }, {
1075
+ readonly flags: {
1076
+ readonly constantTemperature: true;
1077
+ };
1078
+ readonly component: {
1079
+ readonly attributes: {
1080
+ readonly minConstTemp: import("@matter/main/types").FixedAttribute<number | null, any>;
1081
+ readonly maxConstTemp: import("@matter/main/types").FixedAttribute<number | null, any>;
1082
+ };
1083
+ };
1084
+ }, {
1085
+ readonly flags: {
1086
+ readonly constantPressure: false;
1087
+ readonly compensatedPressure: false;
1088
+ readonly constantFlow: false;
1089
+ readonly constantSpeed: false;
1090
+ readonly constantTemperature: false;
1091
+ };
1092
+ readonly component: false;
1093
+ }];
1094
+ }>, readonly ["ConstantSpeed"]>, typeof PumpConfigurationAndControlServer, {
1095
+ components: never[];
1096
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1097
+ readonly id: 92;
1098
+ readonly name: "SmokeCoAlarm";
1099
+ readonly revision: 1;
1100
+ readonly features: {
1101
+ readonly smokeAlarm: import("@matter/main/types").BitFlag;
1102
+ readonly coAlarm: import("@matter/main/types").BitFlag;
1103
+ };
1104
+ readonly attributes: {
1105
+ readonly expressedState: import("@matter/main/types").Attribute<SmokeCoAlarm.ExpressedState, any>;
1106
+ readonly batteryAlert: import("@matter/main/types").Attribute<SmokeCoAlarm.AlarmState, any>;
1107
+ readonly deviceMuted: import("@matter/main/types").OptionalAttribute<SmokeCoAlarm.MuteState, any>;
1108
+ readonly testInProgress: import("@matter/main/types").Attribute<boolean, any>;
1109
+ readonly hardwareFaultAlert: import("@matter/main/types").Attribute<boolean, any>;
1110
+ readonly endOfServiceAlert: import("@matter/main/types").Attribute<SmokeCoAlarm.EndOfService, any>;
1111
+ readonly interconnectSmokeAlarm: import("@matter/main/types").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
1112
+ readonly interconnectCoAlarm: import("@matter/main/types").OptionalAttribute<SmokeCoAlarm.AlarmState, any>;
1113
+ readonly expiryDate: import("@matter/main/types").OptionalFixedAttribute<number, any>;
1114
+ };
1115
+ readonly commands: {
1116
+ readonly selfTestRequest: import("@matter/main/types").OptionalCommand<void, void, any>;
1117
+ };
1118
+ readonly events: {
1119
+ readonly lowBattery: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1120
+ alarmSeverityLevel: import("@matter/main/types").FieldType<SmokeCoAlarm.AlarmState>;
1121
+ }>, any>;
1122
+ readonly hardwareFault: import("@matter/main/types").Event<void, any>;
1123
+ readonly endOfService: import("@matter/main/types").Event<void, any>;
1124
+ readonly selfTestComplete: import("@matter/main/types").Event<void, any>;
1125
+ readonly alarmMuted: import("@matter/main/types").OptionalEvent<void, any>;
1126
+ readonly muteEnded: import("@matter/main/types").OptionalEvent<void, any>;
1127
+ readonly allClear: import("@matter/main/types").Event<void, any>;
1128
+ };
1129
+ readonly extensions: readonly [{
1130
+ readonly flags: {
1131
+ readonly smokeAlarm: true;
1132
+ };
1133
+ readonly component: {
1134
+ readonly attributes: {
1135
+ readonly smokeState: import("@matter/main/types").Attribute<SmokeCoAlarm.AlarmState, any>;
1136
+ readonly contaminationState: import("@matter/main/types").OptionalAttribute<SmokeCoAlarm.ContaminationState, any>;
1137
+ readonly smokeSensitivityLevel: import("@matter/main/types").OptionalWritableAttribute<SmokeCoAlarm.Sensitivity, any>;
1138
+ };
1139
+ readonly events: {
1140
+ readonly smokeAlarm: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1141
+ alarmSeverityLevel: import("@matter/main/types").FieldType<SmokeCoAlarm.AlarmState>;
1142
+ }>, any>;
1143
+ readonly interconnectSmokeAlarm: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
1144
+ alarmSeverityLevel: import("@matter/main/types").FieldType<SmokeCoAlarm.AlarmState>;
1145
+ }>, any>;
1146
+ };
1147
+ };
1148
+ }, {
1149
+ readonly flags: {
1150
+ readonly coAlarm: true;
1151
+ };
1152
+ readonly component: {
1153
+ readonly attributes: {
1154
+ readonly coState: import("@matter/main/types").Attribute<SmokeCoAlarm.AlarmState, any>;
1155
+ };
1156
+ readonly events: {
1157
+ readonly coAlarm: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1158
+ alarmSeverityLevel: import("@matter/main/types").FieldType<SmokeCoAlarm.AlarmState>;
1159
+ }>, any>;
1160
+ readonly interconnectCoAlarm: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
1161
+ alarmSeverityLevel: import("@matter/main/types").FieldType<SmokeCoAlarm.AlarmState>;
1162
+ }>, any>;
1163
+ };
1164
+ };
1165
+ }, {
1166
+ readonly flags: {
1167
+ readonly smokeAlarm: false;
1168
+ readonly coAlarm: false;
1169
+ };
1170
+ readonly component: false;
1171
+ }];
1172
+ }>, readonly [SmokeCoAlarm.Feature.SmokeAlarm, SmokeCoAlarm.Feature.CoAlarm]>, readonly ["SmokeAlarm", "CoAlarm"]>, typeof MatterbridgeSmokeCoAlarmServer, import("@matter/node/behaviors").SmokeCoAlarmInterface> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1173
+ readonly id: 59;
1174
+ readonly name: "Switch";
1175
+ readonly revision: 2;
1176
+ readonly features: {
1177
+ readonly latchingSwitch: import("@matter/main/types").BitFlag;
1178
+ readonly momentarySwitch: import("@matter/main/types").BitFlag;
1179
+ readonly momentarySwitchRelease: import("@matter/main/types").BitFlag;
1180
+ readonly momentarySwitchLongPress: import("@matter/main/types").BitFlag;
1181
+ readonly momentarySwitchMultiPress: import("@matter/main/types").BitFlag;
1182
+ readonly actionSwitch: import("@matter/main/types").BitFlag;
1183
+ };
1184
+ readonly attributes: {
1185
+ readonly numberOfPositions: import("@matter/main/types").FixedAttribute<number, any>;
1186
+ readonly currentPosition: import("@matter/main/types").Attribute<number, any>;
1187
+ };
1188
+ readonly extensions: readonly [{
1189
+ readonly flags: {
1190
+ readonly momentarySwitchMultiPress: true;
1191
+ };
1192
+ readonly component: {
1193
+ readonly attributes: {
1194
+ readonly multiPressMax: import("@matter/main/types").FixedAttribute<number, any>;
1195
+ };
1196
+ readonly events: {
1197
+ readonly multiPressComplete: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1198
+ previousPosition: import("@matter/main/types").FieldType<number>;
1199
+ totalNumberOfPressesCounted: import("@matter/main/types").FieldType<number>;
1200
+ }>, any>;
1201
+ };
1202
+ };
1203
+ }, {
1204
+ readonly flags: {
1205
+ readonly latchingSwitch: true;
1206
+ };
1207
+ readonly component: {
1208
+ readonly events: {
1209
+ readonly switchLatched: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1210
+ newPosition: import("@matter/main/types").FieldType<number>;
1211
+ }>, any>;
1212
+ };
1213
+ };
1214
+ }, {
1215
+ readonly flags: {
1216
+ readonly momentarySwitch: true;
1217
+ };
1218
+ readonly component: {
1219
+ readonly events: {
1220
+ readonly initialPress: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1221
+ newPosition: import("@matter/main/types").FieldType<number>;
1222
+ }>, any>;
1223
+ };
1224
+ };
1225
+ }, {
1226
+ readonly flags: {
1227
+ readonly momentarySwitchLongPress: true;
1228
+ };
1229
+ readonly component: {
1230
+ readonly events: {
1231
+ readonly longPress: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1232
+ newPosition: import("@matter/main/types").FieldType<number>;
1233
+ }>, any>;
1234
+ readonly longRelease: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1235
+ previousPosition: import("@matter/main/types").FieldType<number>;
1236
+ }>, any>;
1237
+ };
1238
+ };
1239
+ }, {
1240
+ readonly flags: {
1241
+ readonly momentarySwitchRelease: true;
1242
+ };
1243
+ readonly component: {
1244
+ readonly events: {
1245
+ readonly shortRelease: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1246
+ previousPosition: import("@matter/main/types").FieldType<number>;
1247
+ }>, any>;
1248
+ };
1249
+ };
1250
+ }, {
1251
+ readonly flags: {
1252
+ readonly momentarySwitchMultiPress: true;
1253
+ readonly actionSwitch: false;
1254
+ };
1255
+ readonly component: {
1256
+ readonly events: {
1257
+ readonly multiPressOngoing: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1258
+ newPosition: import("@matter/main/types").FieldType<number>;
1259
+ currentNumberOfPressesCounted: import("@matter/main/types").FieldType<number>;
1260
+ }>, any>;
1261
+ };
1262
+ };
1263
+ }, {
1264
+ readonly flags: {
1265
+ readonly momentarySwitchRelease: true;
1266
+ readonly momentarySwitch: false;
1267
+ };
1268
+ readonly component: false;
1269
+ }, {
1270
+ readonly flags: {
1271
+ readonly momentarySwitchRelease: true;
1272
+ readonly actionSwitch: true;
1273
+ };
1274
+ readonly component: false;
1275
+ }, {
1276
+ readonly flags: {
1277
+ readonly momentarySwitchLongPress: true;
1278
+ readonly momentarySwitch: false;
1279
+ };
1280
+ readonly component: false;
1281
+ }, {
1282
+ readonly flags: {
1283
+ readonly momentarySwitchLongPress: true;
1284
+ readonly momentarySwitchRelease: false;
1285
+ readonly actionSwitch: false;
1286
+ };
1287
+ readonly component: false;
1288
+ }, {
1289
+ readonly flags: {
1290
+ readonly actionSwitch: true;
1291
+ readonly momentarySwitchMultiPress: false;
1292
+ };
1293
+ readonly component: false;
1294
+ }, {
1295
+ readonly flags: {
1296
+ readonly actionSwitch: false;
1297
+ readonly momentarySwitchMultiPress: true;
1298
+ readonly momentarySwitch: false;
1299
+ };
1300
+ readonly component: false;
1301
+ }, {
1302
+ readonly flags: {
1303
+ readonly actionSwitch: false;
1304
+ readonly momentarySwitchMultiPress: true;
1305
+ readonly momentarySwitchRelease: false;
1306
+ };
1307
+ readonly component: false;
1308
+ }, {
1309
+ readonly flags: {
1310
+ readonly actionSwitch: true;
1311
+ readonly momentarySwitch: false;
1312
+ };
1313
+ readonly component: false;
1314
+ }, {
1315
+ readonly flags: {
1316
+ readonly latchingSwitch: true;
1317
+ readonly momentarySwitch: true;
1318
+ };
1319
+ readonly component: false;
1320
+ }, {
1321
+ readonly flags: {
1322
+ readonly latchingSwitch: false;
1323
+ readonly momentarySwitch: false;
1324
+ };
1325
+ readonly component: false;
1326
+ }];
1327
+ }>, readonly ["MomentarySwitch", "MomentarySwitchRelease", "MomentarySwitchLongPress", "MomentarySwitchMultiPress"]>, typeof SwitchServer, {
1328
+ components: never[];
1329
+ }> | ClusterBehavior.Type<import("@matter/main/types").ElementModifier.WithAlterations<BooleanState.Cluster, import("@matter/main/types").ElementModifier.ElementFlagAlterations<{
1330
+ readonly events: {
1331
+ readonly stateChange: true;
1332
+ };
1333
+ }>>, typeof BooleanStateServer, {
1334
+ components: never[];
1335
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1336
+ readonly id: 156;
1337
+ readonly name: "PowerTopology";
1338
+ readonly revision: 1;
1339
+ readonly features: {
1340
+ readonly nodeTopology: import("@matter/main/types").BitFlag;
1341
+ readonly treeTopology: import("@matter/main/types").BitFlag;
1342
+ readonly setTopology: import("@matter/main/types").BitFlag;
1343
+ readonly dynamicPowerFlow: import("@matter/main/types").BitFlag;
1344
+ };
1345
+ readonly extensions: readonly [{
1346
+ readonly flags: {
1347
+ readonly setTopology: true;
1348
+ };
1349
+ readonly component: {
1350
+ readonly attributes: {
1351
+ readonly availableEndpoints: import("@matter/main/types").FixedAttribute<import("@matter/main").EndpointNumber[], any>;
1352
+ };
1353
+ };
1354
+ }, {
1355
+ readonly flags: {
1356
+ readonly dynamicPowerFlow: true;
1357
+ };
1358
+ readonly component: {
1359
+ readonly attributes: {
1360
+ readonly activeEndpoints: import("@matter/main/types").Attribute<import("@matter/main").EndpointNumber[], any>;
1361
+ };
1362
+ };
1363
+ }, {
1364
+ readonly flags: {
1365
+ readonly dynamicPowerFlow: true;
1366
+ readonly setTopology: false;
1367
+ };
1368
+ readonly component: false;
1369
+ }, {
1370
+ readonly flags: {
1371
+ readonly nodeTopology: true;
1372
+ readonly treeTopology: true;
1373
+ };
1374
+ readonly component: false;
1375
+ }, {
1376
+ readonly flags: {
1377
+ readonly nodeTopology: true;
1378
+ readonly setTopology: true;
1379
+ };
1380
+ readonly component: false;
1381
+ }, {
1382
+ readonly flags: {
1383
+ readonly treeTopology: true;
1384
+ readonly setTopology: true;
1385
+ };
1386
+ readonly component: false;
1387
+ }, {
1388
+ readonly flags: {
1389
+ readonly nodeTopology: false;
1390
+ readonly treeTopology: false;
1391
+ readonly setTopology: false;
1392
+ };
1393
+ readonly component: false;
1394
+ }];
1395
+ }>, readonly ["TreeTopology"]>, typeof PowerTopologyServer, {
1396
+ components: never[];
1397
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1398
+ readonly id: 144;
1399
+ readonly name: "ElectricalPowerMeasurement";
1400
+ readonly revision: 1;
1401
+ readonly features: {
1402
+ readonly directCurrent: import("@matter/main/types").BitFlag;
1403
+ readonly alternatingCurrent: import("@matter/main/types").BitFlag;
1404
+ readonly polyphasePower: import("@matter/main/types").BitFlag;
1405
+ readonly harmonics: import("@matter/main/types").BitFlag;
1406
+ readonly powerQuality: import("@matter/main/types").BitFlag;
1407
+ };
1408
+ readonly attributes: {
1409
+ readonly powerMode: import("@matter/main/types").Attribute<ElectricalPowerMeasurement.PowerMode, any>;
1410
+ readonly numberOfMeasurementTypes: import("@matter/main/types").FixedAttribute<number, any>;
1411
+ readonly accuracy: import("@matter/main/types").FixedAttribute<import("@matter/main/types").TypeFromFields<{
1412
+ measurementType: import("@matter/main/types").FieldType<import("@matter/main/types").MeasurementType>;
1413
+ measured: import("@matter/main/types").FieldType<boolean>;
1414
+ minMeasuredValue: import("@matter/main/types").FieldType<number | bigint>;
1415
+ maxMeasuredValue: import("@matter/main/types").FieldType<number | bigint>;
1416
+ accuracyRanges: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
1417
+ rangeMin: import("@matter/main/types").FieldType<number | bigint>;
1418
+ rangeMax: import("@matter/main/types").FieldType<number | bigint>;
1419
+ percentMax: import("@matter/main/types").OptionalFieldType<number>;
1420
+ percentMin: import("@matter/main/types").OptionalFieldType<number>;
1421
+ percentTypical: import("@matter/main/types").OptionalFieldType<number>;
1422
+ fixedMax: import("@matter/main/types").OptionalFieldType<number | bigint>;
1423
+ fixedMin: import("@matter/main/types").OptionalFieldType<number | bigint>;
1424
+ fixedTypical: import("@matter/main/types").OptionalFieldType<number | bigint>;
1425
+ }>[]>;
1426
+ }>[], any>;
1427
+ readonly ranges: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromFields<{
1428
+ measurementType: import("@matter/main/types").FieldType<import("@matter/main/types").MeasurementType>;
1429
+ min: import("@matter/main/types").FieldType<number | bigint>;
1430
+ max: import("@matter/main/types").FieldType<number | bigint>;
1431
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1432
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1433
+ minTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1434
+ maxTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1435
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1436
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1437
+ minSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1438
+ maxSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1439
+ }>[], any>;
1440
+ readonly voltage: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1441
+ readonly activeCurrent: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1442
+ readonly activePower: import("@matter/main/types").Attribute<number | bigint | null, any>;
1443
+ };
1444
+ readonly events: {
1445
+ readonly measurementPeriodRanges: import("@matter/main/types").OptionalEvent<import("@matter/main/types").TypeFromFields<{
1446
+ ranges: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
1447
+ measurementType: import("@matter/main/types").FieldType<import("@matter/main/types").MeasurementType>;
1448
+ min: import("@matter/main/types").FieldType<number | bigint>;
1449
+ max: import("@matter/main/types").FieldType<number | bigint>;
1450
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1451
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1452
+ minTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1453
+ maxTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1454
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1455
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1456
+ minSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1457
+ maxSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1458
+ }>[]>;
1459
+ }>, any>;
1460
+ };
1461
+ readonly extensions: readonly [{
1462
+ readonly flags: {
1463
+ readonly alternatingCurrent: true;
1464
+ };
1465
+ readonly component: {
1466
+ readonly attributes: {
1467
+ readonly reactiveCurrent: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1468
+ readonly apparentCurrent: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1469
+ readonly reactivePower: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1470
+ readonly apparentPower: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1471
+ readonly rmsVoltage: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1472
+ readonly rmsCurrent: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1473
+ readonly rmsPower: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1474
+ readonly frequency: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1475
+ readonly powerFactor: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1476
+ };
1477
+ };
1478
+ }, {
1479
+ readonly flags: {
1480
+ readonly harmonics: true;
1481
+ };
1482
+ readonly component: {
1483
+ readonly attributes: {
1484
+ readonly harmonicCurrents: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1485
+ order: import("@matter/main/types").FieldType<number>;
1486
+ measurement: import("@matter/main/types").FieldType<number | bigint | null>;
1487
+ }>[] | null, any>;
1488
+ };
1489
+ };
1490
+ }, {
1491
+ readonly flags: {
1492
+ readonly powerQuality: true;
1493
+ };
1494
+ readonly component: {
1495
+ readonly attributes: {
1496
+ readonly harmonicPhases: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1497
+ order: import("@matter/main/types").FieldType<number>;
1498
+ measurement: import("@matter/main/types").FieldType<number | bigint | null>;
1499
+ }>[] | null, any>;
1500
+ };
1501
+ };
1502
+ }, {
1503
+ readonly flags: {
1504
+ readonly polyphasePower: true;
1505
+ };
1506
+ readonly component: {
1507
+ readonly attributes: {
1508
+ readonly neutralCurrent: import("@matter/main/types").OptionalAttribute<number | bigint | null, any>;
1509
+ };
1510
+ };
1511
+ }, {
1512
+ readonly flags: {
1513
+ readonly polyphasePower: true;
1514
+ readonly alternatingCurrent: false;
1515
+ };
1516
+ readonly component: false;
1517
+ }, {
1518
+ readonly flags: {
1519
+ readonly harmonics: true;
1520
+ readonly alternatingCurrent: false;
1521
+ };
1522
+ readonly component: false;
1523
+ }, {
1524
+ readonly flags: {
1525
+ readonly powerQuality: true;
1526
+ readonly alternatingCurrent: false;
1527
+ };
1528
+ readonly component: false;
1529
+ }, {
1530
+ readonly flags: {
1531
+ readonly directCurrent: false;
1532
+ readonly alternatingCurrent: false;
1533
+ };
1534
+ readonly component: false;
1535
+ }];
1536
+ }>, readonly ["AlternatingCurrent"]>, typeof ElectricalPowerMeasurementServer, {
1537
+ components: never[];
1538
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1539
+ readonly id: 145;
1540
+ readonly name: "ElectricalEnergyMeasurement";
1541
+ readonly revision: 1;
1542
+ readonly features: {
1543
+ readonly importedEnergy: import("@matter/main/types").BitFlag;
1544
+ readonly exportedEnergy: import("@matter/main/types").BitFlag;
1545
+ readonly cumulativeEnergy: import("@matter/main/types").BitFlag;
1546
+ readonly periodicEnergy: import("@matter/main/types").BitFlag;
1547
+ };
1548
+ readonly attributes: {
1549
+ readonly accuracy: import("@matter/main/types").FixedAttribute<import("@matter/main/types").TypeFromFields<{
1550
+ measurementType: import("@matter/main/types").FieldType<import("@matter/main/types").MeasurementType>;
1551
+ measured: import("@matter/main/types").FieldType<boolean>;
1552
+ minMeasuredValue: import("@matter/main/types").FieldType<number | bigint>;
1553
+ maxMeasuredValue: import("@matter/main/types").FieldType<number | bigint>;
1554
+ accuracyRanges: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
1555
+ rangeMin: import("@matter/main/types").FieldType<number | bigint>;
1556
+ rangeMax: import("@matter/main/types").FieldType<number | bigint>;
1557
+ percentMax: import("@matter/main/types").OptionalFieldType<number>;
1558
+ percentMin: import("@matter/main/types").OptionalFieldType<number>;
1559
+ percentTypical: import("@matter/main/types").OptionalFieldType<number>;
1560
+ fixedMax: import("@matter/main/types").OptionalFieldType<number | bigint>;
1561
+ fixedMin: import("@matter/main/types").OptionalFieldType<number | bigint>;
1562
+ fixedTypical: import("@matter/main/types").OptionalFieldType<number | bigint>;
1563
+ }>[]>;
1564
+ }>, any>;
1565
+ };
1566
+ readonly extensions: readonly [{
1567
+ readonly flags: {
1568
+ readonly importedEnergy: true;
1569
+ readonly cumulativeEnergy: true;
1570
+ };
1571
+ readonly component: {
1572
+ readonly attributes: {
1573
+ readonly cumulativeEnergyImported: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1574
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1575
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1576
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1577
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1578
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1579
+ }> | null, any>;
1580
+ };
1581
+ };
1582
+ }, {
1583
+ readonly flags: {
1584
+ readonly exportedEnergy: true;
1585
+ readonly cumulativeEnergy: true;
1586
+ };
1587
+ readonly component: {
1588
+ readonly attributes: {
1589
+ readonly cumulativeEnergyExported: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1590
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1591
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1592
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1593
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1594
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1595
+ }> | null, any>;
1596
+ };
1597
+ };
1598
+ }, {
1599
+ readonly flags: {
1600
+ readonly importedEnergy: true;
1601
+ readonly periodicEnergy: true;
1602
+ };
1603
+ readonly component: {
1604
+ readonly attributes: {
1605
+ readonly periodicEnergyImported: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1606
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1607
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1608
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1609
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1610
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1611
+ }> | null, any>;
1612
+ };
1613
+ };
1614
+ }, {
1615
+ readonly flags: {
1616
+ readonly exportedEnergy: true;
1617
+ readonly periodicEnergy: true;
1618
+ };
1619
+ readonly component: {
1620
+ readonly attributes: {
1621
+ readonly periodicEnergyExported: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
1622
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1623
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1624
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1625
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1626
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1627
+ }> | null, any>;
1628
+ };
1629
+ };
1630
+ }, {
1631
+ readonly flags: {
1632
+ readonly cumulativeEnergy: true;
1633
+ };
1634
+ readonly component: {
1635
+ readonly attributes: {
1636
+ readonly cumulativeEnergyReset: import("@matter/main/types").OptionalAttribute<import("@matter/main/types").TypeFromFields<{
1637
+ importedResetTimestamp: import("@matter/main/types").OptionalFieldType<number | null>;
1638
+ exportedResetTimestamp: import("@matter/main/types").OptionalFieldType<number | null>;
1639
+ importedResetSystime: import("@matter/main/types").OptionalFieldType<number | bigint | null>;
1640
+ exportedResetSystime: import("@matter/main/types").OptionalFieldType<number | bigint | null>;
1641
+ }> | null, any>;
1642
+ };
1643
+ readonly events: {
1644
+ readonly cumulativeEnergyMeasured: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1645
+ energyImported: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
1646
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1647
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1648
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1649
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1650
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1651
+ }>>;
1652
+ energyExported: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
1653
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1654
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1655
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1656
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1657
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1658
+ }>>;
1659
+ }>, any>;
1660
+ };
1661
+ };
1662
+ }, {
1663
+ readonly flags: {
1664
+ readonly periodicEnergy: true;
1665
+ };
1666
+ readonly component: {
1667
+ readonly events: {
1668
+ readonly periodicEnergyMeasured: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
1669
+ energyImported: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
1670
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1671
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1672
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1673
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1674
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1675
+ }>>;
1676
+ energyExported: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
1677
+ energy: import("@matter/main/types").FieldType<number | bigint>;
1678
+ startTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1679
+ endTimestamp: import("@matter/main/types").OptionalFieldType<number>;
1680
+ startSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1681
+ endSystime: import("@matter/main/types").OptionalFieldType<number | bigint>;
1682
+ }>>;
1683
+ }>, any>;
1684
+ };
1685
+ };
1686
+ }, {
1687
+ readonly flags: {
1688
+ readonly importedEnergy: false;
1689
+ readonly exportedEnergy: false;
1690
+ };
1691
+ readonly component: false;
1692
+ }, {
1693
+ readonly flags: {
1694
+ readonly cumulativeEnergy: false;
1695
+ readonly periodicEnergy: false;
1696
+ };
1697
+ readonly component: false;
1698
+ }];
1699
+ }>, readonly ["ImportedEnergy", "ExportedEnergy", "CumulativeEnergy"]>, typeof ElectricalEnergyMeasurementServer, {
1700
+ components: never[];
1701
+ }> | typeof TemperatureMeasurementServer | typeof RelativeHumidityMeasurementServer | typeof PressureMeasurementServer | typeof FlowMeasurementServer | typeof IlluminanceMeasurementServer | typeof OccupancySensingServer | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<AirQuality.Cluster, readonly ["Fair", "Moderate", "VeryPoor", "ExtremelyPoor"]>, typeof AirQualityServer, {
1702
+ components: never[];
1703
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1704
+ readonly id: 1036;
1705
+ readonly name: "CarbonMonoxideConcentrationMeasurement";
1706
+ readonly features: {
1707
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
1708
+ readonly levelIndication: import("@matter/main/types").BitFlag;
1709
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
1710
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
1711
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
1712
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
1713
+ };
1714
+ readonly revision: 3;
1715
+ readonly attributes: {
1716
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
1717
+ };
1718
+ readonly extensions: readonly [{
1719
+ readonly flags: {
1720
+ readonly numericMeasurement: true;
1721
+ };
1722
+ readonly component: {
1723
+ readonly attributes: {
1724
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
1725
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1726
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1727
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
1728
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
1729
+ };
1730
+ };
1731
+ }, {
1732
+ readonly flags: {
1733
+ readonly peakMeasurement: true;
1734
+ };
1735
+ readonly component: {
1736
+ readonly attributes: {
1737
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1738
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1739
+ };
1740
+ };
1741
+ }, {
1742
+ readonly flags: {
1743
+ readonly averageMeasurement: true;
1744
+ };
1745
+ readonly component: {
1746
+ readonly attributes: {
1747
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1748
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1749
+ };
1750
+ };
1751
+ }, {
1752
+ readonly flags: {
1753
+ readonly levelIndication: true;
1754
+ };
1755
+ readonly component: {
1756
+ readonly attributes: {
1757
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
1758
+ };
1759
+ };
1760
+ }, {
1761
+ readonly flags: {
1762
+ readonly mediumLevel: true;
1763
+ readonly levelIndication: false;
1764
+ };
1765
+ readonly component: false;
1766
+ }, {
1767
+ readonly flags: {
1768
+ readonly criticalLevel: true;
1769
+ readonly levelIndication: false;
1770
+ };
1771
+ readonly component: false;
1772
+ }, {
1773
+ readonly flags: {
1774
+ readonly peakMeasurement: true;
1775
+ readonly numericMeasurement: false;
1776
+ };
1777
+ readonly component: false;
1778
+ }, {
1779
+ readonly flags: {
1780
+ readonly averageMeasurement: true;
1781
+ readonly numericMeasurement: false;
1782
+ };
1783
+ readonly component: false;
1784
+ }, {
1785
+ readonly flags: {
1786
+ readonly numericMeasurement: false;
1787
+ readonly levelIndication: false;
1788
+ };
1789
+ readonly component: false;
1790
+ }];
1791
+ }>, readonly ["NumericMeasurement"]>, typeof CarbonMonoxideConcentrationMeasurementServer, {
1792
+ components: never[];
1793
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1794
+ readonly id: 1037;
1795
+ readonly name: "CarbonDioxideConcentrationMeasurement";
1796
+ readonly features: {
1797
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
1798
+ readonly levelIndication: import("@matter/main/types").BitFlag;
1799
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
1800
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
1801
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
1802
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
1803
+ };
1804
+ readonly revision: 3;
1805
+ readonly attributes: {
1806
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
1807
+ };
1808
+ readonly extensions: readonly [{
1809
+ readonly flags: {
1810
+ readonly numericMeasurement: true;
1811
+ };
1812
+ readonly component: {
1813
+ readonly attributes: {
1814
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
1815
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1816
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1817
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
1818
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
1819
+ };
1820
+ };
1821
+ }, {
1822
+ readonly flags: {
1823
+ readonly peakMeasurement: true;
1824
+ };
1825
+ readonly component: {
1826
+ readonly attributes: {
1827
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1828
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1829
+ };
1830
+ };
1831
+ }, {
1832
+ readonly flags: {
1833
+ readonly averageMeasurement: true;
1834
+ };
1835
+ readonly component: {
1836
+ readonly attributes: {
1837
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1838
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1839
+ };
1840
+ };
1841
+ }, {
1842
+ readonly flags: {
1843
+ readonly levelIndication: true;
1844
+ };
1845
+ readonly component: {
1846
+ readonly attributes: {
1847
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
1848
+ };
1849
+ };
1850
+ }, {
1851
+ readonly flags: {
1852
+ readonly mediumLevel: true;
1853
+ readonly levelIndication: false;
1854
+ };
1855
+ readonly component: false;
1856
+ }, {
1857
+ readonly flags: {
1858
+ readonly criticalLevel: true;
1859
+ readonly levelIndication: false;
1860
+ };
1861
+ readonly component: false;
1862
+ }, {
1863
+ readonly flags: {
1864
+ readonly peakMeasurement: true;
1865
+ readonly numericMeasurement: false;
1866
+ };
1867
+ readonly component: false;
1868
+ }, {
1869
+ readonly flags: {
1870
+ readonly averageMeasurement: true;
1871
+ readonly numericMeasurement: false;
1872
+ };
1873
+ readonly component: false;
1874
+ }, {
1875
+ readonly flags: {
1876
+ readonly numericMeasurement: false;
1877
+ readonly levelIndication: false;
1878
+ };
1879
+ readonly component: false;
1880
+ }];
1881
+ }>, readonly ["NumericMeasurement"]>, typeof CarbonDioxideConcentrationMeasurementServer, {
1882
+ components: never[];
1883
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1884
+ readonly id: 1043;
1885
+ readonly name: "NitrogenDioxideConcentrationMeasurement";
1886
+ readonly features: {
1887
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
1888
+ readonly levelIndication: import("@matter/main/types").BitFlag;
1889
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
1890
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
1891
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
1892
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
1893
+ };
1894
+ readonly revision: 3;
1895
+ readonly attributes: {
1896
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
1897
+ };
1898
+ readonly extensions: readonly [{
1899
+ readonly flags: {
1900
+ readonly numericMeasurement: true;
1901
+ };
1902
+ readonly component: {
1903
+ readonly attributes: {
1904
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
1905
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1906
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1907
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
1908
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
1909
+ };
1910
+ };
1911
+ }, {
1912
+ readonly flags: {
1913
+ readonly peakMeasurement: true;
1914
+ };
1915
+ readonly component: {
1916
+ readonly attributes: {
1917
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1918
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1919
+ };
1920
+ };
1921
+ }, {
1922
+ readonly flags: {
1923
+ readonly averageMeasurement: true;
1924
+ };
1925
+ readonly component: {
1926
+ readonly attributes: {
1927
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1928
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
1929
+ };
1930
+ };
1931
+ }, {
1932
+ readonly flags: {
1933
+ readonly levelIndication: true;
1934
+ };
1935
+ readonly component: {
1936
+ readonly attributes: {
1937
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
1938
+ };
1939
+ };
1940
+ }, {
1941
+ readonly flags: {
1942
+ readonly mediumLevel: true;
1943
+ readonly levelIndication: false;
1944
+ };
1945
+ readonly component: false;
1946
+ }, {
1947
+ readonly flags: {
1948
+ readonly criticalLevel: true;
1949
+ readonly levelIndication: false;
1950
+ };
1951
+ readonly component: false;
1952
+ }, {
1953
+ readonly flags: {
1954
+ readonly peakMeasurement: true;
1955
+ readonly numericMeasurement: false;
1956
+ };
1957
+ readonly component: false;
1958
+ }, {
1959
+ readonly flags: {
1960
+ readonly averageMeasurement: true;
1961
+ readonly numericMeasurement: false;
1962
+ };
1963
+ readonly component: false;
1964
+ }, {
1965
+ readonly flags: {
1966
+ readonly numericMeasurement: false;
1967
+ readonly levelIndication: false;
1968
+ };
1969
+ readonly component: false;
1970
+ }];
1971
+ }>, readonly ["NumericMeasurement"]>, typeof NitrogenDioxideConcentrationMeasurementServer, {
1972
+ components: never[];
1973
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
1974
+ readonly id: 1045;
1975
+ readonly name: "OzoneConcentrationMeasurement";
1976
+ readonly features: {
1977
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
1978
+ readonly levelIndication: import("@matter/main/types").BitFlag;
1979
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
1980
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
1981
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
1982
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
1983
+ };
1984
+ readonly revision: 3;
1985
+ readonly attributes: {
1986
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
1987
+ };
1988
+ readonly extensions: readonly [{
1989
+ readonly flags: {
1990
+ readonly numericMeasurement: true;
1991
+ };
1992
+ readonly component: {
1993
+ readonly attributes: {
1994
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
1995
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1996
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
1997
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
1998
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
1999
+ };
2000
+ };
2001
+ }, {
2002
+ readonly flags: {
2003
+ readonly peakMeasurement: true;
2004
+ };
2005
+ readonly component: {
2006
+ readonly attributes: {
2007
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2008
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2009
+ };
2010
+ };
2011
+ }, {
2012
+ readonly flags: {
2013
+ readonly averageMeasurement: true;
2014
+ };
2015
+ readonly component: {
2016
+ readonly attributes: {
2017
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2018
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2019
+ };
2020
+ };
2021
+ }, {
2022
+ readonly flags: {
2023
+ readonly levelIndication: true;
2024
+ };
2025
+ readonly component: {
2026
+ readonly attributes: {
2027
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2028
+ };
2029
+ };
2030
+ }, {
2031
+ readonly flags: {
2032
+ readonly mediumLevel: true;
2033
+ readonly levelIndication: false;
2034
+ };
2035
+ readonly component: false;
2036
+ }, {
2037
+ readonly flags: {
2038
+ readonly criticalLevel: true;
2039
+ readonly levelIndication: false;
2040
+ };
2041
+ readonly component: false;
2042
+ }, {
2043
+ readonly flags: {
2044
+ readonly peakMeasurement: true;
2045
+ readonly numericMeasurement: false;
2046
+ };
2047
+ readonly component: false;
2048
+ }, {
2049
+ readonly flags: {
2050
+ readonly averageMeasurement: true;
2051
+ readonly numericMeasurement: false;
2052
+ };
2053
+ readonly component: false;
2054
+ }, {
2055
+ readonly flags: {
2056
+ readonly numericMeasurement: false;
2057
+ readonly levelIndication: false;
2058
+ };
2059
+ readonly component: false;
2060
+ }];
2061
+ }>, readonly ["NumericMeasurement"]>, typeof OzoneConcentrationMeasurementServer, {
2062
+ components: never[];
2063
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2064
+ readonly id: 1067;
2065
+ readonly name: "FormaldehydeConcentrationMeasurement";
2066
+ readonly features: {
2067
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2068
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2069
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2070
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2071
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2072
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2073
+ };
2074
+ readonly revision: 3;
2075
+ readonly attributes: {
2076
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2077
+ };
2078
+ readonly extensions: readonly [{
2079
+ readonly flags: {
2080
+ readonly numericMeasurement: true;
2081
+ };
2082
+ readonly component: {
2083
+ readonly attributes: {
2084
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2085
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2086
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2087
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2088
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2089
+ };
2090
+ };
2091
+ }, {
2092
+ readonly flags: {
2093
+ readonly peakMeasurement: true;
2094
+ };
2095
+ readonly component: {
2096
+ readonly attributes: {
2097
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2098
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2099
+ };
2100
+ };
2101
+ }, {
2102
+ readonly flags: {
2103
+ readonly averageMeasurement: true;
2104
+ };
2105
+ readonly component: {
2106
+ readonly attributes: {
2107
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2108
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2109
+ };
2110
+ };
2111
+ }, {
2112
+ readonly flags: {
2113
+ readonly levelIndication: true;
2114
+ };
2115
+ readonly component: {
2116
+ readonly attributes: {
2117
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2118
+ };
2119
+ };
2120
+ }, {
2121
+ readonly flags: {
2122
+ readonly mediumLevel: true;
2123
+ readonly levelIndication: false;
2124
+ };
2125
+ readonly component: false;
2126
+ }, {
2127
+ readonly flags: {
2128
+ readonly criticalLevel: true;
2129
+ readonly levelIndication: false;
2130
+ };
2131
+ readonly component: false;
2132
+ }, {
2133
+ readonly flags: {
2134
+ readonly peakMeasurement: true;
2135
+ readonly numericMeasurement: false;
2136
+ };
2137
+ readonly component: false;
2138
+ }, {
2139
+ readonly flags: {
2140
+ readonly averageMeasurement: true;
2141
+ readonly numericMeasurement: false;
2142
+ };
2143
+ readonly component: false;
2144
+ }, {
2145
+ readonly flags: {
2146
+ readonly numericMeasurement: false;
2147
+ readonly levelIndication: false;
2148
+ };
2149
+ readonly component: false;
2150
+ }];
2151
+ }>, readonly ["NumericMeasurement"]>, typeof FormaldehydeConcentrationMeasurementServer, {
2152
+ components: never[];
2153
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2154
+ readonly id: 1068;
2155
+ readonly name: "Pm1ConcentrationMeasurement";
2156
+ readonly features: {
2157
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2158
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2159
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2160
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2161
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2162
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2163
+ };
2164
+ readonly revision: 3;
2165
+ readonly attributes: {
2166
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2167
+ };
2168
+ readonly extensions: readonly [{
2169
+ readonly flags: {
2170
+ readonly numericMeasurement: true;
2171
+ };
2172
+ readonly component: {
2173
+ readonly attributes: {
2174
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2175
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2176
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2177
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2178
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2179
+ };
2180
+ };
2181
+ }, {
2182
+ readonly flags: {
2183
+ readonly peakMeasurement: true;
2184
+ };
2185
+ readonly component: {
2186
+ readonly attributes: {
2187
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2188
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2189
+ };
2190
+ };
2191
+ }, {
2192
+ readonly flags: {
2193
+ readonly averageMeasurement: true;
2194
+ };
2195
+ readonly component: {
2196
+ readonly attributes: {
2197
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2198
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2199
+ };
2200
+ };
2201
+ }, {
2202
+ readonly flags: {
2203
+ readonly levelIndication: true;
2204
+ };
2205
+ readonly component: {
2206
+ readonly attributes: {
2207
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2208
+ };
2209
+ };
2210
+ }, {
2211
+ readonly flags: {
2212
+ readonly mediumLevel: true;
2213
+ readonly levelIndication: false;
2214
+ };
2215
+ readonly component: false;
2216
+ }, {
2217
+ readonly flags: {
2218
+ readonly criticalLevel: true;
2219
+ readonly levelIndication: false;
2220
+ };
2221
+ readonly component: false;
2222
+ }, {
2223
+ readonly flags: {
2224
+ readonly peakMeasurement: true;
2225
+ readonly numericMeasurement: false;
2226
+ };
2227
+ readonly component: false;
2228
+ }, {
2229
+ readonly flags: {
2230
+ readonly averageMeasurement: true;
2231
+ readonly numericMeasurement: false;
2232
+ };
2233
+ readonly component: false;
2234
+ }, {
2235
+ readonly flags: {
2236
+ readonly numericMeasurement: false;
2237
+ readonly levelIndication: false;
2238
+ };
2239
+ readonly component: false;
2240
+ }];
2241
+ }>, readonly ["NumericMeasurement"]>, typeof Pm1ConcentrationMeasurementServer, {
2242
+ components: never[];
2243
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2244
+ readonly id: 1066;
2245
+ readonly name: "Pm25ConcentrationMeasurement";
2246
+ readonly features: {
2247
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2248
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2249
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2250
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2251
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2252
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2253
+ };
2254
+ readonly revision: 3;
2255
+ readonly attributes: {
2256
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2257
+ };
2258
+ readonly extensions: readonly [{
2259
+ readonly flags: {
2260
+ readonly numericMeasurement: true;
2261
+ };
2262
+ readonly component: {
2263
+ readonly attributes: {
2264
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2265
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2266
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2267
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2268
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2269
+ };
2270
+ };
2271
+ }, {
2272
+ readonly flags: {
2273
+ readonly peakMeasurement: true;
2274
+ };
2275
+ readonly component: {
2276
+ readonly attributes: {
2277
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2278
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2279
+ };
2280
+ };
2281
+ }, {
2282
+ readonly flags: {
2283
+ readonly averageMeasurement: true;
2284
+ };
2285
+ readonly component: {
2286
+ readonly attributes: {
2287
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2288
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2289
+ };
2290
+ };
2291
+ }, {
2292
+ readonly flags: {
2293
+ readonly levelIndication: true;
2294
+ };
2295
+ readonly component: {
2296
+ readonly attributes: {
2297
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2298
+ };
2299
+ };
2300
+ }, {
2301
+ readonly flags: {
2302
+ readonly mediumLevel: true;
2303
+ readonly levelIndication: false;
2304
+ };
2305
+ readonly component: false;
2306
+ }, {
2307
+ readonly flags: {
2308
+ readonly criticalLevel: true;
2309
+ readonly levelIndication: false;
2310
+ };
2311
+ readonly component: false;
2312
+ }, {
2313
+ readonly flags: {
2314
+ readonly peakMeasurement: true;
2315
+ readonly numericMeasurement: false;
2316
+ };
2317
+ readonly component: false;
2318
+ }, {
2319
+ readonly flags: {
2320
+ readonly averageMeasurement: true;
2321
+ readonly numericMeasurement: false;
2322
+ };
2323
+ readonly component: false;
2324
+ }, {
2325
+ readonly flags: {
2326
+ readonly numericMeasurement: false;
2327
+ readonly levelIndication: false;
2328
+ };
2329
+ readonly component: false;
2330
+ }];
2331
+ }>, readonly ["NumericMeasurement"]>, typeof Pm25ConcentrationMeasurementServer, {
2332
+ components: never[];
2333
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2334
+ readonly id: 1069;
2335
+ readonly name: "Pm10ConcentrationMeasurement";
2336
+ readonly features: {
2337
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2338
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2339
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2340
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2341
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2342
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2343
+ };
2344
+ readonly revision: 3;
2345
+ readonly attributes: {
2346
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2347
+ };
2348
+ readonly extensions: readonly [{
2349
+ readonly flags: {
2350
+ readonly numericMeasurement: true;
2351
+ };
2352
+ readonly component: {
2353
+ readonly attributes: {
2354
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2355
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2356
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2357
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2358
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2359
+ };
2360
+ };
2361
+ }, {
2362
+ readonly flags: {
2363
+ readonly peakMeasurement: true;
2364
+ };
2365
+ readonly component: {
2366
+ readonly attributes: {
2367
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2368
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2369
+ };
2370
+ };
2371
+ }, {
2372
+ readonly flags: {
2373
+ readonly averageMeasurement: true;
2374
+ };
2375
+ readonly component: {
2376
+ readonly attributes: {
2377
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2378
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2379
+ };
2380
+ };
2381
+ }, {
2382
+ readonly flags: {
2383
+ readonly levelIndication: true;
2384
+ };
2385
+ readonly component: {
2386
+ readonly attributes: {
2387
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2388
+ };
2389
+ };
2390
+ }, {
2391
+ readonly flags: {
2392
+ readonly mediumLevel: true;
2393
+ readonly levelIndication: false;
2394
+ };
2395
+ readonly component: false;
2396
+ }, {
2397
+ readonly flags: {
2398
+ readonly criticalLevel: true;
2399
+ readonly levelIndication: false;
2400
+ };
2401
+ readonly component: false;
2402
+ }, {
2403
+ readonly flags: {
2404
+ readonly peakMeasurement: true;
2405
+ readonly numericMeasurement: false;
2406
+ };
2407
+ readonly component: false;
2408
+ }, {
2409
+ readonly flags: {
2410
+ readonly averageMeasurement: true;
2411
+ readonly numericMeasurement: false;
2412
+ };
2413
+ readonly component: false;
2414
+ }, {
2415
+ readonly flags: {
2416
+ readonly numericMeasurement: false;
2417
+ readonly levelIndication: false;
2418
+ };
2419
+ readonly component: false;
2420
+ }];
2421
+ }>, readonly ["NumericMeasurement"]>, typeof Pm10ConcentrationMeasurementServer, {
2422
+ components: never[];
2423
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2424
+ readonly id: 1071;
2425
+ readonly name: "RadonConcentrationMeasurement";
2426
+ readonly features: {
2427
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2428
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2429
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2430
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2431
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2432
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2433
+ };
2434
+ readonly revision: 3;
2435
+ readonly attributes: {
2436
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2437
+ };
2438
+ readonly extensions: readonly [{
2439
+ readonly flags: {
2440
+ readonly numericMeasurement: true;
2441
+ };
2442
+ readonly component: {
2443
+ readonly attributes: {
2444
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2445
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2446
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2447
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2448
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2449
+ };
2450
+ };
2451
+ }, {
2452
+ readonly flags: {
2453
+ readonly peakMeasurement: true;
2454
+ };
2455
+ readonly component: {
2456
+ readonly attributes: {
2457
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2458
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2459
+ };
2460
+ };
2461
+ }, {
2462
+ readonly flags: {
2463
+ readonly averageMeasurement: true;
2464
+ };
2465
+ readonly component: {
2466
+ readonly attributes: {
2467
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2468
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2469
+ };
2470
+ };
2471
+ }, {
2472
+ readonly flags: {
2473
+ readonly levelIndication: true;
2474
+ };
2475
+ readonly component: {
2476
+ readonly attributes: {
2477
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2478
+ };
2479
+ };
2480
+ }, {
2481
+ readonly flags: {
2482
+ readonly mediumLevel: true;
2483
+ readonly levelIndication: false;
2484
+ };
2485
+ readonly component: false;
2486
+ }, {
2487
+ readonly flags: {
2488
+ readonly criticalLevel: true;
2489
+ readonly levelIndication: false;
2490
+ };
2491
+ readonly component: false;
2492
+ }, {
2493
+ readonly flags: {
2494
+ readonly peakMeasurement: true;
2495
+ readonly numericMeasurement: false;
2496
+ };
2497
+ readonly component: false;
2498
+ }, {
2499
+ readonly flags: {
2500
+ readonly averageMeasurement: true;
2501
+ readonly numericMeasurement: false;
2502
+ };
2503
+ readonly component: false;
2504
+ }, {
2505
+ readonly flags: {
2506
+ readonly numericMeasurement: false;
2507
+ readonly levelIndication: false;
2508
+ };
2509
+ readonly component: false;
2510
+ }];
2511
+ }>, readonly ["NumericMeasurement"]>, typeof RadonConcentrationMeasurementServer, {
2512
+ components: never[];
2513
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2514
+ readonly id: 1070;
2515
+ readonly name: "TotalVolatileOrganicCompoundsConcentrationMeasurement";
2516
+ readonly features: {
2517
+ readonly numericMeasurement: import("@matter/main/types").BitFlag;
2518
+ readonly levelIndication: import("@matter/main/types").BitFlag;
2519
+ readonly mediumLevel: import("@matter/main/types").BitFlag;
2520
+ readonly criticalLevel: import("@matter/main/types").BitFlag;
2521
+ readonly peakMeasurement: import("@matter/main/types").BitFlag;
2522
+ readonly averageMeasurement: import("@matter/main/types").BitFlag;
2523
+ };
2524
+ readonly revision: 3;
2525
+ readonly attributes: {
2526
+ readonly measurementMedium: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementMedium, any>;
2527
+ };
2528
+ readonly extensions: readonly [{
2529
+ readonly flags: {
2530
+ readonly numericMeasurement: true;
2531
+ };
2532
+ readonly component: {
2533
+ readonly attributes: {
2534
+ readonly measuredValue: import("@matter/main/types").Attribute<number | null, any>;
2535
+ readonly minMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2536
+ readonly maxMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2537
+ readonly uncertainty: import("@matter/main/types").OptionalAttribute<number, any>;
2538
+ readonly measurementUnit: import("@matter/main/types").FixedAttribute<import("@matter/main/clusters").ConcentrationMeasurement.MeasurementUnit, any>;
2539
+ };
2540
+ };
2541
+ }, {
2542
+ readonly flags: {
2543
+ readonly peakMeasurement: true;
2544
+ };
2545
+ readonly component: {
2546
+ readonly attributes: {
2547
+ readonly peakMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2548
+ readonly peakMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2549
+ };
2550
+ };
2551
+ }, {
2552
+ readonly flags: {
2553
+ readonly averageMeasurement: true;
2554
+ };
2555
+ readonly component: {
2556
+ readonly attributes: {
2557
+ readonly averageMeasuredValue: import("@matter/main/types").Attribute<number | null, any>;
2558
+ readonly averageMeasuredValueWindow: import("@matter/main/types").Attribute<number, any>;
2559
+ };
2560
+ };
2561
+ }, {
2562
+ readonly flags: {
2563
+ readonly levelIndication: true;
2564
+ };
2565
+ readonly component: {
2566
+ readonly attributes: {
2567
+ readonly levelValue: import("@matter/main/types").Attribute<import("@matter/main/clusters").ConcentrationMeasurement.LevelValue, any>;
2568
+ };
2569
+ };
2570
+ }, {
2571
+ readonly flags: {
2572
+ readonly mediumLevel: true;
2573
+ readonly levelIndication: false;
2574
+ };
2575
+ readonly component: false;
2576
+ }, {
2577
+ readonly flags: {
2578
+ readonly criticalLevel: true;
2579
+ readonly levelIndication: false;
2580
+ };
2581
+ readonly component: false;
2582
+ }, {
2583
+ readonly flags: {
2584
+ readonly peakMeasurement: true;
2585
+ readonly numericMeasurement: false;
2586
+ };
2587
+ readonly component: false;
2588
+ }, {
2589
+ readonly flags: {
2590
+ readonly averageMeasurement: true;
2591
+ readonly numericMeasurement: false;
2592
+ };
2593
+ readonly component: false;
2594
+ }, {
2595
+ readonly flags: {
2596
+ readonly numericMeasurement: false;
2597
+ readonly levelIndication: false;
2598
+ };
2599
+ readonly component: false;
2600
+ }];
2601
+ }>, readonly ["NumericMeasurement"]>, typeof TotalVolatileOrganicCompoundsConcentrationMeasurementServer, {
2602
+ components: never[];
2603
+ }> | ClusterBehavior.Type<import("@matter/main/types").ClusterComposer.WithFeatures<ClusterType.Of<{
2604
+ readonly id: 152;
2605
+ readonly name: "DeviceEnergyManagement";
2606
+ readonly revision: 4;
2607
+ readonly features: {
2608
+ readonly powerAdjustment: import("@matter/main/types").BitFlag;
2609
+ readonly powerForecastReporting: import("@matter/main/types").BitFlag;
2610
+ readonly stateForecastReporting: import("@matter/main/types").BitFlag;
2611
+ readonly startTimeAdjustment: import("@matter/main/types").BitFlag;
2612
+ readonly pausable: import("@matter/main/types").BitFlag;
2613
+ readonly forecastAdjustment: import("@matter/main/types").BitFlag;
2614
+ readonly constraintBasedAdjustment: import("@matter/main/types").BitFlag;
2615
+ };
2616
+ readonly attributes: {
2617
+ readonly esaType: import("@matter/main/types").FixedAttribute<DeviceEnergyManagement.EsaType, any>;
2618
+ readonly esaCanGenerate: import("@matter/main/types").FixedAttribute<boolean, any>;
2619
+ readonly esaState: import("@matter/main/types").Attribute<DeviceEnergyManagement.EsaState, any>;
2620
+ readonly absMinPower: import("@matter/main/types").Attribute<number | bigint, any>;
2621
+ readonly absMaxPower: import("@matter/main/types").Attribute<number | bigint, any>;
2622
+ };
2623
+ readonly extensions: readonly [{
2624
+ readonly flags: {
2625
+ readonly powerAdjustment: true;
2626
+ };
2627
+ readonly component: {
2628
+ readonly attributes: {
2629
+ readonly powerAdjustmentCapability: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
2630
+ powerAdjustCapability: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
2631
+ minPower: import("@matter/main/types").FieldType<number | bigint>;
2632
+ maxPower: import("@matter/main/types").FieldType<number | bigint>;
2633
+ minDuration: import("@matter/main/types").FieldType<number>;
2634
+ maxDuration: import("@matter/main/types").FieldType<number>;
2635
+ }>[] | null>;
2636
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.PowerAdjustReason>;
2637
+ }> | null, any>;
2638
+ };
2639
+ readonly commands: {
2640
+ readonly powerAdjustRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
2641
+ power: import("@matter/main/types").FieldType<number | bigint>;
2642
+ duration: import("@matter/main/types").FieldType<number>;
2643
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.AdjustmentCause>;
2644
+ }>, void, any>;
2645
+ readonly cancelPowerAdjustRequest: import("@matter/main/types").Command<void, void, any>;
2646
+ };
2647
+ readonly events: {
2648
+ readonly powerAdjustStart: import("@matter/main/types").Event<void, any>;
2649
+ readonly powerAdjustEnd: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
2650
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.Cause>;
2651
+ duration: import("@matter/main/types").FieldType<number>;
2652
+ energyUse: import("@matter/main/types").FieldType<number | bigint>;
2653
+ }>, any>;
2654
+ };
2655
+ };
2656
+ }, {
2657
+ readonly flags: {
2658
+ readonly powerForecastReporting: true;
2659
+ };
2660
+ readonly component: {
2661
+ readonly attributes: {
2662
+ readonly forecast: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
2663
+ forecastId: import("@matter/main/types").FieldType<number>;
2664
+ activeSlotNumber: import("@matter/main/types").FieldType<number | null>;
2665
+ startTime: import("@matter/main/types").FieldType<number>;
2666
+ endTime: import("@matter/main/types").FieldType<number>;
2667
+ earliestStartTime: import("@matter/main/types").OptionalFieldType<number | null>;
2668
+ latestEndTime: import("@matter/main/types").OptionalFieldType<number>;
2669
+ isPausable: import("@matter/main/types").FieldType<boolean>;
2670
+ slots: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
2671
+ minDuration: import("@matter/main/types").FieldType<number>;
2672
+ maxDuration: import("@matter/main/types").FieldType<number>;
2673
+ defaultDuration: import("@matter/main/types").FieldType<number>;
2674
+ elapsedSlotTime: import("@matter/main/types").FieldType<number>;
2675
+ remainingSlotTime: import("@matter/main/types").FieldType<number>;
2676
+ slotIsPausable: import("@matter/main/types").OptionalFieldType<boolean>;
2677
+ minPauseDuration: import("@matter/main/types").OptionalFieldType<number>;
2678
+ maxPauseDuration: import("@matter/main/types").OptionalFieldType<number>;
2679
+ manufacturerEsaState: import("@matter/main/types").OptionalFieldType<number>;
2680
+ nominalPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2681
+ minPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2682
+ maxPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2683
+ nominalEnergy: import("@matter/main/types").OptionalFieldType<number | bigint>;
2684
+ costs: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
2685
+ costType: import("@matter/main/types").FieldType<DeviceEnergyManagement.CostType>;
2686
+ value: import("@matter/main/types").FieldType<number>;
2687
+ decimalPoints: import("@matter/main/types").FieldType<number>;
2688
+ currency: import("@matter/main/types").OptionalFieldType<number>;
2689
+ }>[]>;
2690
+ minPowerAdjustment: import("@matter/main/types").OptionalFieldType<number | bigint>;
2691
+ maxPowerAdjustment: import("@matter/main/types").OptionalFieldType<number | bigint>;
2692
+ minDurationAdjustment: import("@matter/main/types").OptionalFieldType<number>;
2693
+ maxDurationAdjustment: import("@matter/main/types").OptionalFieldType<number>;
2694
+ }>[]>;
2695
+ forecastUpdateReason: import("@matter/main/types").FieldType<DeviceEnergyManagement.ForecastUpdateReason>;
2696
+ }> | null, any>;
2697
+ };
2698
+ };
2699
+ }, {
2700
+ readonly flags: {
2701
+ readonly stateForecastReporting: true;
2702
+ };
2703
+ readonly component: {
2704
+ readonly attributes: {
2705
+ readonly forecast: import("@matter/main/types").Attribute<import("@matter/main/types").TypeFromFields<{
2706
+ forecastId: import("@matter/main/types").FieldType<number>;
2707
+ activeSlotNumber: import("@matter/main/types").FieldType<number | null>;
2708
+ startTime: import("@matter/main/types").FieldType<number>;
2709
+ endTime: import("@matter/main/types").FieldType<number>;
2710
+ earliestStartTime: import("@matter/main/types").OptionalFieldType<number | null>;
2711
+ latestEndTime: import("@matter/main/types").OptionalFieldType<number>;
2712
+ isPausable: import("@matter/main/types").FieldType<boolean>;
2713
+ slots: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
2714
+ minDuration: import("@matter/main/types").FieldType<number>;
2715
+ maxDuration: import("@matter/main/types").FieldType<number>;
2716
+ defaultDuration: import("@matter/main/types").FieldType<number>;
2717
+ elapsedSlotTime: import("@matter/main/types").FieldType<number>;
2718
+ remainingSlotTime: import("@matter/main/types").FieldType<number>;
2719
+ slotIsPausable: import("@matter/main/types").OptionalFieldType<boolean>;
2720
+ minPauseDuration: import("@matter/main/types").OptionalFieldType<number>;
2721
+ maxPauseDuration: import("@matter/main/types").OptionalFieldType<number>;
2722
+ manufacturerEsaState: import("@matter/main/types").OptionalFieldType<number>;
2723
+ nominalPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2724
+ minPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2725
+ maxPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2726
+ nominalEnergy: import("@matter/main/types").OptionalFieldType<number | bigint>;
2727
+ costs: import("@matter/main/types").OptionalFieldType<import("@matter/main/types").TypeFromFields<{
2728
+ costType: import("@matter/main/types").FieldType<DeviceEnergyManagement.CostType>;
2729
+ value: import("@matter/main/types").FieldType<number>;
2730
+ decimalPoints: import("@matter/main/types").FieldType<number>;
2731
+ currency: import("@matter/main/types").OptionalFieldType<number>;
2732
+ }>[]>;
2733
+ minPowerAdjustment: import("@matter/main/types").OptionalFieldType<number | bigint>;
2734
+ maxPowerAdjustment: import("@matter/main/types").OptionalFieldType<number | bigint>;
2735
+ minDurationAdjustment: import("@matter/main/types").OptionalFieldType<number>;
2736
+ maxDurationAdjustment: import("@matter/main/types").OptionalFieldType<number>;
2737
+ }>[]>;
2738
+ forecastUpdateReason: import("@matter/main/types").FieldType<DeviceEnergyManagement.ForecastUpdateReason>;
2739
+ }> | null, any>;
2740
+ };
2741
+ };
2742
+ }, {
2743
+ readonly flags: {
2744
+ readonly powerAdjustment: true;
2745
+ };
2746
+ readonly component: {
2747
+ readonly attributes: {
2748
+ readonly optOutState: import("@matter/main/types").Attribute<DeviceEnergyManagement.OptOutState, any>;
2749
+ };
2750
+ };
2751
+ }, {
2752
+ readonly flags: {
2753
+ readonly startTimeAdjustment: true;
2754
+ };
2755
+ readonly component: {
2756
+ readonly attributes: {
2757
+ readonly optOutState: import("@matter/main/types").Attribute<DeviceEnergyManagement.OptOutState, any>;
2758
+ };
2759
+ };
2760
+ }, {
2761
+ readonly flags: {
2762
+ readonly pausable: true;
2763
+ };
2764
+ readonly component: {
2765
+ readonly attributes: {
2766
+ readonly optOutState: import("@matter/main/types").Attribute<DeviceEnergyManagement.OptOutState, any>;
2767
+ };
2768
+ };
2769
+ }, {
2770
+ readonly flags: {
2771
+ readonly forecastAdjustment: true;
2772
+ };
2773
+ readonly component: {
2774
+ readonly attributes: {
2775
+ readonly optOutState: import("@matter/main/types").Attribute<DeviceEnergyManagement.OptOutState, any>;
2776
+ };
2777
+ };
2778
+ }, {
2779
+ readonly flags: {
2780
+ readonly constraintBasedAdjustment: true;
2781
+ };
2782
+ readonly component: {
2783
+ readonly attributes: {
2784
+ readonly optOutState: import("@matter/main/types").Attribute<DeviceEnergyManagement.OptOutState, any>;
2785
+ };
2786
+ };
2787
+ }, {
2788
+ readonly flags: {
2789
+ readonly pausable: true;
2790
+ };
2791
+ readonly component: {
2792
+ readonly commands: {
2793
+ readonly pauseRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
2794
+ duration: import("@matter/main/types").FieldType<number>;
2795
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.AdjustmentCause>;
2796
+ }>, void, any>;
2797
+ readonly resumeRequest: import("@matter/main/types").Command<void, void, any>;
2798
+ };
2799
+ readonly events: {
2800
+ readonly paused: import("@matter/main/types").Event<void, any>;
2801
+ readonly resumed: import("@matter/main/types").Event<import("@matter/main/types").TypeFromFields<{
2802
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.Cause>;
2803
+ }>, any>;
2804
+ };
2805
+ };
2806
+ }, {
2807
+ readonly flags: {
2808
+ readonly startTimeAdjustment: true;
2809
+ };
2810
+ readonly component: {
2811
+ readonly commands: {
2812
+ readonly startTimeAdjustRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
2813
+ requestedStartTime: import("@matter/main/types").FieldType<number>;
2814
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.AdjustmentCause>;
2815
+ }>, void, any>;
2816
+ };
2817
+ };
2818
+ }, {
2819
+ readonly flags: {
2820
+ readonly forecastAdjustment: true;
2821
+ };
2822
+ readonly component: {
2823
+ readonly commands: {
2824
+ readonly modifyForecastRequest: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
2825
+ forecastId: import("@matter/main/types").FieldType<number>;
2826
+ slotAdjustments: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
2827
+ slotIndex: import("@matter/main/types").FieldType<number>;
2828
+ nominalPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2829
+ duration: import("@matter/main/types").FieldType<number>;
2830
+ }>[]>;
2831
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.AdjustmentCause>;
2832
+ }>, void, any>;
2833
+ };
2834
+ };
2835
+ }, {
2836
+ readonly flags: {
2837
+ readonly constraintBasedAdjustment: true;
2838
+ };
2839
+ readonly component: {
2840
+ readonly commands: {
2841
+ readonly requestConstraintBasedForecast: import("@matter/main/types").Command<import("@matter/main/types").TypeFromFields<{
2842
+ constraints: import("@matter/main/types").FieldType<import("@matter/main/types").TypeFromFields<{
2843
+ startTime: import("@matter/main/types").FieldType<number>;
2844
+ duration: import("@matter/main/types").FieldType<number>;
2845
+ nominalPower: import("@matter/main/types").OptionalFieldType<number | bigint>;
2846
+ maximumEnergy: import("@matter/main/types").OptionalFieldType<number | bigint>;
2847
+ loadControl: import("@matter/main/types").OptionalFieldType<number>;
2848
+ }>[]>;
2849
+ cause: import("@matter/main/types").FieldType<DeviceEnergyManagement.AdjustmentCause>;
2850
+ }>, void, any>;
2851
+ };
2852
+ };
2853
+ }, {
2854
+ readonly flags: {
2855
+ readonly startTimeAdjustment: true;
2856
+ };
2857
+ readonly component: {
2858
+ readonly commands: {
2859
+ readonly cancelRequest: import("@matter/main/types").Command<void, void, any>;
2860
+ };
2861
+ };
2862
+ }, {
2863
+ readonly flags: {
2864
+ readonly forecastAdjustment: true;
2865
+ };
2866
+ readonly component: {
2867
+ readonly commands: {
2868
+ readonly cancelRequest: import("@matter/main/types").Command<void, void, any>;
2869
+ };
2870
+ };
2871
+ }, {
2872
+ readonly flags: {
2873
+ readonly constraintBasedAdjustment: true;
2874
+ };
2875
+ readonly component: {
2876
+ readonly commands: {
2877
+ readonly cancelRequest: import("@matter/main/types").Command<void, void, any>;
2878
+ };
2879
+ };
2880
+ }, {
2881
+ readonly flags: {
2882
+ readonly staTrue: true;
2883
+ readonly pauTrue: false;
2884
+ readonly faTrue: false;
2885
+ readonly conTrue: false;
2886
+ };
2887
+ readonly component: false;
2888
+ }, {
2889
+ readonly flags: {
2890
+ readonly powerForecastReporting: true;
2891
+ readonly stateForecastReporting: true;
2892
+ };
2893
+ readonly component: false;
2894
+ }, {
2895
+ readonly flags: {
2896
+ readonly powerForecastReporting: false;
2897
+ readonly stateForecastReporting: false;
2898
+ };
2899
+ readonly component: false;
2900
+ }];
2901
+ }>, readonly ["PowerForecastReporting"]>, typeof DeviceEnergyManagementServer, import("@matter/node/behaviors/device-energy-management").DeviceEnergyManagementInterface>;
2902
+ /**
2903
+ * Maps a ClusterId to a Behavior.Type for client clusters.
2904
+ *
2905
+ * @param {ClusterId} _clusterId - The ClusterId to map.
2906
+ */
2907
+ export declare function getBehaviourTypeFromClusterClientId(_clusterId: ClusterId): void;
2908
+ /**
2909
+ * Retrieves the Behavior.Type for a given cluster from the endpoint's supported behaviors.
2910
+ *
2911
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to retrieve the behavior from.
2912
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to retrieve the behavior for.
2913
+ * @returns {Behavior.Type | undefined} The Behavior.Type for the given cluster, or undefined if not found.
2914
+ */
2915
+ export declare function getBehavior(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string): Behavior.Type | undefined;
2916
+ /**
2917
+ * Invokes a command on the specified behavior of the endpoint. Used ONLY in Jest tests.
2918
+ *
2919
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to invoke the command on.
2920
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to invoke the command on.
2921
+ * @param {keyof MatterbridgeEndpointCommands} command - The command to invoke.
2922
+ * @param {Record<string, boolean | number | bigint | string | object | null>} [params] - The parameters to pass to the command.
2923
+ *
2924
+ * @returns {Promise<boolean>} A promise that resolves to true if the command was invoked successfully, false otherwise.
2925
+ *
2926
+ * @deprecated Used ONLY in Jest tests.
2927
+ */
2928
+ export declare function invokeBehaviorCommand(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, command: keyof MatterbridgeEndpointCommands, params?: Record<string, boolean | number | bigint | string | object | null>): Promise<boolean>;
2929
+ /**
2930
+ * Invokes the subscription handler on the specified cluster and attribute of the endpoint. Used ONLY in Jest tests.
2931
+ *
2932
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to invoke the subscription handler on.
2933
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to invoke the subscription handler on.
2934
+ * @param {string} attribute - The attribute to invoke the subscription handler on.
2935
+ * @param {unknown} newValue - The new value of the attribute.
2936
+ * @param {unknown} oldValue - The old value of the attribute.
2937
+ *
2938
+ * @returns {Promise<boolean>} A promise that resolves to true if the subscription handler was invoked successfully, false otherwise.
2939
+ * @deprecated Used ONLY in Jest tests.
2940
+ */
2941
+ export declare function invokeSubscribeHandler(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, attribute: string, newValue: unknown, oldValue: unknown): Promise<boolean>;
2942
+ /**
2943
+ * Adds required cluster servers to the specified endpoint based on the device types.
2944
+ *
2945
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to add the required cluster servers to.
2946
+ * @returns {void}
2947
+ */
2948
+ export declare function addRequiredClusterServers(endpoint: MatterbridgeEndpoint): void;
2949
+ /**
2950
+ * Adds optional cluster servers to the specified endpoint based on the device types.
2951
+ *
2952
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to add the optional cluster servers to.
2953
+ * @returns {void}
2954
+ */
2955
+ export declare function addOptionalClusterServers(endpoint: MatterbridgeEndpoint): void;
2956
+ /**
2957
+ * Adds cluster servers to the specified endpoint based on the provided server list.
2958
+ *
2959
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to add the cluster servers to.
2960
+ * @param {ClusterId[]} serverList - The list of cluster IDs to add.
2961
+ */
2962
+ export declare function addClusterServers(endpoint: MatterbridgeEndpoint, serverList: ClusterId[]): void;
2963
+ /**
2964
+ * Adds a fixed label to the FixedLabel cluster. The FixedLabel cluster is created if it does not exist.
2965
+ *
2966
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to add the cluster servers to.
2967
+ * @param {string} label - The label to add.
2968
+ * @param {string} value - The value of the label.
2969
+ */
2970
+ export declare function addFixedLabel(endpoint: MatterbridgeEndpoint, label: string, value: string): Promise<void>;
2971
+ /**
2972
+ * Adds a user label to the UserLabel cluster. The UserLabel cluster is created if it does not exist.
2973
+ *
2974
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to add the cluster servers to.
2975
+ * @param {string} label - The label to add.
2976
+ * @param {string} value - The value of the label.
2977
+ */
2978
+ export declare function addUserLabel(endpoint: MatterbridgeEndpoint, label: string, value: string): Promise<void>;
2979
+ /**
2980
+ * Returns the options for a given behavior type.
2981
+ *
2982
+ * @param {T} type - The behavior type.
2983
+ * @param {Behavior.Options<T>} options - The options for the behavior type.
2984
+ * @returns {Behavior.Options<T>} The options for the behavior type.
2985
+ */
2986
+ export declare function optionsFor<T extends Behavior.Type>(type: T, options: Behavior.Options<T>): Behavior.Options<T>;
2987
+ /**
2988
+ * Retrieves the cluster name by its ID.
2989
+ *
2990
+ * @param {Endpoint} endpoint - The endpoint to retrieve the cluster name from.
2991
+ * @param {ClusterId} cluster - The ID of the cluster.
2992
+ * @returns {string} The name of the cluster.
2993
+ */
2994
+ export declare function getClusterId(endpoint: Endpoint, cluster: string): number | undefined;
2995
+ /**
2996
+ * Retrieves the ID of an attribute from a cluster behavior.
2997
+ *
2998
+ * @param {Endpoint} endpoint - The endpoint to retrieve the attribute ID from.
2999
+ * @param {string} cluster - The name of the cluster.
3000
+ * @param {string} attribute - The name of the attribute.
3001
+ * @returns {number | undefined} The ID of the attribute, or undefined if not found.
3002
+ */
3003
+ export declare function getAttributeId(endpoint: Endpoint, cluster: string, attribute: string): import("@matter/main").AttributeId | undefined;
3004
+ /**
3005
+ * Retrieves the value of the provided attribute from the given cluster.
3006
+ *
3007
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to retrieve the attribute from.
3008
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to retrieve the attribute from.
3009
+ * @param {string} attribute - The name of the attribute to retrieve.
3010
+ * @param {AnsiLogger} [log] - (Optional) The logger to use for logging the retrieve. Errors are logged to the endpoint logger.
3011
+ * @returns {any} The value of the attribute, or undefined if the attribute is not found.
3012
+ */
3013
+ export declare function getAttribute(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, attribute: string, log?: AnsiLogger): any;
3014
+ /**
3015
+ * Sets the value of an attribute on a cluster server.
3016
+ *
3017
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to set the attribute on.
3018
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to set the attribute on.
3019
+ * @param {string} attribute - The name of the attribute.
3020
+ * @param {boolean | number | bigint | string | object | null} value - The value to set for the attribute.
3021
+ * @param {AnsiLogger} [log] - (Optional) The logger to use for logging the set. Errors are logged to the endpoint logger.
3022
+ * @returns {Promise<boolean>} - A promise that resolves to a boolean indicating whether the attribute was successfully set.
3023
+ */
3024
+ export declare function setAttribute(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, attribute: string, value: boolean | number | bigint | string | object | null, log?: AnsiLogger): Promise<boolean>;
3025
+ /**
3026
+ * Sets the value of an attribute on a cluster server.
3027
+ *
3028
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to update the attribute on.
3029
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to update the attribute on.
3030
+ * @param {string} attribute - The name of the attribute.
3031
+ * @param {boolean | number | bigint | string | object | null} value - The value to set for the attribute.
3032
+ * @param {AnsiLogger} [log] - (Optional) The logger to use for logging the update. Errors are logged to the endpoint logger.
3033
+ * @returns {Promise<boolean>} - A promise that resolves to a boolean indicating whether the attribute was successfully set.
3034
+ */
3035
+ export declare function updateAttribute(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, attribute: string, value: boolean | number | bigint | string | object | null, log?: AnsiLogger): Promise<boolean>;
3036
+ /**
3037
+ * Subscribes to the provided attribute on a cluster.
3038
+ *
3039
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to subscribe the attribute to.
3040
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The cluster to subscribe the attribute to.
3041
+ * @param {string} attribute - The name of the attribute to subscribe to.
3042
+ * @param {(newValue: any, oldValue: any, context: ActionContext) => void} listener - A callback function that will be called when the attribute value changes. When context.offline === true then the change is locally generated and not from the controller.
3043
+ * @param {AnsiLogger} [log] - Optional logger for logging errors and information.
3044
+ * @returns {boolean} - A boolean indicating whether the subscription was successful.
3045
+ *
3046
+ * @remarks The listener function (cannot be async) will receive three parameters:
3047
+ * - `newValue`: The new value of the attribute.
3048
+ * - `oldValue`: The old value of the attribute.
3049
+ * - `context`: The action context, which includes information about the action that triggered the change. When context.offline === true then the change is locally generated and not from the controller.
3050
+ */
3051
+ export declare function subscribeAttribute(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, attribute: string, listener: (newValue: any, oldValue: any, context: ActionContext) => void, log?: AnsiLogger): Promise<boolean>;
3052
+ /**
3053
+ * Triggers an event on the specified cluster.
3054
+ *
3055
+ * @param {MatterbridgeEndpoint} endpoint - The endpoint to trigger the event on.
3056
+ * @param {Behavior.Type | ClusterType | ClusterId | string} cluster - The ID of the cluster.
3057
+ * @param {string} event - The name of the event to trigger.
3058
+ * @param {Record<string, boolean | number | bigint | string | object | undefined | null>} payload - The payload to pass to the event.
3059
+ * @param {AnsiLogger} [log] - Optional logger for logging information.
3060
+ *
3061
+ * @returns {Promise<boolean>} - A promise that resolves to a boolean indicating whether the event was successfully triggered.
3062
+ */
3063
+ export declare function triggerEvent(endpoint: MatterbridgeEndpoint, cluster: Behavior.Type | ClusterType | ClusterId | string, event: string, payload: Record<string, boolean | number | bigint | string | object | undefined | null>, log?: AnsiLogger): Promise<boolean>;
3064
+ /**
3065
+ * Get the default OperationalState Cluster Server.
3066
+ *
3067
+ * @param {OperationalState.OperationalStateEnum} operationalState - The initial operational state.
3068
+ * @returns {Behavior.Options<MatterbridgeOperationalStateServer>} - The default options for the OperationalState cluster server.
3069
+ */
3070
+ export declare function getDefaultOperationalStateClusterServer(operationalState?: OperationalState.OperationalStateEnum): Partial<{
3071
+ phaseList: string[] | null;
3072
+ currentPhase: number | null;
3073
+ operationalStateList: {
3074
+ operationalStateId: number;
3075
+ operationalStateLabel?: string | undefined;
3076
+ }[];
3077
+ operationalState: number;
3078
+ operationalError: {
3079
+ errorStateId: number;
3080
+ errorStateLabel?: string | undefined;
3081
+ errorStateDetails?: string | undefined;
3082
+ };
3083
+ countdownTime?: number | null | undefined;
3084
+ }>;
3085
+ /**
3086
+ * Get the default TemperatureMeasurement cluster server options.
3087
+ *
3088
+ * @param {number | null} measuredValue - The measured value of the temperature x 100.
3089
+ * @param {number | null} minMeasuredValue - The minimum measured value of the temperature x 100.
3090
+ * @param {number | null} maxMeasuredValue - The maximum measured value of the temperature x 100.
3091
+ * @returns {Behavior.Options<MatterbridgeTemperatureMeasurementServer>} - The default options for the TemperatureMeasurement cluster server.
3092
+ */
3093
+ export declare function getDefaultTemperatureMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<{
3094
+ measuredValue: number | null;
3095
+ minMeasuredValue: number | null;
3096
+ maxMeasuredValue: number | null;
3097
+ tolerance?: number | undefined;
3098
+ }>;
3099
+ /**
3100
+ * Get the default RelativeHumidityMeasurement cluster server options.
3101
+ *
3102
+ * @param {number | null} measuredValue - The measured value of the relative humidity x 100.
3103
+ * @param {number | null} minMeasuredValue - The minimum measured value of the relative humidity x 100.
3104
+ * @param {number | null} maxMeasuredValue - The maximum measured value of the relative humidity x 100.
3105
+ * @returns {Behavior.Options<MatterbridgeRelativeHumidityMeasurementServer>} - The default options for the RelativeHumidityMeasurement cluster server.
3106
+ */
3107
+ export declare function getDefaultRelativeHumidityMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<{
3108
+ measuredValue: number | null;
3109
+ minMeasuredValue: number | null;
3110
+ maxMeasuredValue: number | null;
3111
+ tolerance?: number | undefined;
3112
+ }>;
3113
+ /**
3114
+ * Get the default PressureMeasurement cluster server options.
3115
+ *
3116
+ * @param {number | null} measuredValue - The measured value for the pressure in kPa x 10.
3117
+ * @param {number | null} minMeasuredValue - The minimum measured value for the pressure in kPa x 10.
3118
+ * @param {number | null} maxMeasuredValue - The maximum measured value for the pressure in kPa x 10.
3119
+ * @returns {Behavior.Options<MatterbridgePressureMeasurementServer>} - The default options for the PressureMeasurement cluster server.
3120
+ */
3121
+ export declare function getDefaultPressureMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<{
3122
+ measuredValue: number | null;
3123
+ minMeasuredValue: number | null;
3124
+ maxMeasuredValue: number | null;
3125
+ tolerance?: number | undefined;
3126
+ }>;
3127
+ /**
3128
+ * Get the default IlluminanceMeasurement cluster server options.
3129
+ *
3130
+ * @param {number | null} measuredValue - The measured value of illuminance.
3131
+ * @param {number | null} minMeasuredValue - The minimum measured value of illuminance.
3132
+ * @param {number | null} maxMeasuredValue - The maximum measured value of illuminance.
3133
+ *
3134
+ * @returns {Behavior.Options<MatterbridgeIlluminanceMeasurementServer>} - The default options for the IlluminanceMeasurement cluster server.
3135
+ *
3136
+ * @remarks The default value for the illuminance measurement is null.
3137
+ * This attribute SHALL indicate the illuminance in Lux (symbol lx) as follows:
3138
+ * • MeasuredValue = 10,000 x log10(illuminance) + 1,
3139
+ * where 1 lx <= illuminance <= 3.576 Mlx, corresponding to a MeasuredValue in the range 1 to 0xFFFE.
3140
+ * • 0 indicates a value of illuminance that is too low to be measured
3141
+ * • null indicates that the illuminance measurement is invalid.
3142
+ */
3143
+ export declare function getDefaultIlluminanceMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<{
3144
+ measuredValue: number | null;
3145
+ minMeasuredValue: number | null;
3146
+ maxMeasuredValue: number | null;
3147
+ tolerance?: number | undefined;
3148
+ lightSensorType?: number | null | undefined;
3149
+ }>;
3150
+ /**
3151
+ * Get the default FlowMeasurement cluster server options.
3152
+ *
3153
+ * @param {number | null} measuredValue - The measured value of the flow in 10 x m3/h.
3154
+ * @param {number | null} minMeasuredValue - The minimum measured value of the flow in 10 x m3/h.
3155
+ * @param {number | null} maxMeasuredValue - The maximum measured value of the flow in 10 x m3/h.
3156
+ * @returns {Behavior.Options<MatterbridgeFlowMeasurementServer>} - The default options for the FlowMeasurement cluster server.
3157
+ */
3158
+ export declare function getDefaultFlowMeasurementClusterServer(measuredValue?: number | null, minMeasuredValue?: number | null, maxMeasuredValue?: number | null): Partial<{
3159
+ measuredValue: number | null;
3160
+ minMeasuredValue: number | null;
3161
+ maxMeasuredValue: number | null;
3162
+ tolerance?: number | undefined;
3163
+ }>;
3164
+ /**
3165
+ * Get the default OccupancySensing cluster server options.
3166
+ *
3167
+ * @param {boolean} occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
3168
+ * @param {number} holdTime - The hold time in seconds. Default is 30.
3169
+ * @param {number} holdTimeMin - The minimum hold time in seconds. Default is 1.
3170
+ * @param {number} holdTimeMax - The maximum hold time in seconds. Default is 300.
3171
+ * @returns {Behavior.Options<MatterbridgeOccupancySensingServer>} - The default options for the OccupancySensing cluster server.
3172
+ *
3173
+ * @remarks The default value for the occupancy sensor type is PIR.
3174
+ * Servers SHALL set these attributes for backward compatibility with clients implementing a cluster revision <= 4 as
3175
+ * described in OccupancySensorType and OccupancySensorTypeBitmap Attributes.
3176
+ * This replaces the 9 legacy attributes PIROccupiedToUnoccupiedDelay through PhysicalContactUnoccupiedToOccupiedThreshold.
3177
+ */
3178
+ export declare function getDefaultOccupancySensingClusterServer(occupied?: boolean, holdTime?: number, holdTimeMin?: number, holdTimeMax?: number): Partial<{
3179
+ occupancy: {
3180
+ occupied?: boolean | undefined;
3181
+ };
3182
+ holdTime?: number | undefined;
3183
+ pirOccupiedToUnoccupiedDelay?: number | undefined;
3184
+ pirUnoccupiedToOccupiedDelay?: number | undefined;
3185
+ pirUnoccupiedToOccupiedThreshold?: number | undefined;
3186
+ occupancySensorType: number;
3187
+ occupancySensorTypeBitmap: {
3188
+ pir?: boolean | undefined;
3189
+ ultrasonic?: boolean | undefined;
3190
+ physicalContact?: boolean | undefined;
3191
+ };
3192
+ holdTimeLimits?: {
3193
+ holdTimeMin: number;
3194
+ holdTimeMax: number;
3195
+ holdTimeDefault: number;
3196
+ } | undefined;
3197
+ }>;
3198
+ //# sourceMappingURL=matterbridgeEndpointHelpers.d.ts.map