@esphome/compose 0.1.2 → 0.1.3

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.
package/dist/index.d.mts CHANGED
@@ -142,10 +142,11 @@ declare function withScriptScope<T>(fn: () => T): {
142
142
  */
143
143
  declare function useScript(metadata: ScriptDefinition): unknown[];
144
144
 
145
- declare function createElement(type: string | FunctionComponent, props: Record<string, unknown> | null, ...children: (EspComposeElement | EspComposeElement[] | null | undefined)[]): EspComposeElement;
146
145
  declare function Fragment(props: {
147
146
  children?: EspComposeElement | EspComposeElement[];
148
147
  }): EspComposeElement;
148
+
149
+ declare function createElement(type: string | FunctionComponent, props: Record<string, unknown> | null, ...children: (EspComposeElement | EspComposeElement[] | null | undefined)[]): EspComposeElement;
149
150
  declare function render(element: EspComposeElement | EspComposeElement[]): unknown;
150
151
  declare function toYAML(config: unknown): string;
151
152
  declare const ESPCompose: {
@@ -31952,14 +31953,528 @@ declare global {
31952
31953
  }
31953
31954
  }
31954
31955
 
31955
- /** LvglProps open interface (upstream schema has no typed config) */
31956
+ /** Shared style properties available on every LVGL widget and on per-part / per-state overrides. */
31957
+ interface LvglStyleProps {
31958
+ align?: "TOP_LEFT" | "TOP_MID" | "TOP_RIGHT" | "LEFT_MID" | "CENTER" | "RIGHT_MID" | "BOTTOM_LEFT" | "BOTTOM_MID" | "BOTTOM_RIGHT";
31959
+ /** @yamlKey arc_opa */
31960
+ arcOpa?: "TRANSP" | "COVER";
31961
+ /** @yamlKey arc_color */
31962
+ arcColor?: string;
31963
+ /** @yamlKey arc_rounded */
31964
+ arcRounded?: boolean;
31965
+ /** @yamlKey arc_width */
31966
+ arcWidth?: number | string;
31967
+ /** @yamlKey anim_time */
31968
+ animTime?: number;
31969
+ /** @yamlKey bg_color */
31970
+ bgColor?: string;
31971
+ /** @yamlKey bg_grad */
31972
+ bgGrad?: unknown;
31973
+ /** @yamlKey bg_grad_color */
31974
+ bgGradColor?: string;
31975
+ /** @yamlKey bg_dither_mode */
31976
+ bgDitherMode?: "NONE" | "ORDERED" | "ERR_DIFF";
31977
+ /** @yamlKey bg_grad_dir */
31978
+ bgGradDir?: "NONE" | "HOR" | "VER";
31979
+ /** @yamlKey bg_grad_stop */
31980
+ bgGradStop?: unknown;
31981
+ /** @yamlKey bg_image_opa */
31982
+ bgImageOpa?: "TRANSP" | "COVER";
31983
+ /** @yamlKey bg_image_recolor */
31984
+ bgImageRecolor?: string;
31985
+ /** @yamlKey bg_image_recolor_opa */
31986
+ bgImageRecolorOpa?: "TRANSP" | "COVER";
31987
+ /** @yamlKey bg_image_src */
31988
+ bgImageSrc?: string;
31989
+ /** @yamlKey bg_image_tiled */
31990
+ bgImageTiled?: boolean;
31991
+ /** @yamlKey bg_main_stop */
31992
+ bgMainStop?: unknown;
31993
+ /** @yamlKey bg_opa */
31994
+ bgOpa?: "TRANSP" | "COVER";
31995
+ /** @yamlKey border_color */
31996
+ borderColor?: string;
31997
+ /** @yamlKey border_opa */
31998
+ borderOpa?: "TRANSP" | "COVER";
31999
+ /** @yamlKey border_post */
32000
+ borderPost?: boolean;
32001
+ /** @yamlKey border_side */
32002
+ borderSide?: "NONE" | "TOP" | "BOTTOM" | "LEFT" | "RIGHT" | "INTERNAL";
32003
+ /** @yamlKey border_width */
32004
+ borderWidth?: number;
32005
+ /** @yamlKey clip_corner */
32006
+ clipCorner?: boolean;
32007
+ /** @yamlKey color_filter_opa */
32008
+ colorFilterOpa?: "TRANSP" | "COVER";
32009
+ height?: number | string | "SIZE_CONTENT";
32010
+ /** @yamlKey image_recolor */
32011
+ imageRecolor?: string;
32012
+ /** @yamlKey image_recolor_opa */
32013
+ imageRecolorOpa?: "TRANSP" | "COVER";
32014
+ /** @yamlKey line_width */
32015
+ lineWidth?: number;
32016
+ /** @yamlKey line_dash_width */
32017
+ lineDashWidth?: number;
32018
+ /** @yamlKey line_dash_gap */
32019
+ lineDashGap?: number;
32020
+ /** @yamlKey line_rounded */
32021
+ lineRounded?: boolean;
32022
+ /** @yamlKey line_color */
32023
+ lineColor?: string;
32024
+ opa?: "TRANSP" | "COVER";
32025
+ /** @yamlKey opa_layered */
32026
+ opaLayered?: "TRANSP" | "COVER";
32027
+ /** @yamlKey outline_color */
32028
+ outlineColor?: string;
32029
+ /** @yamlKey outline_opa */
32030
+ outlineOpa?: "TRANSP" | "COVER";
32031
+ /** @yamlKey outline_pad */
32032
+ outlinePad?: number | string;
32033
+ /** @yamlKey outline_width */
32034
+ outlineWidth?: number | string;
32035
+ /** @yamlKey pad_all */
32036
+ padAll?: number | string;
32037
+ /** @yamlKey pad_bottom */
32038
+ padBottom?: number | string;
32039
+ /** @yamlKey pad_left */
32040
+ padLeft?: number | string;
32041
+ /** @yamlKey pad_right */
32042
+ padRight?: number | string;
32043
+ /** @yamlKey pad_top */
32044
+ padTop?: number | string;
32045
+ /** @yamlKey shadow_color */
32046
+ shadowColor?: string;
32047
+ /** @yamlKey shadow_ofs_x */
32048
+ shadowOfsX?: number;
32049
+ /** @yamlKey shadow_ofs_y */
32050
+ shadowOfsY?: number;
32051
+ /** @yamlKey shadow_opa */
32052
+ shadowOpa?: "TRANSP" | "COVER";
32053
+ /** @yamlKey shadow_spread */
32054
+ shadowSpread?: number;
32055
+ /** @yamlKey shadow_width */
32056
+ shadowWidth?: number;
32057
+ /** @yamlKey text_align */
32058
+ textAlign?: "LEFT" | "CENTER" | "RIGHT" | "AUTO";
32059
+ /** @yamlKey text_color */
32060
+ textColor?: string;
32061
+ /** @yamlKey text_decor */
32062
+ textDecor?: "NONE" | "UNDERLINE" | "STRIKETHROUGH";
32063
+ /** @yamlKey text_font */
32064
+ textFont?: "montserrat_8" | "montserrat_10" | "montserrat_12" | "montserrat_14" | "montserrat_16" | "montserrat_18" | "montserrat_20" | "montserrat_22" | "montserrat_24" | "montserrat_26" | "montserrat_28" | "montserrat_30" | "montserrat_32" | "montserrat_34" | "montserrat_36" | "montserrat_38" | "montserrat_40" | "montserrat_42" | "montserrat_44" | "montserrat_46" | "montserrat_48" | "dejavu_16_persian_hebrew" | "simsun_16_cjk" | "unscii_8" | "unscii_16";
32065
+ /** @yamlKey text_letter_space */
32066
+ textLetterSpace?: number;
32067
+ /** @yamlKey text_line_space */
32068
+ textLineSpace?: number;
32069
+ /** @yamlKey text_opa */
32070
+ textOpa?: "TRANSP" | "COVER";
32071
+ /** @yamlKey transform_angle */
32072
+ transformAngle?: number;
32073
+ /** @yamlKey transform_height */
32074
+ transformHeight?: number | string;
32075
+ /** @yamlKey transform_pivot_x */
32076
+ transformPivotX?: number | string;
32077
+ /** @yamlKey transform_pivot_y */
32078
+ transformPivotY?: number | string;
32079
+ /** @yamlKey transform_zoom */
32080
+ transformZoom?: unknown;
32081
+ /** @yamlKey translate_x */
32082
+ translateX?: number | string;
32083
+ /** @yamlKey translate_y */
32084
+ translateY?: number | string;
32085
+ /** @yamlKey max_height */
32086
+ maxHeight?: number | string;
32087
+ /** @yamlKey max_width */
32088
+ maxWidth?: number | string;
32089
+ /** @yamlKey min_height */
32090
+ minHeight?: number | string;
32091
+ /** @yamlKey min_width */
32092
+ minWidth?: number | string;
32093
+ radius?: "CIRCLE";
32094
+ width?: number | string | "SIZE_CONTENT";
32095
+ x?: number | string;
32096
+ y?: number | string;
32097
+ /** State-variant style override. */
32098
+ checked?: LvglStyleProps;
32099
+ /** State-variant style override. */
32100
+ focused?: LvglStyleProps;
32101
+ /**
32102
+ * State-variant style override.
32103
+ * @yamlKey focus_key
32104
+ */
32105
+ focusKey?: LvglStyleProps;
32106
+ /** State-variant style override. */
32107
+ edited?: LvglStyleProps;
32108
+ /** State-variant style override. */
32109
+ hovered?: LvglStyleProps;
32110
+ /** State-variant style override. */
32111
+ pressed?: LvglStyleProps;
32112
+ /** State-variant style override. */
32113
+ scrolled?: LvglStyleProps;
32114
+ /** State-variant style override. */
32115
+ disabled?: LvglStyleProps;
32116
+ /**
32117
+ * State-variant style override.
32118
+ * @yamlKey user_1
32119
+ */
32120
+ user1?: LvglStyleProps;
32121
+ /**
32122
+ * State-variant style override.
32123
+ * @yamlKey user_2
32124
+ */
32125
+ user2?: LvglStyleProps;
32126
+ /**
32127
+ * State-variant style override.
32128
+ * @yamlKey user_3
32129
+ */
32130
+ user3?: LvglStyleProps;
32131
+ /**
32132
+ * State-variant style override.
32133
+ * @yamlKey user_4
32134
+ */
32135
+ user4?: LvglStyleProps;
32136
+ }
32137
+ interface LvglObjProps extends LvglStyleProps {
32138
+ /** Style overrides for the "scrollbar" part. */
32139
+ scrollbar?: LvglStyleProps;
32140
+ }
32141
+ interface LvglLabelProps extends LvglStyleProps {
32142
+ text?: unknown;
32143
+ recolor?: boolean;
32144
+ /** @yamlKey long_mode */
32145
+ longMode?: "WRAP" | "DOT" | "SCROLL" | "SCROLL_CIRCULAR" | "CLIP";
32146
+ /** Style overrides for the "scrollbar" part. */
32147
+ scrollbar?: LvglStyleProps;
32148
+ /** Style overrides for the "selected" part. */
32149
+ selected?: LvglStyleProps;
32150
+ }
32151
+ interface LvglButtonProps extends LvglStyleProps {
32152
+ text?: unknown;
32153
+ }
32154
+ interface LvglBtnmatrixBtnProps extends LvglStyleProps {
32155
+ }
32156
+ interface LvglButtonmatrixProps extends LvglStyleProps {
32157
+ /** @yamlKey one_checked */
32158
+ oneChecked?: boolean;
32159
+ /** @yamlKey pad_row */
32160
+ padRow?: number | string;
32161
+ /** @yamlKey pad_column */
32162
+ padColumn?: number | string;
32163
+ /** @yamlKey button_text_list_id */
32164
+ buttonTextListId?: unknown;
32165
+ rows: unknown;
32166
+ /** Style overrides for the "items" part. */
32167
+ items?: LvglStyleProps;
32168
+ }
32169
+ interface LvglPageProps extends LvglStyleProps {
32170
+ skip?: boolean;
32171
+ /** @yamlKey on_load */
32172
+ onLoad?: unknown;
32173
+ /** @yamlKey on_unload */
32174
+ onUnload?: unknown;
32175
+ }
32176
+ interface LvglImageProps extends LvglStyleProps {
32177
+ /** @yamlKey pivot_x */
32178
+ pivotX?: number | string | "SIZE_CONTENT";
32179
+ /** @yamlKey pivot_y */
32180
+ pivotY?: number | string | "SIZE_CONTENT";
32181
+ angle?: number;
32182
+ zoom?: unknown;
32183
+ /** @yamlKey offset_x */
32184
+ offsetX?: number | string | "SIZE_CONTENT";
32185
+ /** @yamlKey offset_y */
32186
+ offsetY?: number | string | "SIZE_CONTENT";
32187
+ antialias?: boolean;
32188
+ mode?: "VIRTUAL" | "REAL";
32189
+ src: string;
32190
+ }
32191
+ interface LvglAnimimgProps extends LvglStyleProps {
32192
+ /** @yamlKey repeat_count */
32193
+ repeatCount?: unknown;
32194
+ /** @yamlKey auto_start */
32195
+ autoStart?: boolean;
32196
+ duration: number;
32197
+ src: unknown;
32198
+ }
32199
+ interface LvglArcProps extends LvglStyleProps {
32200
+ value?: number;
32201
+ /** @yamlKey min_value */
32202
+ minValue?: number;
32203
+ /** @yamlKey max_value */
32204
+ maxValue?: number;
32205
+ /** @yamlKey start_angle */
32206
+ startAngle?: number;
32207
+ /** @yamlKey end_angle */
32208
+ endAngle?: number;
32209
+ rotation?: number;
32210
+ adjustable?: boolean;
32211
+ mode?: "NORMAL" | "REVERSE" | "SYMMETRICAL";
32212
+ /** @yamlKey change_rate */
32213
+ changeRate?: number;
32214
+ /** Style overrides for the "indicator" part. */
32215
+ indicator?: LvglStyleProps;
32216
+ /** Style overrides for the "knob" part. */
32217
+ knob?: LvglStyleProps;
32218
+ }
32219
+ interface LvglLineProps extends LvglStyleProps {
32220
+ points: unknown;
32221
+ }
32222
+ interface LvglCanvasProps extends LvglStyleProps {
32223
+ width: number | string | "SIZE_CONTENT";
32224
+ height: number | string | "SIZE_CONTENT";
32225
+ transparent?: boolean;
32226
+ }
32227
+ interface LvglCheckboxProps extends LvglStyleProps {
32228
+ text?: unknown;
32229
+ /** @yamlKey pad_column */
32230
+ padColumn?: number | string;
32231
+ /** Style overrides for the "indicator" part. */
32232
+ indicator?: LvglStyleProps;
32233
+ }
32234
+ interface LvglContainerProps extends LvglStyleProps {
32235
+ height?: number | string | "SIZE_CONTENT";
32236
+ width?: number | string | "SIZE_CONTENT";
32237
+ /** Style overrides for the "scrollbar" part. */
32238
+ scrollbar?: LvglStyleProps;
32239
+ }
32240
+ interface LvglDropdownListProps extends LvglStyleProps {
32241
+ /** Style overrides for the "selected" part. */
32242
+ selected?: LvglStyleProps;
32243
+ /** Style overrides for the "scrollbar" part. */
32244
+ scrollbar?: LvglStyleProps;
32245
+ }
32246
+ interface LvglDropdownProps extends LvglStyleProps {
32247
+ symbol?: unknown;
32248
+ /** @yamlKey selected_index */
32249
+ selectedIndex?: number;
32250
+ /** @yamlKey selected_text */
32251
+ selectedText?: string;
32252
+ /** @yamlKey dropdown_list */
32253
+ dropdownList?: unknown;
32254
+ options: unknown;
32255
+ dir?: "LEFT" | "RIGHT" | "BOTTOM" | "TOP";
32256
+ /** Style overrides for the "indicator" part. */
32257
+ indicator?: LvglStyleProps;
32258
+ }
32259
+ interface LvglTextareaProps extends LvglStyleProps {
32260
+ text?: unknown;
32261
+ /** @yamlKey placeholder_text */
32262
+ placeholderText?: string;
32263
+ /** @yamlKey accepted_chars */
32264
+ acceptedChars?: string;
32265
+ /** @yamlKey one_line */
32266
+ oneLine?: boolean;
32267
+ /** @yamlKey password_mode */
32268
+ passwordMode?: boolean;
32269
+ /** @yamlKey max_length */
32270
+ maxLength?: number;
32271
+ /** Style overrides for the "scrollbar" part. */
32272
+ scrollbar?: LvglStyleProps;
32273
+ /** Style overrides for the "selected" part. */
32274
+ selected?: LvglStyleProps;
32275
+ /** Style overrides for the "cursor" part. */
32276
+ cursor?: LvglStyleProps;
32277
+ /**
32278
+ * Style overrides for the "textarea_placeholder" part.
32279
+ * @yamlKey textarea_placeholder
32280
+ */
32281
+ textareaPlaceholder?: LvglStyleProps;
32282
+ }
32283
+ interface LvglKeyboardProps extends LvglStyleProps {
32284
+ mode?: "TEXT_LOWER" | "TEXT_UPPER" | "SPECIAL" | "NUMBER";
32285
+ textarea?: unknown;
32286
+ /** Style overrides for the "items" part. */
32287
+ items?: LvglStyleProps;
32288
+ }
32289
+ interface LvglLedProps extends LvglStyleProps {
32290
+ color?: string;
32291
+ brightness?: unknown;
32292
+ }
32293
+ interface LvglBarProps extends LvglStyleProps {
32294
+ value?: number;
32295
+ /** @yamlKey start_value */
32296
+ startValue?: number;
32297
+ /** @yamlKey min_value */
32298
+ minValue?: number;
32299
+ /** @yamlKey max_value */
32300
+ maxValue?: number;
32301
+ mode?: "NORMAL" | "SYMMETRICAL" | "RANGE";
32302
+ animated?: "OFF" | "ON";
32303
+ /** Style overrides for the "indicator" part. */
32304
+ indicator?: LvglStyleProps;
32305
+ }
32306
+ interface LvglMeterProps extends LvglStyleProps {
32307
+ scales?: unknown;
32308
+ /** Style overrides for the "indicator" part. */
32309
+ indicator?: LvglStyleProps;
32310
+ /** Style overrides for the "ticks" part. */
32311
+ ticks?: LvglStyleProps;
32312
+ /** Style overrides for the "items" part. */
32313
+ items?: LvglStyleProps;
32314
+ }
32315
+ interface LvglQrcodeProps extends LvglStyleProps {
32316
+ text?: unknown;
32317
+ /** @yamlKey dark_color */
32318
+ darkColor?: string;
32319
+ /** @yamlKey light_color */
32320
+ lightColor?: string;
32321
+ size: number;
32322
+ }
32323
+ interface LvglRollerProps extends LvglStyleProps {
32324
+ /** @yamlKey selected_index */
32325
+ selectedIndex?: number;
32326
+ /** @yamlKey selected_text */
32327
+ selectedText?: string;
32328
+ /** @yamlKey visible_row_count */
32329
+ visibleRowCount?: number;
32330
+ mode?: "NORMAL" | "INFINITE";
32331
+ options: unknown;
32332
+ /** Style overrides for the "selected" part. */
32333
+ selected?: LvglStyleProps;
32334
+ }
32335
+ interface LvglSliderProps extends LvglStyleProps {
32336
+ value?: number;
32337
+ /** @yamlKey min_value */
32338
+ minValue?: number;
32339
+ /** @yamlKey max_value */
32340
+ maxValue?: number;
32341
+ mode?: "NORMAL" | "SYMMETRICAL" | "RANGE";
32342
+ animated?: "OFF" | "ON";
32343
+ /** Style overrides for the "indicator" part. */
32344
+ indicator?: LvglStyleProps;
32345
+ /** Style overrides for the "knob" part. */
32346
+ knob?: LvglStyleProps;
32347
+ }
32348
+ interface LvglSpinboxProps extends LvglStyleProps {
32349
+ value?: number;
32350
+ /** @yamlKey range_from */
32351
+ rangeFrom?: number;
32352
+ /** @yamlKey range_to */
32353
+ rangeTo?: number;
32354
+ digits?: unknown;
32355
+ step?: unknown;
32356
+ /** @yamlKey selected_digit */
32357
+ selectedDigit?: number;
32358
+ /** @yamlKey decimal_places */
32359
+ decimalPlaces?: unknown;
32360
+ rollover?: boolean;
32361
+ /** Style overrides for the "scrollbar" part. */
32362
+ scrollbar?: LvglStyleProps;
32363
+ /** Style overrides for the "selected" part. */
32364
+ selected?: LvglStyleProps;
32365
+ /** Style overrides for the "cursor" part. */
32366
+ cursor?: LvglStyleProps;
32367
+ /**
32368
+ * Style overrides for the "textarea_placeholder" part.
32369
+ * @yamlKey textarea_placeholder
32370
+ */
32371
+ textareaPlaceholder?: LvglStyleProps;
32372
+ }
32373
+ interface LvglSpinnerProps extends LvglStyleProps {
32374
+ /** @yamlKey arc_length */
32375
+ arcLength: number;
32376
+ /** @yamlKey spin_time */
32377
+ spinTime: number;
32378
+ /** Style overrides for the "indicator" part. */
32379
+ indicator?: LvglStyleProps;
32380
+ }
32381
+ interface LvglSwitchProps extends LvglStyleProps {
32382
+ /** Style overrides for the "indicator" part. */
32383
+ indicator?: LvglStyleProps;
32384
+ /** Style overrides for the "knob" part. */
32385
+ knob?: LvglStyleProps;
32386
+ }
32387
+ interface LvglTabviewProps extends LvglStyleProps {
32388
+ tabs: unknown;
32389
+ /** @yamlKey tab_style */
32390
+ tabStyle?: unknown;
32391
+ /** @yamlKey content_style */
32392
+ contentStyle?: unknown;
32393
+ position?: "LEFT" | "RIGHT" | "BOTTOM" | "TOP";
32394
+ size?: number | string | "SIZE_CONTENT";
32395
+ }
32396
+ interface LvglLvTileviewTileTProps extends LvglStyleProps {
32397
+ }
32398
+ interface LvglTileviewProps extends LvglStyleProps {
32399
+ tiles: unknown;
32400
+ /** Style overrides for the "scrollbar" part. */
32401
+ scrollbar?: LvglStyleProps;
32402
+ }
32403
+ /** Top-level <lvgl> component properties. */
31956
32404
  interface LvglProps$6 {
31957
- /** Accepts any props — the upstream schema provides no type information. */
31958
- [key: string]: unknown;
32405
+ displays: unknown;
32406
+ /** @yamlKey color_depth */
32407
+ colorDepth?: "16";
32408
+ /** @yamlKey default_font */
32409
+ defaultFont?: string;
32410
+ /** @yamlKey full_refresh */
32411
+ fullRefresh?: boolean;
32412
+ /** @yamlKey update_when_display_idle */
32413
+ updateWhenDisplayIdle?: boolean;
32414
+ /** @yamlKey draw_rounding */
32415
+ drawRounding?: number;
32416
+ /** @yamlKey buffer_size */
32417
+ bufferSize?: unknown;
32418
+ /** @yamlKey log_level */
32419
+ logLevel?: "VERBOSE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "NONE";
32420
+ /** @yamlKey byte_order */
32421
+ byteOrder?: "big_endian" | "little_endian";
32422
+ /** @yamlKey style_definitions */
32423
+ styleDefinitions?: unknown;
32424
+ pages?: unknown;
32425
+ msgboxes?: unknown;
32426
+ /** @yamlKey page_wrap */
32427
+ pageWrap?: boolean;
32428
+ /** @yamlKey top_layer */
32429
+ topLayer?: unknown;
32430
+ /** @yamlKey transparency_key */
32431
+ transparencyKey?: string;
32432
+ theme?: unknown;
32433
+ gradients?: unknown;
32434
+ touchscreens?: unknown;
32435
+ encoders?: unknown;
32436
+ keypads?: unknown;
32437
+ /** @yamlKey resume_on_input */
32438
+ resumeOnInput?: boolean;
32439
+ /** @yamlKey disp_bg_image */
32440
+ dispBgImage?: string;
32441
+ /** @yamlKey disp_bg_color */
32442
+ dispBgColor?: string;
32443
+ /** @yamlKey disp_bg_opa */
32444
+ dispBgOpa?: number | string;
31959
32445
  }
31960
32446
  declare global {
31961
32447
  namespace JSX {
31962
32448
  interface IntrinsicElements {
32449
+ "lvgl-obj": LvglObjProps & ComponentProps;
32450
+ "lvgl-label": LvglLabelProps & ComponentProps;
32451
+ "lvgl-button": LvglButtonProps & ComponentProps;
32452
+ "lvgl-btnmatrix-btn": LvglBtnmatrixBtnProps & ComponentProps;
32453
+ "lvgl-buttonmatrix": LvglButtonmatrixProps & ComponentProps;
32454
+ "lvgl-page": LvglPageProps & ComponentProps;
32455
+ "lvgl-image": LvglImageProps & ComponentProps;
32456
+ "lvgl-animimg": LvglAnimimgProps & ComponentProps;
32457
+ "lvgl-arc": LvglArcProps & ComponentProps;
32458
+ "lvgl-line": LvglLineProps & ComponentProps;
32459
+ "lvgl-canvas": LvglCanvasProps & ComponentProps;
32460
+ "lvgl-checkbox": LvglCheckboxProps & ComponentProps;
32461
+ "lvgl-container": LvglContainerProps & ComponentProps;
32462
+ "lvgl-dropdown-list": LvglDropdownListProps & ComponentProps;
32463
+ "lvgl-dropdown": LvglDropdownProps & ComponentProps;
32464
+ "lvgl-textarea": LvglTextareaProps & ComponentProps;
32465
+ "lvgl-keyboard": LvglKeyboardProps & ComponentProps;
32466
+ "lvgl-led": LvglLedProps & ComponentProps;
32467
+ "lvgl-bar": LvglBarProps & ComponentProps;
32468
+ "lvgl-meter": LvglMeterProps & ComponentProps;
32469
+ "lvgl-qrcode": LvglQrcodeProps & ComponentProps;
32470
+ "lvgl-roller": LvglRollerProps & ComponentProps;
32471
+ "lvgl-slider": LvglSliderProps & ComponentProps;
32472
+ "lvgl-spinbox": LvglSpinboxProps & ComponentProps;
32473
+ "lvgl-spinner": LvglSpinnerProps & ComponentProps;
32474
+ "lvgl-switch": LvglSwitchProps & ComponentProps;
32475
+ "lvgl-tabview": LvglTabviewProps & ComponentProps;
32476
+ "lvgl-lv-tileview-tile-t": LvglLvTileviewTileTProps & ComponentProps;
32477
+ "lvgl-tileview": LvglTileviewProps & ComponentProps;
31963
32478
  lvgl: LvglProps$6 & ComponentProps;
31964
32479
  }
31965
32480
  }
@@ -155368,4 +155883,4 @@ interface ESPHomeElementMeta {
155368
155883
  */
155369
155884
  declare const ESPHomeRegistry: Readonly<Record<string, ESPHomeElementMeta>>;
155370
155885
 
155371
- export { type A4988, type ADC128S102, type ADE7880, type ADS1118, type AIC3204, type AM2315C, type APDS9306, type APDS9960, type Action, type AdalightProps, type Adc128s102Props$1 as Adc128s102Props, type Ads1115Props$1 as Ads1115Props, type Ads1118Props, type AirthingsBleProps, type AlarmControlPanelProps, type AlarmControlPanelWebServerProps$1 as AlarmControlPanelWebServerProps, type Alpha3, type Am43, type Animation, type AnimationLoopProps, type AnimationProps, type Anova, type AnyProps, type Apds9960Props$2 as Apds9960Props, type ApiActionsProps, type ApiBatchDelayProps, type ApiProps, type ApiRebootTimeoutProps, type ApiServicesProps, type Area, type As3935I2cProps, type As3935SpiProps, type As5600Props$1 as As5600Props, type AsyncTcpProps, type At581xProps$1 as At581xProps, type AudioAdcProps, type AudioDacProps, type AudioFileProps, type AudioProps, type BL0906, type BL0939, type BL0940, type BL0942, type BM8563, type BP1658CJ, type BP5758D, type BaseProps, type BedjetProps$3 as BedjetProps, type BedjetReceiveTimeoutProps, type BinarySensorProps, type BinarySensorWebServerProps$1 as BinarySensorWebServerProps, type Bk72xxConfigFrameworkProps, type Bk72xxFrameworkProps, type Bk72xxProps, type BleClientProps$3 as BleClientProps, type BleNusProps, type BluetoothProxyConnectionsProps, type BluetoothProxyProps, type Bme680BsecProps$2 as Bme680BsecProps, type Bme680BsecStateSaveIntervalProps, type Bme68xBsec2I2cProps, type Bp1658cjProps$1 as Bp1658cjProps, type Bp5758dProps$1 as Bp5758dProps, type Button, type ButtonProps, type ButtonWebServerProps$1 as ButtonWebServerProps, type BytebufferProps, type CameraEncoderProps, type CanbusProps, type Cap1188Props, type CaptivePortalProps, type Cc1101Props, type Cd74hc4067DelayProps, type Cd74hc4067Props$1 as Cd74hc4067Props, type Ch422gProps, type Ch423Props, type Climate, type ClimateProps, type ClimateVisualProps$1 as ClimateVisualProps, type ClimateWebServerProps$1 as ClimateWebServerProps, type Color, type ColorProps, type Component, type ComponentProps, type Context, type Controller, type CoreMqttComponentAvailabilityProps, type Cover, type CoverProps, type CoverWebServerProps$1 as CoverWebServerProps, type CustomComponentProps, type DFPlayer, type DHT, type Dac7678Props$1 as Dac7678Props, type DallasProps, type DalyBmsProps$2 as DalyBmsProps, type DashboardImportProps, type DatetimeProps, type DatetimeWebServerProps$1 as DatetimeWebServerProps, type DebugProps$2 as DebugProps, type DeepSleepEsp32Ext1WakeupProps, type DeepSleepProps, type DeepSleepRunDurationProps, type DeepSleepRunDurationPropsDefaultProps, type DeepSleepRunDurationPropsGpioWakeupReasonProps, type DeepSleepRunDurationPropsTouchWakeupReasonProps, type DeepSleepSleepDurationProps, type DemoProps, type Device, type DfplayerProps, type DfrobotSen0395Props, type Display, type DisplayFullDisplayPagesProps, type DisplayProps, type DlmsMeterProps$2 as DlmsMeterProps, type DsmrProps$2 as DsmrProps, type DsmrReceiveTimeoutProps, type DsmrRequestIntervalProps, type E131Props, type ES7210, type ES7243E, type ES8156, type ES8311, type ES8388, ESPCompose, type ESPHomeElementMeta, ESPHomeRegistry, type Emc2101DacProps, type Emc2101Props$2 as Emc2101Props, type Emc2101PwmProps, type EntityBase, type Esp32BleAdvertisingCycleTimeProps, type Esp32BleBeaconMaxIntervalProps, type Esp32BleBeaconMinIntervalProps, type Esp32BleBeaconProps, type Esp32BleConnectionTimeoutProps, type Esp32BleProps, type Esp32BleServerFirmwareVersionProps, type Esp32BleServerManufacturerProps, type Esp32BleServerModelProps, type Esp32BleServerProps, type Esp32BleServerServicesProps, type Esp32BleServerServicesPropsCharacteristicsProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptionProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptorsProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptorsPropsValueProps, type Esp32BleServerServicesPropsCharacteristicsPropsValueProps, type Esp32BleTrackerProps, type Esp32BleTrackerScanParametersProps, type Esp32BleTrackerScanParametersPropsDurationProps, type Esp32BleTrackerScanParametersPropsIntervalProps, type Esp32BleTrackerScanParametersPropsWindowProps, type Esp32CameraExternalClockProps, type Esp32CameraI2cPinsProps, type Esp32CameraProps, type Esp32CameraWebServerProps, type Esp32FrameworkProps, type Esp32FrameworkPropsAdvancedProps, type Esp32FrameworkPropsComponentsProps, type Esp32HostedProps, type Esp32ImprovAuthorizedDurationProps, type Esp32ImprovIdentifyDurationProps, type Esp32ImprovProps, type Esp32ImprovWifiTimeoutProps, type Esp32Props, type Esp32TouchIirFilterProps, type Esp32TouchMeasurementDurationProps, type Esp32TouchProps, type Esp32TouchSleepDurationProps, type Esp8266FrameworkProps, type Esp8266Props, type EspComposeElement, type EspLdoProps, type EsphomeAreasProps, type EsphomeDevicesProps, type EsphomeProjectProps, type EsphomeProps$1 as EsphomeProps, type EspnowProps$1 as EspnowProps, type EthernetBaseManualIpProps, type EthernetProps, type EthernetRmiiClkProps, type EthernetRmiiPhyRegistersProps, type EthernetSpiPollingIntervalProps, type Event, type EventProps, type EventWebServerProps$1 as EventWebServerProps, type ExposureNotificationsProps, type ExternalComponentsProps, type EzoPmpProps$2 as EzoPmpProps, type FactoryResetMaxDelayProps, type FactoryResetProps$1 as FactoryResetProps, type Fan, type FanProps, type FanWebServerProps$1 as FanWebServerProps, type FingerprintGrowIdlePeriodToSleepProps, type FingerprintGrowProps$1 as FingerprintGrowProps, type Font, type FontExtrasProps, type FontProps, Fragment, type FunctionComponent, type GPIOPin, type GPS, type Gdk101Props$2 as Gdk101Props, type GlobalsProps, type Gp8403Props$1 as Gp8403Props, type GpsAltitudeProps, type GpsAltitudePropsAvailabilityProps, type GpsAltitudePropsExpireAfterProps, type GpsAltitudePropsWebServerProps, type GpsCourseProps, type GpsCoursePropsAvailabilityProps, type GpsCoursePropsExpireAfterProps, type GpsCoursePropsWebServerProps, type GpsHdopProps, type GpsHdopPropsAvailabilityProps, type GpsHdopPropsExpireAfterProps, type GpsHdopPropsWebServerProps, type GpsLatitudeProps, type GpsLatitudePropsAvailabilityProps, type GpsLatitudePropsExpireAfterProps, type GpsLatitudePropsWebServerProps, type GpsLongitudeProps, type GpsLongitudePropsAvailabilityProps, type GpsLongitudePropsExpireAfterProps, type GpsLongitudePropsWebServerProps, type GpsProps$1 as GpsProps, type GpsSatellitesProps, type GpsSatellitesPropsAvailabilityProps, type GpsSatellitesPropsExpireAfterProps, type GpsSatellitesPropsWebServerProps, type GpsSpeedProps, type GpsSpeedPropsAvailabilityProps, type GpsSpeedPropsExpireAfterProps, type GpsSpeedPropsWebServerProps, type Graph, type GraphDurationProps, type GraphLegendProps, type GraphProps, type GraphTracesProps, type GraphXGridProps, type GraphicalDisplayMenuProps, type GroveTb6612fngProps, type HlkFm22xProps$2 as HlkFm22xProps, type HmacMd5Props, type HmacSha256Props, type HostProps$1 as HostProps, type HttpRequestProps$2 as HttpRequestProps, type HttpRequestTimeoutProps, type HttpRequestWatchdogTimeoutProps, type I2cDeviceProps, type I2cProps, type I2cTimeoutProps, type I2sAudioProps, type I2sAudioSpeakerBaseBufferDurationProps, type IAQCore, type Image, type ImageProps, type ImprovSerialProps, type Infrared, type InfraredProps, type Inkplate, type InternalGPIOPin, type IntervalProps, type JsonProps, type KeyCollectorProps$1 as KeyCollectorProps, type KeyCollectorTimeoutProps, type Kuntze, type Lc709203f, type LcdMenuProps, type Ld2410Props$5 as Ld2410Props, type Ld2412Props$5 as Ld2412Props, type Ld2420Props$4 as Ld2420Props, type Ld2450Props$5 as Ld2450Props, type LibretinyProps$1 as LibretinyProps, type LightBrightnessOnlyLightDefaultTransitionLengthProps, type LightBrightnessOnlyLightFlashTransitionLengthProps, type LightInitialStateProps, type LightProps, type LightWaveRF, type LightWebServerProps, type LightwaverfProps, type Ln882xProps, type Lock, type LockProps, type LockWebServerProps$1 as LockWebServerProps, type Logger, type LoggerProps$1 as LoggerProps, type LvglProps$6 as LvglProps, type M5stack8angleProps$1 as M5stack8angleProps, type MAX6956, type MCP23008, type MCP23016, type MCP23017, type MCP23S08, type MCP23S17, type MCP2515, type MCP3008, type MCP3204, type MCP4725, type MCP47A1, type MappingProps, type MatrixKeypadColumnsProps, type MatrixKeypadProps, type MatrixKeypadRowsProps, type Max6956Props$1 as Max6956Props, type Mcp23008Props, type Mcp23016Props, type Mcp23017Props, type Mcp23s08Props, type Mcp23s17Props, type Mcp3008Props$1 as Mcp3008Props, type Mcp3204Props$1 as Mcp3204Props, type Mcp4461Props$1 as Mcp4461Props, type Mcp4728Props$1 as Mcp4728Props, type MdnsProps, type MdnsServicesProps, type MediaPlayerProps, type MediaSourceProps, type MicroNova, type MicroWakeWordMicrophoneProps, type MicroWakeWordModelsProps, type MicroWakeWordProps, type MicronovaProps$4 as MicronovaProps, type Microphone, type MicrophoneProps, type Modbus, type ModbusControllerCommandThrottleProps, type ModbusControllerProps$5 as ModbusControllerProps, type ModbusControllerServerCourtesyResponseProps, type ModbusControllerServerRegistersProps, type ModbusProps, type ModbusSendWaitTimeProps, type ModbusTurnaroundTimeProps, type MopekaBleProps, type Mpr121Props, type MqttBirthMessageProps, type MqttKeepaliveProps, type MqttLogTopicProps, type MqttProps, type MqttRebootTimeoutProps, type MqttShutdownMessageProps, type MqttWillMessageProps, type Msa3xxCommonCalibrationProps, type Msa3xxCommonTransformProps, type Msa3xxProps$2 as Msa3xxProps, type My9231Props$1 as My9231Props, type NTC, type NetworkProps, type Nextion, type Nrf52DfuProps$1 as Nrf52DfuProps, type Nrf52FrameworkProps$1 as Nrf52FrameworkProps, type Nrf52FrameworkPropsAdvancedProps$1 as Nrf52FrameworkPropsAdvancedProps, type Nrf52Props$1 as Nrf52Props, type Nrf52Reg0Props$1 as Nrf52Reg0Props, type NumberProps, type NumberWebServerProps$1 as NumberWebServerProps, type Numeric, type OneWireProps, type OnlineImageProps, type OpenthermProps$3 as OpenthermProps, type OpenthreadPollPeriodProps, type OpenthreadProps, type OtaProps, type OutputProps$1 as OutputProps, type PCD8544, type PN532, type PN7150, type PN7160, type PZEM004T, type PZEMAC, type PZEMDC, type PackagesPackageFilesProps, type PackagesProps, type PackagesStringProps, type PackagesStringPropsFilesProps, type PacketTransportEncryptionEncryptionProps, type PacketTransportProps$1 as PacketTransportProps, type PacketTransportTransportBinarySensorsProps, type PacketTransportTransportPingPongRecycleTimeProps, type PacketTransportTransportProvidersProps, type PacketTransportTransportProvidersPropsEncryptionProps, type PacketTransportTransportSensorsProps, type Parented, type Pca6416aProps, type Pca9554Props, type Pca9685Props, type Pcf8574Props, type Pi4ioe5v6408Props, type Pin, type PinConfig, type PinMode, type Pipsolar, type PipsolarProps$3 as PipsolarProps, type Pn532I2cProps, type Pn532Props, type Pn532SpiProps, type Pn7150I2cProps, type Pn7150I2cTagTtlProps, type Pn7160I2cProps, type Pn7160SpiProps, type PollingComponent, type PowerSupplyEnableTimeProps, type PowerSupplyKeepOnTimeProps, type PowerSupplyProps, type PreferencesProps, type PrometheusProps, type PsramProps, type PylontechProps$2 as PylontechProps, type QrCodeProps, type QspiDbiDisplayBaseDimensionsProps, type RC522, type RadonEyeBleProps, type Rc522I2cProps, type Rc522SpiProps, type Rd03dProps$1 as Rd03dProps, type Rd03dThrottleProps, type Rdm6300Props, type Ref, RefHandle, type RemoteReceiverFilterProps, type RemoteReceiverIdleProps, type RemoteReceiverProps, type RemoteTransmitterProps, type RfBridgeProps, type Rp2040BleProps, type Rp2040FrameworkProps, type Rp2040Props, type Rp2040WatchdogTimeoutProps, type Rtl87xxProps, type Rtttl, type RtttlProps, type RuntimeStatsLogIntervalProps, type RuntimeStatsProps, type RuuviBleProps, type RuuviTag, type SM16716, type SM2135, type SM2235, type SM2335, type ST7701S, type ST7735, type ST7789V, type ST7920, type SX126x, type SX127x, type SafeModeBootIsGoodAfterProps, type SafeModeProps$1 as SafeModeProps, type SafeModeRebootTimeoutProps, type Script, type ScriptDefinition, type ScriptProps, type Sdl, type SeeedMr24hpc1Props$4 as SeeedMr24hpc1Props, type SeeedMr60bha2Props$1 as SeeedMr60bha2Props, type SeeedMr60fda2Props$1 as SeeedMr60fda2Props, type Select, type SelectProps, type SelectWebServerProps$1 as SelectWebServerProps, type Sensor, type SensorExpireAfterProps$1 as SensorExpireAfterProps, type SensorProps, type SensorWebServerProps$1 as SensorWebServerProps, type SerialProxyProps, type Servo, type ServoAutoDetachTimeProps, type ServoProps, type ServoTransitionLengthProps, type Sha256Props, type Sim800lProps, type Sm16716Props, type Sm2135Props, type Sm2235Props, type Sm2335Props, type Sml, type SmlProps$1 as SmlProps, type Sn74hc165Props, type Sn74hc595Props, type SocketProps, type Speaker, type SpeakerProps, type SpiDeviceProps, type SpiProps, type SplitBufferProps, type Sprinkler, type SprinklerAutoAdvanceSwitchProps, type SprinklerAutoAdvanceSwitchPropsAvailabilityProps, type SprinklerAutoAdvanceSwitchPropsWebServerProps, type SprinklerMainSwitchProps, type SprinklerMainSwitchPropsAvailabilityProps, type SprinklerMainSwitchPropsWebServerProps, type SprinklerManualSelectionDelayProps, type SprinklerMultiplierNumberProps, type SprinklerMultiplierNumberPropsAvailabilityProps, type SprinklerMultiplierNumberPropsWebServerProps, type SprinklerProps, type SprinklerPumpStartPumpDelayProps, type SprinklerPumpStartValveDelayProps, type SprinklerPumpStopPumpDelayProps, type SprinklerPumpStopValveDelayProps, type SprinklerQueueEnableSwitchProps, type SprinklerQueueEnableSwitchPropsAvailabilityProps, type SprinklerQueueEnableSwitchPropsWebServerProps, type SprinklerRepeatNumberProps, type SprinklerRepeatNumberPropsAvailabilityProps, type SprinklerRepeatNumberPropsWebServerProps, type SprinklerReverseSwitchProps, type SprinklerReverseSwitchPropsAvailabilityProps, type SprinklerReverseSwitchPropsWebServerProps, type SprinklerStandbySwitchProps, type SprinklerStandbySwitchPropsAvailabilityProps, type SprinklerStandbySwitchPropsWebServerProps, type SprinklerValveOpenDelayProps, type SprinklerValveOverlapProps, type SprinklerValvesProps, type SprinklerValvesPropsEnableSwitchProps, type SprinklerValvesPropsEnableSwitchPropsAvailabilityProps, type SprinklerValvesPropsEnableSwitchPropsWebServerProps, type SprinklerValvesPropsRunDurationNumberProps, type SprinklerValvesPropsRunDurationNumberPropsAvailabilityProps, type SprinklerValvesPropsRunDurationNumberPropsWebServerProps, type SprinklerValvesPropsRunDurationProps, type SprinklerValvesPropsValveSwitchProps, type SprinklerValvesPropsValveSwitchPropsAvailabilityProps, type SprinklerValvesPropsValveSwitchPropsWebServerProps, type StatsdBinarySensorsProps, type StatsdProps, type StatsdSensorsProps, type StatusLedProps, type Stepper, type StepperProps, type SubstitutionsProps, type Sun, type SunGtil2Props$1 as SunGtil2Props, type SunProps$1 as SunProps, type SwitchProps, type SwitchWebServerProps$1 as SwitchWebServerProps, type Sx126xProps, type Sx126xTcxoDelayProps, type Sx127xProps, type Sx1509KeypadProps, type Sx1509Props, type Sy6970Props$1 as Sy6970Props, type Syslog, type SyslogProps, type TLC5947, type TLC5971, type Tca9548aChannelsProps, type Tca9548aProps, type Tca9555Props, type TeleInfo, type TeleinfoProps$1 as TeleinfoProps, type Text, type TextProps, type TextSensorProps, type TextSensorWebServerProps$1 as TextSensorWebServerProps, type TextWebServerProps$1 as TextWebServerProps, type TimeProps, type TinyUSB, type TinyusbProps, type Tlc59208fProps, type Tlc5947Props, type Tlc5971Props, type Tm1651Props, type Tormatic, type Touchscreen, type TouchscreenCalibrationProps, type TouchscreenProps, type TouchscreenTouchTimeoutProps, type TouchscreenTransformProps, type Trigger, type Ttp229BsfProps, type Ttp229LsfProps, type Tuya, type TuyaProps, type ULN2003, type UartFlushTimeoutProps, type UartProps, type UdpProps, type UpdateProps, type UpdateWebServerProps$1 as UpdateWebServerProps, type UponorSmatrixProps, type UsbCdcAcmInterfacesProps, type UsbCdcAcmProps, type UsbHostDevicesProps, type UsbHostProps, type UsbUartProps, type VBus, type Valve, type ValveProps, type ValveWebServerProps$1 as ValveWebServerProps, type VbusProps, type VoiceAssistantConversationTimeoutProps, type VoiceAssistantMicrophoneProps, type VoiceAssistantProps, type WaterHeaterProps, type WaterHeaterVisualProps$1 as WaterHeaterVisualProps, type WebServerAuthProps, type WebServerBaseProps, type WebServerIdfProps, type WebServerProps, type WebServerSortingGroupsProps, type Whynter, type Wiegand, type WiegandProps, type WifiEapProps, type WifiManualIpProps, type WifiNetworksProps, type WifiNetworksPropsEapProps, type WifiNetworksPropsManualIpProps, type WifiProps, type WifiRebootTimeoutProps, type Wireguard, type WireguardPeerPersistentKeepaliveProps, type WireguardProps, type WireguardRebootTimeoutProps, type Wk2132I2cProps, type Wk2132SpiProps, type Wk2168I2cProps, type Wk2168SpiProps, type Wk2204I2cProps, type Wk2204SpiProps, type Wk2212I2cProps, type Wk2212SpiProps, type WledProps, type XiaomiBleProps, type XiaomiRtcgq02lmProps, type Xl9535Props, type Xpt2046Props, type ZephyrBleServerProps, type ZigbeeProps, type ZwaveProxyProps, type _AlarmControlPanel, type _As3935, type _BedjetClient, type _BinarySensor, type _Bk72xxConfig, type _BleClient, type _BthomeMithermometerBleDevice, type _Button, type _Canbus, type _Climate, type _CoreComponent, type _CoreEntityBase, type _CoreMqttCommandComponent, type _CoreMqttComponent, type _Cover, type _Datetime, type _DisplayBasicDisplay, type _DisplayFullDisplay, type _Emc2101Component, type _Esp32HostedUpdateBase, type _EthernetBase, type _EthernetRmii, type _EthernetSpi, type _Event, type _Fan, type _HomeassistantHomeAssistantImport, type _HomeassistantHomeAssistantImportControl, type _I2sAudioMicrophoneBase, type _I2sAudioSpeakerBase, type _Light, type _LightAddressableLight, type _LightBinaryLight, type _LightBrightnessOnlyLight, type _LightRgbLight, type _Lock, type _MediaPlayer, type _Microphone, type _ModbusControllerModbusitembaseschema, type _Msa3xxCommon, type _Msa3xxMsaSensor, type _NextionBinarySensorConfigBinarySensor, type _NextionSensorConfigSensorComponent, type _Number, type _OtaBaseOta, type _OutputBinaryOutput, type _OutputFloatOutput, type _PackagesPackage, type _PacketTransportBinarySensorStatusSensor, type _PacketTransportEncryption, type _PacketTransportTransport, type _PipsolarComponent, type _Pn532, type _PylontechComponent, type _QspiDbiDisplayBase, type _Rc522, type _Select, type _Sensor, type _Sn74hc595Common, type _Speaker, type _Stepper, type _Switch, type _TeleinfoListener, type _TemplateDatetime_Base, type _Text, type _TextSensor, type _Time, type _Touchscreen, type _UartDevice, type _Udp, type _Update, type _UponorSmatrixDevice, type _Valve, type _WaterHeater, type _esphome_hub75_HUB75Display, type a01nyub_A01nyubComponent, type a02yyuw_A02yyuwComponent, type a4988_A4988, type absolute_humidity_AbsoluteHumidityComponent, type ac_dimmer_AcDimmer, type adc128s102_ADC128S102, type adc128s102_ADC128S102Sensor, type adc_ADCSensor, type adc_dt_spec, type addressable_light_AddressableLightDisplay, type ade7880_ADE7880, type ade7880_NeutralChannel, type ade7880_PowerChannel, type ade7953_base_ADE7953, type ade7953_i2c_AdE7953I2c, type ade7953_spi_AdE7953Spi, type ads1115_ADS1115Component, type ads1115_ADS1115Sensor, type ads1118_ADS1118, type ads1118_ADS1118Sensor, type ags10_AGS10Component, type aht10_AHT10Component, type aic3204_AIC3204, type airthings_ble_AirthingsListener, type airthings_wave_base_AirthingsWaveBase, type airthings_wave_mini_AirthingsWaveMini, type airthings_wave_plus_AirthingsWavePlus, type alarm_control_panel_AlarmControlPanel, type alpha3_Alpha3, type am2315c_AM2315C, type am2320_AM2320Component, type am43_Am43, type am43_Am43Component, type analog_threshold_AnalogThresholdBinarySensor, type animation_Animation, type anova_Anova, type apds9306_APDS9306, type apds9960_APDS9960, type api_APIServer, type aqi_AQISensor, type as3935_AS3935Component, type as3935_i2c_I2CAS3935Component, type as3935_spi_SPIAS3935Component, type as5600_AS5600Component, type as5600_AS5600Sensor, type as7341_AS7341Component, assertHookCall, type at581x_AT581XComponent, type at581x_RFSwitch, type atc_mithermometer_ATCMiThermometer, type atm90e26_ATM90E26Component, type atm90e32_ATM90E32ClearGainCalibrationButton, type atm90e32_ATM90E32ClearOffsetCalibrationButton, type atm90e32_ATM90E32ClearPowerOffsetCalibrationButton, type atm90e32_ATM90E32Component, type atm90e32_ATM90E32GainCalibrationButton, type atm90e32_ATM90E32Number, type atm90e32_ATM90E32OffsetCalibrationButton, type atm90e32_ATM90E32PowerOffsetCalibrationButton, type audio_AudioFile, type audio_adc_AudioAdc, type audio_dac_AudioDac, type axs15231_AXS15231Touchscreen, type b_parasite_BParasite, type ballu_BalluClimate, type bang_bang_BangBangClimate, type bedjet_BedJetClimate, type bedjet_BedJetFan, type bedjet_BedJetHub, type bedjet_BedjetSensor, type beken_spi_led_strip_BekenSPILEDStripLightOutput, type bh1750_BH1750Sensor, type bh1900nux_BH1900NUXSensor, type binary_BinaryFan, type binary_BinaryLightOutput, type binary_sensor_BinarySensor, type binary_sensor_map_BinarySensorMap, type bl0906_BL0906, type bl0939_BL0939, type bl0940_BL0940, type bl0940_BL0940Number, type bl0940_CalibrationNumber, type bl0940_CalibrationResetButton, type bl0942_BL0942, type ble_client_BLEBinaryOutput, type ble_client_BLEClient, type ble_client_BLEClientNode, type ble_client_BLEClientRSSISensor, type ble_client_BLEClientSwitch, type ble_client_BLESensor, type ble_client_BLETextSensor, type ble_nus_BLENUS, type ble_presence_BLEPresenceDevice, type ble_rssi_BLERSSISensor, type ble_scanner_BLEScanner, type bluetooth_proxy_BluetoothConnection, type bluetooth_proxy_BluetoothProxy, type bm8563_BM8563, type bme680_BME680Component, type bme680_bsec_BME680BSECComponent, type bme68x_bsec2_BME68xBSEC2Component, type bmi160_BMI160Component, type bmp085_BMP085Component, type bp1658cj_BP1658CJ, type bp1658cj_BP1658CJ_Channel, type bp5758d_BP5758D, type bp5758d_BP5758D_Channel, type bthome_mithermometer_BTHomeMiThermometer, type button_Button, type camera_Encoder, type camera_encoder_ESP32CameraJPEGEncoder, type camera_encoder_EncoderBufferImpl, type canbus_CanbusComponent, type cap1188_CAP1188Channel, type cap1188_CAP1188Component, type captive_portal_CaptivePortal, type cc1101_CC1101Component, type ccs811_CCS811Component, type cd74hc4067_CD74HC4067Component, type cd74hc4067_CD74HC4067Sensor, type ch422g_CH422GComponent, type ch423_CH423Component, type chsc6x_CHSC6XTouchscreen, type climate_Climate, type climate_ir_ClimateIR, type climate_ir_lg_LgIrClimate, type cm1106_CM1106Component, type color_temperature_CTLightOutput, type combination_KalmanCombinationComponent, type combination_LinearCombinationComponent, type combination_MaximumCombinationComponent, type combination_MeanCombinationComponent, type combination_MedianCombinationComponent, type combination_MinimumCombinationComponent, type combination_MostRecentCombinationComponent, type combination_RangeCombinationComponent, type combination_SumCombinationComponent, type coolix_CoolixClimate, type copy_CopyBinarySensor, type copy_CopyButton, type copy_CopyCover, type copy_CopyFan, type copy_CopyLock, type copy_CopyNumber, type copy_CopySelect, type copy_CopySensor, type copy_CopySwitch, type copy_CopyText, type copy_CopyTextSensor, type cover_Cover, createContext, createElement, type cs5460a_CS5460AComponent, type cse7761_CSE7761Component, type cse7766_CSE7766Component, type cst226_CST226Button, type cst226_CST226ButtonListener, type cst226_CST226Touchscreen, type cst816_CST816Touchscreen, type ct_clamp_CTClampSensor, type current_based_CurrentBasedCover, type cwww_CWWWLightOutput, type dac7678_DAC7678Channel, type dac7678_DAC7678Output, type daikin_DaikinClimate, type daikin_arc_DaikinArcClimate, type daikin_brc_DaikinBrcClimate, type dallas_temp_DallasTemperatureSensor, type daly_bms_DalyBmsComponent, type datetime_DateEntity, type datetime_DateTimeBase, type datetime_DateTimeEntity, type datetime_TimeEntity, type debug_DebugComponent, type deep_sleep_DeepSleepComponent, delay, type delonghi_DelonghiClimate, type dew_point_DewPointComponent, type dfplayer_DFPlayer, type dfrobot_sen0395_DfrobotSen0395Component, type dfrobot_sen0395_DfrobotSen0395Switch, type dfrobot_sen0395_Sen0395LedSwitch, type dfrobot_sen0395_Sen0395PowerSwitch, type dfrobot_sen0395_Sen0395StartAfterBootSwitch, type dfrobot_sen0395_Sen0395UartPresenceSwitch, type dht12_DHT12Component, type dht_DHT, type display_Display, type display_DisplayBuffer, type display_DisplayPage, type display_menu_base_DisplayMenuComponent, type dlms_meter_DlmsMeterComponent, type dps310_DPS310Component, type ds1307_DS1307Component, type ds2484_DS2484OneWireBus, type duty_cycle_DutyCycleSensor, type duty_time_sensor_DutyTimeSensor, type e131_E131Component, type ee895_EE895Component, type ektf2232_EKTF2232Touchscreen, type emc2101_EMC2101Output, type emc2101_EMC2101Sensor, type emc2101_Emc2101Component, type emmeti_EmmetiClimate, type endstop_EndstopCover, type ens210_ENS210Component, type es7210_ES7210, type es7243e_ES7243E, type es8156_ES8156, type es8311_ES8311, type es8388_ADCInputMicSelect, type es8388_DacOutputSelect, type es8388_ES8388, type esp32_ble_ESP32BLE, type esp32_ble_GAPEventHandler, type esp32_ble_GATTcEventHandler, type esp32_ble_GATTsEventHandler, type esp32_ble_beacon_ESP32BLEBeacon, type esp32_ble_client_BLEClientBase, type esp32_ble_server_BLECharacteristic, type esp32_ble_server_BLEDescriptor, type esp32_ble_server_BLEServer, type esp32_ble_server_BLEService, type esp32_ble_server_esp32_ble_server_automations_BLECharacteristicSetValueAction, type esp32_ble_tracker_ESP32BLETracker, type esp32_ble_tracker_ESPBTClient, type esp32_ble_tracker_ESPBTDeviceListener, type esp32_camera_ESP32Camera, type esp32_camera_web_server_CameraWebServer, type esp32_can_ESP32Can, type esp32_dac_ESP32DAC, type esp32_hosted_Esp32HostedUpdate, type esp32_improv_ESP32ImprovComponent, type esp32_rmt_led_strip_ESP32RMTLEDStripLightOutput, type esp32_touch_ESP32TouchBinarySensor, type esp32_touch_ESP32TouchComponent, type esp8266_pwm_ESP8266PWM, type esp_ldo_EspLdo, type esphome_ESPHomeOTAComponent, type esphome_dsmr_Dsmr, type espnow_ESPNowComponent, type espnow_ESPNowTransport, type ethernet_EthernetComponent, type ethernet_info_DNSAddressEthernetInfo, type ethernet_info_IPAddressEthernetInfo, type ethernet_info_MACAddressEthernetInfo, type event_Event, type ezo_EZOSensor, type ezo_pmp_EzoPMP, type factory_reset_FactoryResetButton, type factory_reset_FactoryResetComponent, type factory_reset_FactoryResetSwitch, type fan_Fan, type feedback_FeedbackCover, findInScope, type fingerprint_grow_FingerprintGrowComponent, type font_Font, type font_Glyph, type fs3000_FS3000Component, type ft5x06_FT5x06Touchscreen, type ft63x6_FT63X6Touchscreen, type fujitsu_general_FujitsuGeneralClimate, type gcja5_GCJA5Component, type gdk101_GDK101Component, getCurrentComponentName, getCurrentHookIndex, getCurrentHookPath, type gl_r01_i2c_GLR01I2CComponent, type gp2y1010au0f_GP2Y1010AU0FSensor, type gp8403_GP8403Component, type gp8403_GP8403Output, type gpio_GPIOBinaryOutput, type gpio_GPIOBinarySensor, type gpio_GPIOOneWireBus, type gpio_GPIOSwitch, type gps_GPS, type gps_GPSListener, type gps_GPSTime, type graph_Graph, type graph_GraphLegend, type graph_GraphTrace, type graphical_display_menu_GraphicalDisplayMenu, type gree_GreeClimate, type gree_GreeModeBitSwitch, type grove_gas_mc_v2_GroveGasMultichannelV2Component, type grove_tb6612fng_GroveMotorDriveTB6612FNG, type growatt_solar_GrowattSolar, type gt911_GT911Button, type gt911_GT911ButtonListener, type gt911_GT911Touchscreen, type haier_BeeperSwitch, type haier_DisplaySwitch, type haier_HaierClimateBase, type haier_HealthModeSwitch, type haier_HonClimate, type haier_QuietModeSwitch, type haier_SelfCleaningButton, type haier_Smartair2Climate, type haier_SteriCleaningButton, type havells_solar_HavellsSolar, type hbridge_HBridgeFan, type hbridge_HBridgeLightOutput, type hbridge_HBridgeSwitch, type hc8_HC8Component, type hdc1080_HDC1080Component, type hdc2010_HDC2010Component, type hdc302x_HDC302XComponent, type he60r_HE60rCover, type heatpumpir_HeatpumpIRClimate, type hitachi_ac344_HitachiClimate, type hitachi_ac424_HitachiClimate, type hlk_fm22x_HlkFm22xComponent, type hlw8012_HLW8012Component, type hlw8032_HLW8032Component, type hm3301_HM3301Component, type hmc5883l_HMC5883LComponent, type homeassistant_HomeassistantBinarySensor, type homeassistant_HomeassistantNumber, type homeassistant_HomeassistantSensor, type homeassistant_HomeassistantSwitch, type homeassistant_HomeassistantTextSensor, type homeassistant_HomeassistantTime, type honeywell_hih_i2c_HoneywellHIComponent, type honeywellabp2_i2c_HONEYWELLABP2Sensor, type honeywellabp_HONEYWELLABPSensor, type host_HostTime, type hrxl_maxsonar_wr_HrxlMaxsonarWrComponent, type hte501_HTE501Component, type http_request_HttpRequestComponent, type http_request_HttpRequestUpdate, type http_request_OtaHttpRequestComponent, type htu21d_HTU21DComponent, type htu31d_HTU31DComponent, type hx711_HX711Sensor, type hydreon_rgxx_HydreonRGxxBinaryComponent, type hydreon_rgxx_HydreonRGxxComponent, type hyt271_HYT271Component, type i2c_I2CBus, type i2c_I2CDevice, type i2c_InternalI2CBus, type i2c_device_I2CDeviceComponent, type i2s_audio_I2SAudioBase, type i2s_audio_I2SAudioComponent, type i2s_audio_I2SAudioIn, type i2s_audio_I2SAudioMediaPlayer, type i2s_audio_I2SAudioMicrophone, type i2s_audio_I2SAudioOut, type i2s_audio_I2SAudioSpeaker, type iaqcore_IAQCore, type ili9xxx_ILI9XXXDisplay, type image_Image, type improv_serial_ImprovSerialComponent, type ina219_INA219Component, type ina226_INA226Component, type ina260_INA260Component, type ina2xx_base_INA2XX, type ina2xx_i2c_INA2XXI2C, type ina2xx_spi_INA2XXSPI, type ina3221_INA3221Component, type infrared_Infrared, type inkbird_ibsth1_mini_InkbirdIbstH1Mini, type inkplate_Inkplate, type integration_IntegrationSensor, type internal_temperature_InternalTemperatureSensor, type interval_IntervalTrigger, type ir_rf_proxy_IrRfProxy, isRef, type jsn_sr04t_Jsnsr04tComponent, type kamstrup_kmp_KamstrupKMPComponent, type key_collector_KeyCollector, type key_provider_KeyProvider, type kmeteriso_KMeterISOComponent, type kuntze_Kuntze, type lc709203f_Lc709203f, type lcd_base_LCDDisplay, type lcd_gpio_GPIOLCDDisplay, type lcd_menu_LCDCharacterMenuComponent, type lcd_pcf8574_PCF8574LCDDisplay, type ld2410_BaudRateSelect, type ld2410_BluetoothSwitch, type ld2410_DistanceResolutionSelect, type ld2410_EngineeringModeSwitch, type ld2410_FactoryResetButton, type ld2410_GateThresholdNumber, type ld2410_LD2410Component, type ld2410_LightOutControlSelect, type ld2410_LightThresholdNumber, type ld2410_MaxDistanceTimeoutNumber, type ld2410_QueryButton, type ld2410_RestartButton, type ld2412_BaudRateSelect, type ld2412_BluetoothSwitch, type ld2412_DistanceResolutionSelect, type ld2412_EngineeringModeSwitch, type ld2412_FactoryResetButton, type ld2412_GateThresholdNumber, type ld2412_LD2412Component, type ld2412_LightOutControlSelect, type ld2412_LightThresholdNumber, type ld2412_MaxDistanceTimeoutNumber, type ld2412_QueryButton, type ld2412_RestartButton, type ld2412_StartDynamicBackgroundCorrectionButton, type ld2420_LD2420ApplyConfigButton, type ld2420_LD2420BinarySensor, type ld2420_LD2420Component, type ld2420_LD2420FactoryResetButton, type ld2420_LD2420GateSelectNumber, type ld2420_LD2420MaxDistanceNumber, type ld2420_LD2420MinDistanceNumber, type ld2420_LD2420MoveSensFactorNumber, type ld2420_LD2420MoveThresholdNumbers, type ld2420_LD2420RestartModuleButton, type ld2420_LD2420RevertConfigButton, type ld2420_LD2420Select, type ld2420_LD2420Sensor, type ld2420_LD2420StillSensFactorNumber, type ld2420_LD2420StillThresholdNumbers, type ld2420_LD2420TextSensor, type ld2420_LD2420TimeoutNumber, type ld2450_BaudRateSelect, type ld2450_BluetoothSwitch, type ld2450_FactoryResetButton, type ld2450_LD2450Component, type ld2450_MultiTargetSwitch, type ld2450_PresenceTimeoutNumber, type ld2450_RestartButton, type ld2450_ZoneCoordinateNumber, type ld2450_ZoneTypeSelect, type ledc_LEDCOutput, type libretiny_ArduinoInternalGPIOPin, type libretiny_LTComponent, type libretiny_pwm_LibreTinyPWM, type light_AddressableLight, type light_AddressableLightState, type light_AddressableLightWrapper, type light_LightOutput, type light_LightState, type lightwaverf_LightWaveRF, type lilygo_t5_47_LilygoT547Touchscreen, type lm75b_LM75BComponent, type lock_Lock, logger, type logger_Logger, type logger_LoggerLevelSelect, type lps22_LPS22Component, type ltr390_LTR390Component, type ltr501_LTRAlsPs501Component, type ltr_als_ps_LTRAlsPsComponent, type lv_led_t, type lvgl_LVGLNumber, type lvgl_LVGLSelect, type lvgl_LVGLSwitch, type lvgl_LVGLText, type lvgl_LVLight, type lvgl_LvPseudoButton, type m5stack_8angle_M5Stack8AngleComponent, type m5stack_8angle_M5Stack8AngleKnobSensor, type m5stack_8angle_M5Stack8AngleLightOutput, type m5stack_8angle_M5Stack8AngleSwitchBinarySensor, type matrix_keypad_MatrixKeypad, type matrix_keypad_MatrixKeypadBinarySensor, type max17043_MAX17043Component, type max31855_MAX31855Sensor, type max31856_MAX31856Sensor, type max31865_MAX31865Sensor, type max44009_MAX44009Sensor, type max6675_MAX6675Sensor, type max6956_MAX6956, type max6956_MAX6956LedChannel, type max7219_MAX7219Component, type max7219digit_MAX7219Component, type max9611_MAX9611Component, type mcp23008_MCP23008, type mcp23016_MCP23016, type mcp23017_MCP23017, type mcp23s08_MCP23S08, type mcp23s17_MCP23S17, type mcp23x08_base_MCP23X08Base, type mcp23x17_base_MCP23X17Base, type mcp23xxx_base_MCP23XXXBase, type mcp2515_MCP2515, type mcp3008_MCP3008, type mcp3008_MCP3008Sensor, type mcp3204_MCP3204, type mcp3204_MCP3204Sensor, type mcp3221_MCP3221Sensor, type mcp4461_Mcp4461Component, type mcp4461_Mcp4461Wiper, type mcp4725_MCP4725, type mcp4728_MCP4728Channel, type mcp4728_MCP4728Component, type mcp47a1_MCP47A1, type mcp9600_MCP9600Component, type mcp9808_MCP9808Sensor, type mdns_MDNSComponent, type media_player_MediaPlayer, type media_source_MediaSource, type mhz19_MHZ19Component, type micro_wake_word_MicroWakeWord, type micro_wake_word_WakeWordModel, type micronova_MicroNova, type micronova_MicroNovaButton, type micronova_MicroNovaListener, type micronova_MicroNovaNumber, type micronova_MicroNovaSensor, type micronova_MicroNovaSwitch, type micronova_MicroNovaTextSensor, type microphone_Microphone, type microphone_MicrophoneSource, type mics_4514_MICS4514Component, type midea_ac_AirConditioner, type midea_ir_MideaIR, type mitsubishi_MitsubishiClimate, type mixer_speaker_MixerSpeaker, type mixer_speaker_SourceSpeaker, type mlx90393_MLX90393Cls, type mlx90614_MLX90614Component, type mmc5603_MMC5603Component, type mmc5983_MMC5983Component, type modbus_Modbus, type modbus_ModbusDevice, type modbus_controller_ModbusBinaryOutput, type modbus_controller_ModbusBinarySensor, type modbus_controller_ModbusController, type modbus_controller_ModbusFloatOutput, type modbus_controller_ModbusNumber, type modbus_controller_ModbusSelect, type modbus_controller_ModbusSensor, type modbus_controller_ModbusSwitch, type modbus_controller_ModbusTextSensor, type modbus_controller_SensorItem, type modbus_controller_ServerRegister, type monochromatic_MonochromaticLightOutput, type mopeka_ble_MopekaListener, type mopeka_pro_check_MopekaProCheck, type mopeka_std_check_MopekaStdCheck, type mpl3115a2_MPL3115A2Component, type mpr121_MPR121BinarySensor, type mpr121_MPR121Component, type mpu6050_MPU6050Component, type mpu6886_MPU6886Component, type mqtt_MQTTAlarmControlPanelComponent, type mqtt_MQTTBinarySensorComponent, type mqtt_MQTTButtonComponent, type mqtt_MQTTClientComponent, type mqtt_MQTTClimateComponent, type mqtt_MQTTComponent, type mqtt_MQTTCoverComponent, type mqtt_MQTTDateComponent, type mqtt_MQTTDateTimeComponent, type mqtt_MQTTEventComponent, type mqtt_MQTTFanComponent, type mqtt_MQTTJSONLightComponent, type mqtt_MQTTLockComponent, type mqtt_MQTTNumberComponent, type mqtt_MQTTSelectComponent, type mqtt_MQTTSensorComponent, type mqtt_MQTTSwitchComponent, type mqtt_MQTTTextComponent, type mqtt_MQTTTextSensor, type mqtt_MQTTTimeComponent, type mqtt_MQTTUpdateComponent, type mqtt_MQTTValveComponent, type mqtt_subscribe_MQTTSubscribeSensor, type mqtt_subscribe_MQTTSubscribeTextSensor, type ms5611_MS5611Component, type ms8607_MS8607Component, type ms8607_MS8607HumidityDevice, type msa3xx_MSA3xxComponent, type my9231_MY9231OutputComponent, type my9231_MY9231OutputComponent_Channel, type nau7802_NAU7802Sensor, type neopixelbus_NeoPixelBusLightOutputBase, type nextion_Nextion, type nextion_NextionBinarySensor, type nextion_NextionSensor, type nextion_NextionSwitch, type nextion_NextionTextSensor, type nfc_NfcTagBinarySensor, type nfc_NfcTagListener, type nfc_Nfcc, type noblex_NoblexClimate, type npi19_NPI19Component, type nrf52_DeviceFirmwareUpdate, type ntc_NTC, type number_Number, type one_wire_OneWireBus, type one_wire_OneWireDevice, type online_image_OnlineImage, type opentherm_OpenthermHub, type opentherm_OpenthermInput, type opentherm_OpenthermNumber, type opentherm_OpenthermOutput, type opentherm_OpenthermSwitch, type openthread_OpenThreadComponent, type openthread_OpenThreadSrpComponent, type openthread_info_ChannelOpenThreadInfo, type openthread_info_Eui64OpenThreadInfo, type openthread_info_ExtAddrOpenThreadInfo, type openthread_info_ExtPanIdOpenThreadInfo, type openthread_info_IPAddressOpenThreadInfo, type openthread_info_NetworkKeyOpenThreadInfo, type openthread_info_NetworkNameOpenThreadInfo, type openthread_info_PanIdOpenThreadInfo, type openthread_info_Rloc16OpenThreadInfo, type openthread_info_RoleOpenThreadInfo, type opt3001_OPT3001Sensor, type ota_OTAComponent, type output_BinaryOutput, type output_FloatOutput, type output_OutputButton, type output_OutputLock, type output_OutputSwitch, type packet_transport_PacketTransport, type partition_PartitionLightOutput, type pca6416a_PCA6416AComponent, type pca9554_PCA9554Component, type pca9685_PCA9685Channel, type pca9685_PCA9685Output, type pcd8544_PCD8544, type pcf85063_PCF85063Component, type pcf8563_PCF8563Component, type pcf8574_PCF8574Component, type pi4ioe5v6408_PI4IOE5V6408Component, type pid_PIDClimate, type pid_PIDClimateSensor, type pipsolar_Pipsolar, type pipsolar_PipsolarOutput, type pipsolar_PipsolarSwitch, type pm1006_PM1006Component, type pm2005_PM2005Component, type pmsa003i_PMSA003IComponent, type pmsx003_PMSX003Component, type pmwcs3_PMWCS3Component, type pn532_PN532, type pn532_PN532BinarySensor, type pn532_i2c_PN532I2C, type pn532_spi_PN532Spi, type pn7150_PN7150, type pn7160_PN7160, type pn7160_i2c_PN7160I2C, type pn7160_spi_PN7160Spi, type power_supply_PowerSupply, type preferences_IntervalSyncer, type prometheus_PrometheusHandler, type pulse_counter_PulseCounterSensor, type pulse_meter_PulseMeterSensor, type pulse_width_PulseWidthSensor, type pvvx_mithermometer_PVVXDisplay, type pvvx_mithermometer_PVVXMiThermometer, type pylontech_PylontechComponent, type pylontech_PylontechSensor, type pylontech_PylontechTextSensor, type pzem004t_PZEM004T, type pzemac_PZEMAC, type pzemdc_PZEMDC, type qmc5883l_QMC5883LComponent, type qmp6988_QMP6988Component, type qr_code_QrCode, type qspi_dbi_QspiDbi, type qwiic_pir_QwiicPIRComponent, type radon_eye_ble_RadonEyeListener, type radon_eye_rd200_RadonEyeRD200, type rc522_RC522, type rc522_RC522BinarySensor, type rc522_i2c_RC522I2C, type rc522_spi_RC522Spi, type rd03d_RD03DComponent, type rdm6300_RDM6300BinarySensor, type rdm6300_RDM6300Component, registerInScope, type remote_base_RemoteReceiverBase, type remote_base_RemoteReceiverListener, type remote_base_RemoteTransmittable, type remote_base_RemoteTransmitterBase, type remote_receiver_RemoteReceiverComponent, type remote_transmitter_RemoteTransmitterComponent, render, type resampler_ResamplerSpeaker, type resistance_ResistanceSensor, type restart_RestartButton, type restart_RestartSwitch, type rf_bridge_RFBridgeComponent, type rgb_RGBLightOutput, type rgbct_RGBCTLightOutput, type rgbw_RGBWLightOutput, type rgbww_RGBWWLightOutput, type rotary_encoder_RotaryEncoderSensor, type rp2040_ble_RP2040BLE, type rp2040_pio_led_strip_RP2040PIOLEDStripLightOutput, type rp2040_pwm_RP2040PWM, type rpi_dpi_rgb_RpiDpiRgb, type rtttl_Rtttl, type runtime_image_RuntimeImage, type runtime_stats_RuntimeStatsCollector, type ruuvi_ble_RuuviListener, type ruuvitag_RuuviTag, type rx8130_RX8130Component, type safe_mode_SafeModeButton, type safe_mode_SafeModeComponent, type safe_mode_SafeModeSwitch, type scd30_SCD30Component, type scd4x_SCD4XComponent, type script_Script, type sdl_Sdl, type sdl_SdlTouchscreen, type sdm_meter_SDMMeter, type sdp3x_SDP3XComponent, type sds011_SDS011Component, type seeed_mr24hpc1_CustomModeNumber, type seeed_mr24hpc1_CustomSetEndButton, type seeed_mr24hpc1_CustomUnmanTimeNumber, type seeed_mr24hpc1_ExistenceBoundarySelect, type seeed_mr24hpc1_ExistenceThresholdNumber, type seeed_mr24hpc1_MR24HPC1Component, type seeed_mr24hpc1_MotionBoundarySelect, type seeed_mr24hpc1_MotionThresholdNumber, type seeed_mr24hpc1_MotionToRestTimeNumber, type seeed_mr24hpc1_MotionTriggerTimeNumber, type seeed_mr24hpc1_RestartButton, type seeed_mr24hpc1_SceneModeSelect, type seeed_mr24hpc1_SensitivityNumber, type seeed_mr24hpc1_UnderlyOpenFunctionSwitch, type seeed_mr24hpc1_UnmanTimeSelect, type seeed_mr60bha2_MR60BHA2Component, type seeed_mr60fda2_GetRadarParametersButton, type seeed_mr60fda2_HeightThresholdSelect, type seeed_mr60fda2_InstallHeightSelect, type seeed_mr60fda2_MR60FDA2Component, type seeed_mr60fda2_ResetRadarButton, type seeed_mr60fda2_SensitivitySelect, type selec_meter_SelecMeter, type select_Select, type sen0321_sensor_Sen0321Sensor, type sen21231_sensor_Sen21231Sensor, type sen5x_SEN5XComponent, type sen6x_SEN6XComponent, type senseair_SenseAirComponent, type sensirion_common_SensirionI2CDevice, type sensor_Sensor, type serial_proxy_SerialProxy, type servo_Servo, setCurrentComponentName, setCurrentHookIndex, setCurrentHookPath, type sfa30_SFA30Component, type sgp30_SGP30Component, type sgp4x_SGP4xComponent, type shelly_dimmer_ShellyDimmer, type sht3xd_SHT3XDComponent, type sht4x_SHT4XComponent, type shtcx_SHTCXComponent, type shutdown_ShutdownButton, type shutdown_ShutdownSwitch, type sigma_delta_output_SigmaDeltaOutput, type sim800l_Sim800LComponent, type slow_pwm_SlowPWMOutput, type sm10bit_base_Sm10BitBase, type sm16716_SM16716, type sm16716_SM16716_Channel, type sm2135_SM2135, type sm2135_SM2135_Channel, type sm2235_SM2235, type sm2235_SM2235_Channel, type sm2335_SM2335, type sm2335_SM2335_Channel, type sm300d2_SM300D2Sensor, type sml_Sml, type sml_SmlSensor, type sml_SmlTextSensor, type smt100_SMT100Component, type sn74hc165_SN74HC165Component, type sn74hc595_SN74HC595Component, type sn74hc595_SN74HC595GPIOComponent, type sn74hc595_SN74HC595SPIComponent, type sntp_SNTPComponent, type sonoff_d1_SonoffD1Output, type sound_level_SoundLevelComponent, type speaker_AudioPipeline, type speaker_Speaker, type speaker_SpeakerMediaPlayer, type speaker_source_PipelineContext, type speaker_source_SpeakerSourceMediaPlayer, type speed_SpeedFan, type spi_OctalSPIComponent, type spi_QuadSPIComponent, type spi_SPIComponent, type spi_SPIDevice, type spi_device_SPIDeviceComponent, type spi_led_strip_SpiLedStrip, type sprinkler_Sprinkler, type sprinkler_SprinklerControllerNumber, type sprinkler_SprinklerControllerSwitch, type sps30_SPS30Component, type ssd1306_base_SSD1306, type ssd1306_i2c_I2CSSD1306, type ssd1306_spi_SPISSD1306, type ssd1322_base_SSD1322, type ssd1322_spi_SPISSD1322, type ssd1325_base_SSD1325, type ssd1325_spi_SPISSD1325, type ssd1327_base_SSD1327, type ssd1327_i2c_I2CSSD1327, type ssd1327_spi_SPISSD1327, type ssd1331_base_SSD1331, type ssd1331_spi_SPISSD1331, type ssd1351_base_SSD1351, type ssd1351_spi_SPISSD1351, type st7567_base_ST7567, type st7567_i2c_I2CST7567, type st7567_spi_SPIST7567, type st7701s_ST7701S, type st7735_ST7735, type st7789v_ST7789V, type st7920_ST7920, type statsd_StatsdComponent, type status_StatusBinarySensor, type status_led_StatusLED, type status_led_StatusLEDLightOutput, type stepper_Stepper, type sts3x_STS3XComponent, type stts22h_STTS22HComponent, type sun_Sun, type sun_SunSensor, type sun_SunTextSensor, type sun_gtil2_SunGTIL2, type switch__Switch, type switch__SwitchBinarySensor, type sx126x_SX126x, type sx126x_SX126xListener, type sx126x_SX126xTransport, type sx127x_SX127x, type sx127x_SX127xListener, type sx127x_SX127xTransport, type sx1509_SX1509BinarySensor, type sx1509_SX1509Component, type sx1509_SX1509FloatOutputChannel, type sy6970_SY6970BatteryVoltageSensor, type sy6970_SY6970BusStatusTextSensor, type sy6970_SY6970ChargeCurrentSensor, type sy6970_SY6970ChargeDoneBinarySensor, type sy6970_SY6970ChargeStatusTextSensor, type sy6970_SY6970ChargingBinarySensor, type sy6970_SY6970Component, type sy6970_SY6970NtcStatusTextSensor, type sy6970_SY6970PrechargeCurrentSensor, type sy6970_SY6970SystemVoltageSensor, type sy6970_SY6970VbusConnectedBinarySensor, type sy6970_SY6970VbusVoltageSensor, type syslog_Syslog, type t6615_T6615Component, type tc74_TC74Component, type tca9548a_TCA9548AChannel, type tca9548a_TCA9548AComponent, type tca9555_TCA9555Component, type tcl112_Tcl112Climate, type tcs34725_TCS34725Component, type tee501_TEE501Component, type teleinfo_TeleInfo, type teleinfo_TeleInfoSensor, type teleinfo_TeleInfoTextSensor, type tem3200_TEM3200Component, type template__TemplateAlarmControlPanel, type template__TemplateBinaryOutput, type template__TemplateBinarySensor, type template__TemplateButton, type template__TemplateCover, type template__TemplateDate, type template__TemplateDateTime, type template__TemplateEvent, type template__TemplateFan, type template__TemplateFloatOutput, type template__TemplateLock, type template__TemplateNumber, type template__TemplateSelect, type template__TemplateSensor, type template__TemplateSwitch, type template__TemplateText, type template__TemplateTextSensor, type template__TemplateTime, type template__TemplateValve, type template__TemplateWaterHeater, type text_Text, type text_sensor_TextSensor, type thermopro_ble_ThermoProBLE, type thermostat_ThermostatClimate, type thermostat_ThermostatClimateTargetTempConfig, type time_RealTimeClock, type time_based_TimeBasedCover, type tinyusb_TinyUSB, type tlc59208f_TLC59208FChannel, type tlc59208f_TLC59208FOutput, type tlc5947_TLC5947, type tlc5947_TLC5947Channel, type tlc5971_TLC5971, type tlc5971_TLC5971Channel, type tm1621_TM1621Display, type tm1637_TM1637Display, type tm1637_TM1637Key, type tm1638_TM1638Component, type tm1638_TM1638Key, type tm1638_TM1638OutputLed, type tm1638_TM1638SwitchLed, type tm1651_TM1651Display, type tmp102_TMP102Component, type tmp1075_TMP1075Sensor, type tmp117_TMP117Component, toYAML, type tof10120_TOF10120Sensor, type tormatic_Tormatic, type toshiba_ToshibaClimate, type total_daily_energy_TotalDailyEnergy, type touchscreen_TouchListener, type touchscreen_Touchscreen, type touchscreen_TouchscreenBinarySensor, type tsl2561_TSL2561Sensor, type tsl2591_TSL2591Component, type tt21100_TT21100Button, type tt21100_TT21100ButtonListener, type tt21100_TT21100Touchscreen, type ttp229_bsf_TTP229BSFChannel, type ttp229_bsf_TTP229BSFComponent, type ttp229_lsf_TTP229Channel, type ttp229_lsf_TTP229LSFComponent, type tuya_Tuya, type tuya_TuyaBinarySensor, type tuya_TuyaClimate, type tuya_TuyaCover, type tuya_TuyaFan, type tuya_TuyaLight, type tuya_TuyaNumber, type tuya_TuyaSelect, type tuya_TuyaSensor, type tuya_TuyaSwitch, type tuya_TuyaTextSensor, type tx20_Tx20Component, type uart_UARTButton, type uart_UARTComponent, type uart_UARTDevice, type uart_UARTEvent, type uart_UARTSwitch, type uart_UARTTransport, type udp_UDPComponent, type udp_UDPTransport, type ufire_ec_UFireECComponent, type ufire_ise_UFireISEComponent, type uln2003_ULN2003, type ultrasonic_UltrasonicSensorComponent, type update_UpdateEntity, type uponor_smatrix_UponorSmatrixClimate, type uponor_smatrix_UponorSmatrixComponent, type uponor_smatrix_UponorSmatrixDevice, type uponor_smatrix_UponorSmatrixSensor, type uptime_UptimeSecondsSensor, type uptime_UptimeTextSensor, type uptime_UptimeTimestampSensor, type usb_cdc_acm_USBCDCACMComponent, type usb_cdc_acm_USBCDCACMInstance, type usb_host_USBClient, type usb_host_USBHost, type usb_uart_USBUartChannel, type usb_uart_USBUartComponent, type usb_uart_USBUartTypeCH34X, type usb_uart_USBUartTypeCP210X, type usb_uart_USBUartTypeCdcAcm, useContext, useRef, useScript, type valve_Valve, type vbus_DeltaSolBS2009BSensor, type vbus_DeltaSolBS2009Sensor, type vbus_DeltaSolBS2BSensor, type vbus_DeltaSolBS2Sensor, type vbus_DeltaSolBSPlusBSensor, type vbus_DeltaSolBSPlusSensor, type vbus_DeltaSolCBSensor, type vbus_DeltaSolCS2BSensor, type vbus_DeltaSolCS2Sensor, type vbus_DeltaSolCSPlusBSensor, type vbus_DeltaSolCSPlusSensor, type vbus_DeltaSolCSensor, type vbus_VBus, type vbus_VBusCustomBSensor, type vbus_VBusCustomSensor, type vbus_VBusCustomSubBSensor, type vbus_VBusCustomSubSensor, type veml3235_VEML3235Sensor, type veml7700_VEML7700Component, type version_VersionTextSensor, type vl53l0x_VL53L0XSensor, type voice_assistant_VoiceAssistant, type voltage_sampler_VoltageSampler, type wake_on_lan_WakeOnLanButton, type water_heater_WaterHeater, type waveshare_epaper_WaveshareEPaperBase, type web_server_WebServer, type web_server_WebServerOTAComponent, type web_server_base_WebServerBase, type weikai_WeikaiComponent, type weikai_i2c_WeikaiComponentI2C, type weikai_spi_WeikaiComponentSPI, type whirlpool_WhirlpoolClimate, type whynter_Whynter, type wiegand_Wiegand, type wifi_WiFiAP, type wifi_WiFiComponent, type wifi_info_BSSIDWiFiInfo, type wifi_info_DNSAddressWifiInfo, type wifi_info_IPAddressWiFiInfo, type wifi_info_MacAddressWifiInfo, type wifi_info_PowerSaveModeWiFiInfo, type wifi_info_SSIDWiFiInfo, type wifi_info_ScanResultsWiFiInfo, type wifi_signal_WiFiSignalSensor, type wireguard_Wireguard, withContext, withScriptScope, type wl_134_Wl134Component, type wts01_WTS01Sensor, type x9c_X9cOutput, type xgzp68xx_XGZP68XXComponent, type xiaomi_ble_XiaomiListener, type xiaomi_cgd1_XiaomiCGD1, type xiaomi_cgdk2_XiaomiCGDK2, type xiaomi_cgg1_XiaomiCGG1, type xiaomi_cgpr1_XiaomiCGPR1, type xiaomi_gcls002_XiaomiGCLS002, type xiaomi_hhccjcy01_XiaomiHHCCJCY01, type xiaomi_hhccjcy10_XiaomiHHCCJCY10, type xiaomi_hhccpot002_XiaomiHHCCPOT002, type xiaomi_jqjcy01ym_XiaomiJQJCY01YM, type xiaomi_lywsd02_XiaomiLYWSD02, type xiaomi_lywsd02mmc_XiaomiLYWSD02MMC, type xiaomi_lywsd03mmc_XiaomiLYWSD03MMC, type xiaomi_lywsdcgq_XiaomiLYWSDCGQ, type xiaomi_mhoc303_XiaomiMHOC303, type xiaomi_mhoc401_XiaomiMHOC401, type xiaomi_miscale_XiaomiMiscale, type xiaomi_mjyd02yla_XiaomiMJYD02YLA, type xiaomi_mue4094rt_XiaomiMUE4094RT, type xiaomi_rtcgq02lm_XiaomiRTCGQ02LM, type xiaomi_wx08zm_XiaomiWX08ZM, type xiaomi_xmwsdj04mmc_XiaomiXMWSDJ04MMC, type xl9535_XL9535Component, type xpt2046_XPT2046Component, type yashima_YashimaClimate, type zephyr_CdcAcm, type zephyr_ble_server_BLEServer, type zephyr_mcumgr_OTAComponent, type zhlt01_ZHLT01Climate, type zigbee_ZigbeeBinarySensor, type zigbee_ZigbeeComponent, type zigbee_ZigbeeNumber, type zigbee_ZigbeeSensor, type zigbee_ZigbeeSwitch, type zigbee_ZigbeeTime, type zio_ultrasonic_ZioUltrasonicComponent, type zwave_proxy_ZWaveProxy, type zyaura_ZyAuraSensor };
155886
+ export { type A4988, type ADC128S102, type ADE7880, type ADS1118, type AIC3204, type AM2315C, type APDS9306, type APDS9960, type Action, type AdalightProps, type Adc128s102Props$1 as Adc128s102Props, type Ads1115Props$1 as Ads1115Props, type Ads1118Props, type AirthingsBleProps, type AlarmControlPanelProps, type AlarmControlPanelWebServerProps$1 as AlarmControlPanelWebServerProps, type Alpha3, type Am43, type Animation, type AnimationLoopProps, type AnimationProps, type Anova, type AnyProps, type Apds9960Props$2 as Apds9960Props, type ApiActionsProps, type ApiBatchDelayProps, type ApiProps, type ApiRebootTimeoutProps, type ApiServicesProps, type Area, type As3935I2cProps, type As3935SpiProps, type As5600Props$1 as As5600Props, type AsyncTcpProps, type At581xProps$1 as At581xProps, type AudioAdcProps, type AudioDacProps, type AudioFileProps, type AudioProps, type BL0906, type BL0939, type BL0940, type BL0942, type BM8563, type BP1658CJ, type BP5758D, type BaseProps, type BedjetProps$3 as BedjetProps, type BedjetReceiveTimeoutProps, type BinarySensorProps, type BinarySensorWebServerProps$1 as BinarySensorWebServerProps, type Bk72xxConfigFrameworkProps, type Bk72xxFrameworkProps, type Bk72xxProps, type BleClientProps$3 as BleClientProps, type BleNusProps, type BluetoothProxyConnectionsProps, type BluetoothProxyProps, type Bme680BsecProps$2 as Bme680BsecProps, type Bme680BsecStateSaveIntervalProps, type Bme68xBsec2I2cProps, type Bp1658cjProps$1 as Bp1658cjProps, type Bp5758dProps$1 as Bp5758dProps, type Button, type ButtonProps, type ButtonWebServerProps$1 as ButtonWebServerProps, type BytebufferProps, type CameraEncoderProps, type CanbusProps, type Cap1188Props, type CaptivePortalProps, type Cc1101Props, type Cd74hc4067DelayProps, type Cd74hc4067Props$1 as Cd74hc4067Props, type Ch422gProps, type Ch423Props, type Climate, type ClimateProps, type ClimateVisualProps$1 as ClimateVisualProps, type ClimateWebServerProps$1 as ClimateWebServerProps, type Color, type ColorProps, type Component, type ComponentProps, type Context, type Controller, type CoreMqttComponentAvailabilityProps, type Cover, type CoverProps, type CoverWebServerProps$1 as CoverWebServerProps, type CustomComponentProps, type DFPlayer, type DHT, type Dac7678Props$1 as Dac7678Props, type DallasProps, type DalyBmsProps$2 as DalyBmsProps, type DashboardImportProps, type DatetimeProps, type DatetimeWebServerProps$1 as DatetimeWebServerProps, type DebugProps$2 as DebugProps, type DeepSleepEsp32Ext1WakeupProps, type DeepSleepProps, type DeepSleepRunDurationProps, type DeepSleepRunDurationPropsDefaultProps, type DeepSleepRunDurationPropsGpioWakeupReasonProps, type DeepSleepRunDurationPropsTouchWakeupReasonProps, type DeepSleepSleepDurationProps, type DemoProps, type Device, type DfplayerProps, type DfrobotSen0395Props, type Display, type DisplayFullDisplayPagesProps, type DisplayProps, type DlmsMeterProps$2 as DlmsMeterProps, type DsmrProps$2 as DsmrProps, type DsmrReceiveTimeoutProps, type DsmrRequestIntervalProps, type E131Props, type ES7210, type ES7243E, type ES8156, type ES8311, type ES8388, ESPCompose, type ESPHomeElementMeta, ESPHomeRegistry, type Emc2101DacProps, type Emc2101Props$2 as Emc2101Props, type Emc2101PwmProps, type EntityBase, type Esp32BleAdvertisingCycleTimeProps, type Esp32BleBeaconMaxIntervalProps, type Esp32BleBeaconMinIntervalProps, type Esp32BleBeaconProps, type Esp32BleConnectionTimeoutProps, type Esp32BleProps, type Esp32BleServerFirmwareVersionProps, type Esp32BleServerManufacturerProps, type Esp32BleServerModelProps, type Esp32BleServerProps, type Esp32BleServerServicesProps, type Esp32BleServerServicesPropsCharacteristicsProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptionProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptorsProps, type Esp32BleServerServicesPropsCharacteristicsPropsDescriptorsPropsValueProps, type Esp32BleServerServicesPropsCharacteristicsPropsValueProps, type Esp32BleTrackerProps, type Esp32BleTrackerScanParametersProps, type Esp32BleTrackerScanParametersPropsDurationProps, type Esp32BleTrackerScanParametersPropsIntervalProps, type Esp32BleTrackerScanParametersPropsWindowProps, type Esp32CameraExternalClockProps, type Esp32CameraI2cPinsProps, type Esp32CameraProps, type Esp32CameraWebServerProps, type Esp32FrameworkProps, type Esp32FrameworkPropsAdvancedProps, type Esp32FrameworkPropsComponentsProps, type Esp32HostedProps, type Esp32ImprovAuthorizedDurationProps, type Esp32ImprovIdentifyDurationProps, type Esp32ImprovProps, type Esp32ImprovWifiTimeoutProps, type Esp32Props, type Esp32TouchIirFilterProps, type Esp32TouchMeasurementDurationProps, type Esp32TouchProps, type Esp32TouchSleepDurationProps, type Esp8266FrameworkProps, type Esp8266Props, type EspComposeElement, type EspLdoProps, type EsphomeAreasProps, type EsphomeDevicesProps, type EsphomeProjectProps, type EsphomeProps$1 as EsphomeProps, type EspnowProps$1 as EspnowProps, type EthernetBaseManualIpProps, type EthernetProps, type EthernetRmiiClkProps, type EthernetRmiiPhyRegistersProps, type EthernetSpiPollingIntervalProps, type Event, type EventProps, type EventWebServerProps$1 as EventWebServerProps, type ExposureNotificationsProps, type ExternalComponentsProps, type EzoPmpProps$2 as EzoPmpProps, type FactoryResetMaxDelayProps, type FactoryResetProps$1 as FactoryResetProps, type Fan, type FanProps, type FanWebServerProps$1 as FanWebServerProps, type FingerprintGrowIdlePeriodToSleepProps, type FingerprintGrowProps$1 as FingerprintGrowProps, type Font, type FontExtrasProps, type FontProps, Fragment, type FunctionComponent, type GPIOPin, type GPS, type Gdk101Props$2 as Gdk101Props, type GlobalsProps, type Gp8403Props$1 as Gp8403Props, type GpsAltitudeProps, type GpsAltitudePropsAvailabilityProps, type GpsAltitudePropsExpireAfterProps, type GpsAltitudePropsWebServerProps, type GpsCourseProps, type GpsCoursePropsAvailabilityProps, type GpsCoursePropsExpireAfterProps, type GpsCoursePropsWebServerProps, type GpsHdopProps, type GpsHdopPropsAvailabilityProps, type GpsHdopPropsExpireAfterProps, type GpsHdopPropsWebServerProps, type GpsLatitudeProps, type GpsLatitudePropsAvailabilityProps, type GpsLatitudePropsExpireAfterProps, type GpsLatitudePropsWebServerProps, type GpsLongitudeProps, type GpsLongitudePropsAvailabilityProps, type GpsLongitudePropsExpireAfterProps, type GpsLongitudePropsWebServerProps, type GpsProps$1 as GpsProps, type GpsSatellitesProps, type GpsSatellitesPropsAvailabilityProps, type GpsSatellitesPropsExpireAfterProps, type GpsSatellitesPropsWebServerProps, type GpsSpeedProps, type GpsSpeedPropsAvailabilityProps, type GpsSpeedPropsExpireAfterProps, type GpsSpeedPropsWebServerProps, type Graph, type GraphDurationProps, type GraphLegendProps, type GraphProps, type GraphTracesProps, type GraphXGridProps, type GraphicalDisplayMenuProps, type GroveTb6612fngProps, type HlkFm22xProps$2 as HlkFm22xProps, type HmacMd5Props, type HmacSha256Props, type HostProps$1 as HostProps, type HttpRequestProps$2 as HttpRequestProps, type HttpRequestTimeoutProps, type HttpRequestWatchdogTimeoutProps, type I2cDeviceProps, type I2cProps, type I2cTimeoutProps, type I2sAudioProps, type I2sAudioSpeakerBaseBufferDurationProps, type IAQCore, type Image, type ImageProps, type ImprovSerialProps, type Infrared, type InfraredProps, type Inkplate, type InternalGPIOPin, type IntervalProps, type JsonProps, type KeyCollectorProps$1 as KeyCollectorProps, type KeyCollectorTimeoutProps, type Kuntze, type Lc709203f, type LcdMenuProps, type Ld2410Props$5 as Ld2410Props, type Ld2412Props$5 as Ld2412Props, type Ld2420Props$4 as Ld2420Props, type Ld2450Props$5 as Ld2450Props, type LibretinyProps$1 as LibretinyProps, type LightBrightnessOnlyLightDefaultTransitionLengthProps, type LightBrightnessOnlyLightFlashTransitionLengthProps, type LightInitialStateProps, type LightProps, type LightWaveRF, type LightWebServerProps, type LightwaverfProps, type Ln882xProps, type Lock, type LockProps, type LockWebServerProps$1 as LockWebServerProps, type Logger, type LoggerProps$1 as LoggerProps, type LvglAnimimgProps, type LvglArcProps, type LvglBarProps, type LvglBtnmatrixBtnProps, type LvglButtonProps, type LvglButtonmatrixProps, type LvglCanvasProps, type LvglCheckboxProps, type LvglContainerProps, type LvglDropdownListProps, type LvglDropdownProps, type LvglImageProps, type LvglKeyboardProps, type LvglLabelProps, type LvglLedProps, type LvglLineProps, type LvglLvTileviewTileTProps, type LvglMeterProps, type LvglObjProps, type LvglPageProps, type LvglProps$6 as LvglProps, type LvglQrcodeProps, type LvglRollerProps, type LvglSliderProps, type LvglSpinboxProps, type LvglSpinnerProps, type LvglStyleProps, type LvglSwitchProps, type LvglTabviewProps, type LvglTextareaProps, type LvglTileviewProps, type M5stack8angleProps$1 as M5stack8angleProps, type MAX6956, type MCP23008, type MCP23016, type MCP23017, type MCP23S08, type MCP23S17, type MCP2515, type MCP3008, type MCP3204, type MCP4725, type MCP47A1, type MappingProps, type MatrixKeypadColumnsProps, type MatrixKeypadProps, type MatrixKeypadRowsProps, type Max6956Props$1 as Max6956Props, type Mcp23008Props, type Mcp23016Props, type Mcp23017Props, type Mcp23s08Props, type Mcp23s17Props, type Mcp3008Props$1 as Mcp3008Props, type Mcp3204Props$1 as Mcp3204Props, type Mcp4461Props$1 as Mcp4461Props, type Mcp4728Props$1 as Mcp4728Props, type MdnsProps, type MdnsServicesProps, type MediaPlayerProps, type MediaSourceProps, type MicroNova, type MicroWakeWordMicrophoneProps, type MicroWakeWordModelsProps, type MicroWakeWordProps, type MicronovaProps$4 as MicronovaProps, type Microphone, type MicrophoneProps, type Modbus, type ModbusControllerCommandThrottleProps, type ModbusControllerProps$5 as ModbusControllerProps, type ModbusControllerServerCourtesyResponseProps, type ModbusControllerServerRegistersProps, type ModbusProps, type ModbusSendWaitTimeProps, type ModbusTurnaroundTimeProps, type MopekaBleProps, type Mpr121Props, type MqttBirthMessageProps, type MqttKeepaliveProps, type MqttLogTopicProps, type MqttProps, type MqttRebootTimeoutProps, type MqttShutdownMessageProps, type MqttWillMessageProps, type Msa3xxCommonCalibrationProps, type Msa3xxCommonTransformProps, type Msa3xxProps$2 as Msa3xxProps, type My9231Props$1 as My9231Props, type NTC, type NetworkProps, type Nextion, type Nrf52DfuProps$1 as Nrf52DfuProps, type Nrf52FrameworkProps$1 as Nrf52FrameworkProps, type Nrf52FrameworkPropsAdvancedProps$1 as Nrf52FrameworkPropsAdvancedProps, type Nrf52Props$1 as Nrf52Props, type Nrf52Reg0Props$1 as Nrf52Reg0Props, type NumberProps, type NumberWebServerProps$1 as NumberWebServerProps, type Numeric, type OneWireProps, type OnlineImageProps, type OpenthermProps$3 as OpenthermProps, type OpenthreadPollPeriodProps, type OpenthreadProps, type OtaProps, type OutputProps$1 as OutputProps, type PCD8544, type PN532, type PN7150, type PN7160, type PZEM004T, type PZEMAC, type PZEMDC, type PackagesPackageFilesProps, type PackagesProps, type PackagesStringProps, type PackagesStringPropsFilesProps, type PacketTransportEncryptionEncryptionProps, type PacketTransportProps$1 as PacketTransportProps, type PacketTransportTransportBinarySensorsProps, type PacketTransportTransportPingPongRecycleTimeProps, type PacketTransportTransportProvidersProps, type PacketTransportTransportProvidersPropsEncryptionProps, type PacketTransportTransportSensorsProps, type Parented, type Pca6416aProps, type Pca9554Props, type Pca9685Props, type Pcf8574Props, type Pi4ioe5v6408Props, type Pin, type PinConfig, type PinMode, type Pipsolar, type PipsolarProps$3 as PipsolarProps, type Pn532I2cProps, type Pn532Props, type Pn532SpiProps, type Pn7150I2cProps, type Pn7150I2cTagTtlProps, type Pn7160I2cProps, type Pn7160SpiProps, type PollingComponent, type PowerSupplyEnableTimeProps, type PowerSupplyKeepOnTimeProps, type PowerSupplyProps, type PreferencesProps, type PrometheusProps, type PsramProps, type PylontechProps$2 as PylontechProps, type QrCodeProps, type QspiDbiDisplayBaseDimensionsProps, type RC522, type RadonEyeBleProps, type Rc522I2cProps, type Rc522SpiProps, type Rd03dProps$1 as Rd03dProps, type Rd03dThrottleProps, type Rdm6300Props, type Ref, RefHandle, type RemoteReceiverFilterProps, type RemoteReceiverIdleProps, type RemoteReceiverProps, type RemoteTransmitterProps, type RfBridgeProps, type Rp2040BleProps, type Rp2040FrameworkProps, type Rp2040Props, type Rp2040WatchdogTimeoutProps, type Rtl87xxProps, type Rtttl, type RtttlProps, type RuntimeStatsLogIntervalProps, type RuntimeStatsProps, type RuuviBleProps, type RuuviTag, type SM16716, type SM2135, type SM2235, type SM2335, type ST7701S, type ST7735, type ST7789V, type ST7920, type SX126x, type SX127x, type SafeModeBootIsGoodAfterProps, type SafeModeProps$1 as SafeModeProps, type SafeModeRebootTimeoutProps, type Script, type ScriptDefinition, type ScriptProps, type Sdl, type SeeedMr24hpc1Props$4 as SeeedMr24hpc1Props, type SeeedMr60bha2Props$1 as SeeedMr60bha2Props, type SeeedMr60fda2Props$1 as SeeedMr60fda2Props, type Select, type SelectProps, type SelectWebServerProps$1 as SelectWebServerProps, type Sensor, type SensorExpireAfterProps$1 as SensorExpireAfterProps, type SensorProps, type SensorWebServerProps$1 as SensorWebServerProps, type SerialProxyProps, type Servo, type ServoAutoDetachTimeProps, type ServoProps, type ServoTransitionLengthProps, type Sha256Props, type Sim800lProps, type Sm16716Props, type Sm2135Props, type Sm2235Props, type Sm2335Props, type Sml, type SmlProps$1 as SmlProps, type Sn74hc165Props, type Sn74hc595Props, type SocketProps, type Speaker, type SpeakerProps, type SpiDeviceProps, type SpiProps, type SplitBufferProps, type Sprinkler, type SprinklerAutoAdvanceSwitchProps, type SprinklerAutoAdvanceSwitchPropsAvailabilityProps, type SprinklerAutoAdvanceSwitchPropsWebServerProps, type SprinklerMainSwitchProps, type SprinklerMainSwitchPropsAvailabilityProps, type SprinklerMainSwitchPropsWebServerProps, type SprinklerManualSelectionDelayProps, type SprinklerMultiplierNumberProps, type SprinklerMultiplierNumberPropsAvailabilityProps, type SprinklerMultiplierNumberPropsWebServerProps, type SprinklerProps, type SprinklerPumpStartPumpDelayProps, type SprinklerPumpStartValveDelayProps, type SprinklerPumpStopPumpDelayProps, type SprinklerPumpStopValveDelayProps, type SprinklerQueueEnableSwitchProps, type SprinklerQueueEnableSwitchPropsAvailabilityProps, type SprinklerQueueEnableSwitchPropsWebServerProps, type SprinklerRepeatNumberProps, type SprinklerRepeatNumberPropsAvailabilityProps, type SprinklerRepeatNumberPropsWebServerProps, type SprinklerReverseSwitchProps, type SprinklerReverseSwitchPropsAvailabilityProps, type SprinklerReverseSwitchPropsWebServerProps, type SprinklerStandbySwitchProps, type SprinklerStandbySwitchPropsAvailabilityProps, type SprinklerStandbySwitchPropsWebServerProps, type SprinklerValveOpenDelayProps, type SprinklerValveOverlapProps, type SprinklerValvesProps, type SprinklerValvesPropsEnableSwitchProps, type SprinklerValvesPropsEnableSwitchPropsAvailabilityProps, type SprinklerValvesPropsEnableSwitchPropsWebServerProps, type SprinklerValvesPropsRunDurationNumberProps, type SprinklerValvesPropsRunDurationNumberPropsAvailabilityProps, type SprinklerValvesPropsRunDurationNumberPropsWebServerProps, type SprinklerValvesPropsRunDurationProps, type SprinklerValvesPropsValveSwitchProps, type SprinklerValvesPropsValveSwitchPropsAvailabilityProps, type SprinklerValvesPropsValveSwitchPropsWebServerProps, type StatsdBinarySensorsProps, type StatsdProps, type StatsdSensorsProps, type StatusLedProps, type Stepper, type StepperProps, type SubstitutionsProps, type Sun, type SunGtil2Props$1 as SunGtil2Props, type SunProps$1 as SunProps, type SwitchProps, type SwitchWebServerProps$1 as SwitchWebServerProps, type Sx126xProps, type Sx126xTcxoDelayProps, type Sx127xProps, type Sx1509KeypadProps, type Sx1509Props, type Sy6970Props$1 as Sy6970Props, type Syslog, type SyslogProps, type TLC5947, type TLC5971, type Tca9548aChannelsProps, type Tca9548aProps, type Tca9555Props, type TeleInfo, type TeleinfoProps$1 as TeleinfoProps, type Text, type TextProps, type TextSensorProps, type TextSensorWebServerProps$1 as TextSensorWebServerProps, type TextWebServerProps$1 as TextWebServerProps, type TimeProps, type TinyUSB, type TinyusbProps, type Tlc59208fProps, type Tlc5947Props, type Tlc5971Props, type Tm1651Props, type Tormatic, type Touchscreen, type TouchscreenCalibrationProps, type TouchscreenProps, type TouchscreenTouchTimeoutProps, type TouchscreenTransformProps, type Trigger, type Ttp229BsfProps, type Ttp229LsfProps, type Tuya, type TuyaProps, type ULN2003, type UartFlushTimeoutProps, type UartProps, type UdpProps, type UpdateProps, type UpdateWebServerProps$1 as UpdateWebServerProps, type UponorSmatrixProps, type UsbCdcAcmInterfacesProps, type UsbCdcAcmProps, type UsbHostDevicesProps, type UsbHostProps, type UsbUartProps, type VBus, type Valve, type ValveProps, type ValveWebServerProps$1 as ValveWebServerProps, type VbusProps, type VoiceAssistantConversationTimeoutProps, type VoiceAssistantMicrophoneProps, type VoiceAssistantProps, type WaterHeaterProps, type WaterHeaterVisualProps$1 as WaterHeaterVisualProps, type WebServerAuthProps, type WebServerBaseProps, type WebServerIdfProps, type WebServerProps, type WebServerSortingGroupsProps, type Whynter, type Wiegand, type WiegandProps, type WifiEapProps, type WifiManualIpProps, type WifiNetworksProps, type WifiNetworksPropsEapProps, type WifiNetworksPropsManualIpProps, type WifiProps, type WifiRebootTimeoutProps, type Wireguard, type WireguardPeerPersistentKeepaliveProps, type WireguardProps, type WireguardRebootTimeoutProps, type Wk2132I2cProps, type Wk2132SpiProps, type Wk2168I2cProps, type Wk2168SpiProps, type Wk2204I2cProps, type Wk2204SpiProps, type Wk2212I2cProps, type Wk2212SpiProps, type WledProps, type XiaomiBleProps, type XiaomiRtcgq02lmProps, type Xl9535Props, type Xpt2046Props, type ZephyrBleServerProps, type ZigbeeProps, type ZwaveProxyProps, type _AlarmControlPanel, type _As3935, type _BedjetClient, type _BinarySensor, type _Bk72xxConfig, type _BleClient, type _BthomeMithermometerBleDevice, type _Button, type _Canbus, type _Climate, type _CoreComponent, type _CoreEntityBase, type _CoreMqttCommandComponent, type _CoreMqttComponent, type _Cover, type _Datetime, type _DisplayBasicDisplay, type _DisplayFullDisplay, type _Emc2101Component, type _Esp32HostedUpdateBase, type _EthernetBase, type _EthernetRmii, type _EthernetSpi, type _Event, type _Fan, type _HomeassistantHomeAssistantImport, type _HomeassistantHomeAssistantImportControl, type _I2sAudioMicrophoneBase, type _I2sAudioSpeakerBase, type _Light, type _LightAddressableLight, type _LightBinaryLight, type _LightBrightnessOnlyLight, type _LightRgbLight, type _Lock, type _MediaPlayer, type _Microphone, type _ModbusControllerModbusitembaseschema, type _Msa3xxCommon, type _Msa3xxMsaSensor, type _NextionBinarySensorConfigBinarySensor, type _NextionSensorConfigSensorComponent, type _Number, type _OtaBaseOta, type _OutputBinaryOutput, type _OutputFloatOutput, type _PackagesPackage, type _PacketTransportBinarySensorStatusSensor, type _PacketTransportEncryption, type _PacketTransportTransport, type _PipsolarComponent, type _Pn532, type _PylontechComponent, type _QspiDbiDisplayBase, type _Rc522, type _Select, type _Sensor, type _Sn74hc595Common, type _Speaker, type _Stepper, type _Switch, type _TeleinfoListener, type _TemplateDatetime_Base, type _Text, type _TextSensor, type _Time, type _Touchscreen, type _UartDevice, type _Udp, type _Update, type _UponorSmatrixDevice, type _Valve, type _WaterHeater, type _esphome_hub75_HUB75Display, type a01nyub_A01nyubComponent, type a02yyuw_A02yyuwComponent, type a4988_A4988, type absolute_humidity_AbsoluteHumidityComponent, type ac_dimmer_AcDimmer, type adc128s102_ADC128S102, type adc128s102_ADC128S102Sensor, type adc_ADCSensor, type adc_dt_spec, type addressable_light_AddressableLightDisplay, type ade7880_ADE7880, type ade7880_NeutralChannel, type ade7880_PowerChannel, type ade7953_base_ADE7953, type ade7953_i2c_AdE7953I2c, type ade7953_spi_AdE7953Spi, type ads1115_ADS1115Component, type ads1115_ADS1115Sensor, type ads1118_ADS1118, type ads1118_ADS1118Sensor, type ags10_AGS10Component, type aht10_AHT10Component, type aic3204_AIC3204, type airthings_ble_AirthingsListener, type airthings_wave_base_AirthingsWaveBase, type airthings_wave_mini_AirthingsWaveMini, type airthings_wave_plus_AirthingsWavePlus, type alarm_control_panel_AlarmControlPanel, type alpha3_Alpha3, type am2315c_AM2315C, type am2320_AM2320Component, type am43_Am43, type am43_Am43Component, type analog_threshold_AnalogThresholdBinarySensor, type animation_Animation, type anova_Anova, type apds9306_APDS9306, type apds9960_APDS9960, type api_APIServer, type aqi_AQISensor, type as3935_AS3935Component, type as3935_i2c_I2CAS3935Component, type as3935_spi_SPIAS3935Component, type as5600_AS5600Component, type as5600_AS5600Sensor, type as7341_AS7341Component, assertHookCall, type at581x_AT581XComponent, type at581x_RFSwitch, type atc_mithermometer_ATCMiThermometer, type atm90e26_ATM90E26Component, type atm90e32_ATM90E32ClearGainCalibrationButton, type atm90e32_ATM90E32ClearOffsetCalibrationButton, type atm90e32_ATM90E32ClearPowerOffsetCalibrationButton, type atm90e32_ATM90E32Component, type atm90e32_ATM90E32GainCalibrationButton, type atm90e32_ATM90E32Number, type atm90e32_ATM90E32OffsetCalibrationButton, type atm90e32_ATM90E32PowerOffsetCalibrationButton, type audio_AudioFile, type audio_adc_AudioAdc, type audio_dac_AudioDac, type axs15231_AXS15231Touchscreen, type b_parasite_BParasite, type ballu_BalluClimate, type bang_bang_BangBangClimate, type bedjet_BedJetClimate, type bedjet_BedJetFan, type bedjet_BedJetHub, type bedjet_BedjetSensor, type beken_spi_led_strip_BekenSPILEDStripLightOutput, type bh1750_BH1750Sensor, type bh1900nux_BH1900NUXSensor, type binary_BinaryFan, type binary_BinaryLightOutput, type binary_sensor_BinarySensor, type binary_sensor_map_BinarySensorMap, type bl0906_BL0906, type bl0939_BL0939, type bl0940_BL0940, type bl0940_BL0940Number, type bl0940_CalibrationNumber, type bl0940_CalibrationResetButton, type bl0942_BL0942, type ble_client_BLEBinaryOutput, type ble_client_BLEClient, type ble_client_BLEClientNode, type ble_client_BLEClientRSSISensor, type ble_client_BLEClientSwitch, type ble_client_BLESensor, type ble_client_BLETextSensor, type ble_nus_BLENUS, type ble_presence_BLEPresenceDevice, type ble_rssi_BLERSSISensor, type ble_scanner_BLEScanner, type bluetooth_proxy_BluetoothConnection, type bluetooth_proxy_BluetoothProxy, type bm8563_BM8563, type bme680_BME680Component, type bme680_bsec_BME680BSECComponent, type bme68x_bsec2_BME68xBSEC2Component, type bmi160_BMI160Component, type bmp085_BMP085Component, type bp1658cj_BP1658CJ, type bp1658cj_BP1658CJ_Channel, type bp5758d_BP5758D, type bp5758d_BP5758D_Channel, type bthome_mithermometer_BTHomeMiThermometer, type button_Button, type camera_Encoder, type camera_encoder_ESP32CameraJPEGEncoder, type camera_encoder_EncoderBufferImpl, type canbus_CanbusComponent, type cap1188_CAP1188Channel, type cap1188_CAP1188Component, type captive_portal_CaptivePortal, type cc1101_CC1101Component, type ccs811_CCS811Component, type cd74hc4067_CD74HC4067Component, type cd74hc4067_CD74HC4067Sensor, type ch422g_CH422GComponent, type ch423_CH423Component, type chsc6x_CHSC6XTouchscreen, type climate_Climate, type climate_ir_ClimateIR, type climate_ir_lg_LgIrClimate, type cm1106_CM1106Component, type color_temperature_CTLightOutput, type combination_KalmanCombinationComponent, type combination_LinearCombinationComponent, type combination_MaximumCombinationComponent, type combination_MeanCombinationComponent, type combination_MedianCombinationComponent, type combination_MinimumCombinationComponent, type combination_MostRecentCombinationComponent, type combination_RangeCombinationComponent, type combination_SumCombinationComponent, type coolix_CoolixClimate, type copy_CopyBinarySensor, type copy_CopyButton, type copy_CopyCover, type copy_CopyFan, type copy_CopyLock, type copy_CopyNumber, type copy_CopySelect, type copy_CopySensor, type copy_CopySwitch, type copy_CopyText, type copy_CopyTextSensor, type cover_Cover, createContext, createElement, type cs5460a_CS5460AComponent, type cse7761_CSE7761Component, type cse7766_CSE7766Component, type cst226_CST226Button, type cst226_CST226ButtonListener, type cst226_CST226Touchscreen, type cst816_CST816Touchscreen, type ct_clamp_CTClampSensor, type current_based_CurrentBasedCover, type cwww_CWWWLightOutput, type dac7678_DAC7678Channel, type dac7678_DAC7678Output, type daikin_DaikinClimate, type daikin_arc_DaikinArcClimate, type daikin_brc_DaikinBrcClimate, type dallas_temp_DallasTemperatureSensor, type daly_bms_DalyBmsComponent, type datetime_DateEntity, type datetime_DateTimeBase, type datetime_DateTimeEntity, type datetime_TimeEntity, type debug_DebugComponent, type deep_sleep_DeepSleepComponent, delay, type delonghi_DelonghiClimate, type dew_point_DewPointComponent, type dfplayer_DFPlayer, type dfrobot_sen0395_DfrobotSen0395Component, type dfrobot_sen0395_DfrobotSen0395Switch, type dfrobot_sen0395_Sen0395LedSwitch, type dfrobot_sen0395_Sen0395PowerSwitch, type dfrobot_sen0395_Sen0395StartAfterBootSwitch, type dfrobot_sen0395_Sen0395UartPresenceSwitch, type dht12_DHT12Component, type dht_DHT, type display_Display, type display_DisplayBuffer, type display_DisplayPage, type display_menu_base_DisplayMenuComponent, type dlms_meter_DlmsMeterComponent, type dps310_DPS310Component, type ds1307_DS1307Component, type ds2484_DS2484OneWireBus, type duty_cycle_DutyCycleSensor, type duty_time_sensor_DutyTimeSensor, type e131_E131Component, type ee895_EE895Component, type ektf2232_EKTF2232Touchscreen, type emc2101_EMC2101Output, type emc2101_EMC2101Sensor, type emc2101_Emc2101Component, type emmeti_EmmetiClimate, type endstop_EndstopCover, type ens210_ENS210Component, type es7210_ES7210, type es7243e_ES7243E, type es8156_ES8156, type es8311_ES8311, type es8388_ADCInputMicSelect, type es8388_DacOutputSelect, type es8388_ES8388, type esp32_ble_ESP32BLE, type esp32_ble_GAPEventHandler, type esp32_ble_GATTcEventHandler, type esp32_ble_GATTsEventHandler, type esp32_ble_beacon_ESP32BLEBeacon, type esp32_ble_client_BLEClientBase, type esp32_ble_server_BLECharacteristic, type esp32_ble_server_BLEDescriptor, type esp32_ble_server_BLEServer, type esp32_ble_server_BLEService, type esp32_ble_server_esp32_ble_server_automations_BLECharacteristicSetValueAction, type esp32_ble_tracker_ESP32BLETracker, type esp32_ble_tracker_ESPBTClient, type esp32_ble_tracker_ESPBTDeviceListener, type esp32_camera_ESP32Camera, type esp32_camera_web_server_CameraWebServer, type esp32_can_ESP32Can, type esp32_dac_ESP32DAC, type esp32_hosted_Esp32HostedUpdate, type esp32_improv_ESP32ImprovComponent, type esp32_rmt_led_strip_ESP32RMTLEDStripLightOutput, type esp32_touch_ESP32TouchBinarySensor, type esp32_touch_ESP32TouchComponent, type esp8266_pwm_ESP8266PWM, type esp_ldo_EspLdo, type esphome_ESPHomeOTAComponent, type esphome_dsmr_Dsmr, type espnow_ESPNowComponent, type espnow_ESPNowTransport, type ethernet_EthernetComponent, type ethernet_info_DNSAddressEthernetInfo, type ethernet_info_IPAddressEthernetInfo, type ethernet_info_MACAddressEthernetInfo, type event_Event, type ezo_EZOSensor, type ezo_pmp_EzoPMP, type factory_reset_FactoryResetButton, type factory_reset_FactoryResetComponent, type factory_reset_FactoryResetSwitch, type fan_Fan, type feedback_FeedbackCover, findInScope, type fingerprint_grow_FingerprintGrowComponent, type font_Font, type font_Glyph, type fs3000_FS3000Component, type ft5x06_FT5x06Touchscreen, type ft63x6_FT63X6Touchscreen, type fujitsu_general_FujitsuGeneralClimate, type gcja5_GCJA5Component, type gdk101_GDK101Component, getCurrentComponentName, getCurrentHookIndex, getCurrentHookPath, type gl_r01_i2c_GLR01I2CComponent, type gp2y1010au0f_GP2Y1010AU0FSensor, type gp8403_GP8403Component, type gp8403_GP8403Output, type gpio_GPIOBinaryOutput, type gpio_GPIOBinarySensor, type gpio_GPIOOneWireBus, type gpio_GPIOSwitch, type gps_GPS, type gps_GPSListener, type gps_GPSTime, type graph_Graph, type graph_GraphLegend, type graph_GraphTrace, type graphical_display_menu_GraphicalDisplayMenu, type gree_GreeClimate, type gree_GreeModeBitSwitch, type grove_gas_mc_v2_GroveGasMultichannelV2Component, type grove_tb6612fng_GroveMotorDriveTB6612FNG, type growatt_solar_GrowattSolar, type gt911_GT911Button, type gt911_GT911ButtonListener, type gt911_GT911Touchscreen, type haier_BeeperSwitch, type haier_DisplaySwitch, type haier_HaierClimateBase, type haier_HealthModeSwitch, type haier_HonClimate, type haier_QuietModeSwitch, type haier_SelfCleaningButton, type haier_Smartair2Climate, type haier_SteriCleaningButton, type havells_solar_HavellsSolar, type hbridge_HBridgeFan, type hbridge_HBridgeLightOutput, type hbridge_HBridgeSwitch, type hc8_HC8Component, type hdc1080_HDC1080Component, type hdc2010_HDC2010Component, type hdc302x_HDC302XComponent, type he60r_HE60rCover, type heatpumpir_HeatpumpIRClimate, type hitachi_ac344_HitachiClimate, type hitachi_ac424_HitachiClimate, type hlk_fm22x_HlkFm22xComponent, type hlw8012_HLW8012Component, type hlw8032_HLW8032Component, type hm3301_HM3301Component, type hmc5883l_HMC5883LComponent, type homeassistant_HomeassistantBinarySensor, type homeassistant_HomeassistantNumber, type homeassistant_HomeassistantSensor, type homeassistant_HomeassistantSwitch, type homeassistant_HomeassistantTextSensor, type homeassistant_HomeassistantTime, type honeywell_hih_i2c_HoneywellHIComponent, type honeywellabp2_i2c_HONEYWELLABP2Sensor, type honeywellabp_HONEYWELLABPSensor, type host_HostTime, type hrxl_maxsonar_wr_HrxlMaxsonarWrComponent, type hte501_HTE501Component, type http_request_HttpRequestComponent, type http_request_HttpRequestUpdate, type http_request_OtaHttpRequestComponent, type htu21d_HTU21DComponent, type htu31d_HTU31DComponent, type hx711_HX711Sensor, type hydreon_rgxx_HydreonRGxxBinaryComponent, type hydreon_rgxx_HydreonRGxxComponent, type hyt271_HYT271Component, type i2c_I2CBus, type i2c_I2CDevice, type i2c_InternalI2CBus, type i2c_device_I2CDeviceComponent, type i2s_audio_I2SAudioBase, type i2s_audio_I2SAudioComponent, type i2s_audio_I2SAudioIn, type i2s_audio_I2SAudioMediaPlayer, type i2s_audio_I2SAudioMicrophone, type i2s_audio_I2SAudioOut, type i2s_audio_I2SAudioSpeaker, type iaqcore_IAQCore, type ili9xxx_ILI9XXXDisplay, type image_Image, type improv_serial_ImprovSerialComponent, type ina219_INA219Component, type ina226_INA226Component, type ina260_INA260Component, type ina2xx_base_INA2XX, type ina2xx_i2c_INA2XXI2C, type ina2xx_spi_INA2XXSPI, type ina3221_INA3221Component, type infrared_Infrared, type inkbird_ibsth1_mini_InkbirdIbstH1Mini, type inkplate_Inkplate, type integration_IntegrationSensor, type internal_temperature_InternalTemperatureSensor, type interval_IntervalTrigger, type ir_rf_proxy_IrRfProxy, isRef, type jsn_sr04t_Jsnsr04tComponent, type kamstrup_kmp_KamstrupKMPComponent, type key_collector_KeyCollector, type key_provider_KeyProvider, type kmeteriso_KMeterISOComponent, type kuntze_Kuntze, type lc709203f_Lc709203f, type lcd_base_LCDDisplay, type lcd_gpio_GPIOLCDDisplay, type lcd_menu_LCDCharacterMenuComponent, type lcd_pcf8574_PCF8574LCDDisplay, type ld2410_BaudRateSelect, type ld2410_BluetoothSwitch, type ld2410_DistanceResolutionSelect, type ld2410_EngineeringModeSwitch, type ld2410_FactoryResetButton, type ld2410_GateThresholdNumber, type ld2410_LD2410Component, type ld2410_LightOutControlSelect, type ld2410_LightThresholdNumber, type ld2410_MaxDistanceTimeoutNumber, type ld2410_QueryButton, type ld2410_RestartButton, type ld2412_BaudRateSelect, type ld2412_BluetoothSwitch, type ld2412_DistanceResolutionSelect, type ld2412_EngineeringModeSwitch, type ld2412_FactoryResetButton, type ld2412_GateThresholdNumber, type ld2412_LD2412Component, type ld2412_LightOutControlSelect, type ld2412_LightThresholdNumber, type ld2412_MaxDistanceTimeoutNumber, type ld2412_QueryButton, type ld2412_RestartButton, type ld2412_StartDynamicBackgroundCorrectionButton, type ld2420_LD2420ApplyConfigButton, type ld2420_LD2420BinarySensor, type ld2420_LD2420Component, type ld2420_LD2420FactoryResetButton, type ld2420_LD2420GateSelectNumber, type ld2420_LD2420MaxDistanceNumber, type ld2420_LD2420MinDistanceNumber, type ld2420_LD2420MoveSensFactorNumber, type ld2420_LD2420MoveThresholdNumbers, type ld2420_LD2420RestartModuleButton, type ld2420_LD2420RevertConfigButton, type ld2420_LD2420Select, type ld2420_LD2420Sensor, type ld2420_LD2420StillSensFactorNumber, type ld2420_LD2420StillThresholdNumbers, type ld2420_LD2420TextSensor, type ld2420_LD2420TimeoutNumber, type ld2450_BaudRateSelect, type ld2450_BluetoothSwitch, type ld2450_FactoryResetButton, type ld2450_LD2450Component, type ld2450_MultiTargetSwitch, type ld2450_PresenceTimeoutNumber, type ld2450_RestartButton, type ld2450_ZoneCoordinateNumber, type ld2450_ZoneTypeSelect, type ledc_LEDCOutput, type libretiny_ArduinoInternalGPIOPin, type libretiny_LTComponent, type libretiny_pwm_LibreTinyPWM, type light_AddressableLight, type light_AddressableLightState, type light_AddressableLightWrapper, type light_LightOutput, type light_LightState, type lightwaverf_LightWaveRF, type lilygo_t5_47_LilygoT547Touchscreen, type lm75b_LM75BComponent, type lock_Lock, logger, type logger_Logger, type logger_LoggerLevelSelect, type lps22_LPS22Component, type ltr390_LTR390Component, type ltr501_LTRAlsPs501Component, type ltr_als_ps_LTRAlsPsComponent, type lv_led_t, type lvgl_LVGLNumber, type lvgl_LVGLSelect, type lvgl_LVGLSwitch, type lvgl_LVGLText, type lvgl_LVLight, type lvgl_LvPseudoButton, type m5stack_8angle_M5Stack8AngleComponent, type m5stack_8angle_M5Stack8AngleKnobSensor, type m5stack_8angle_M5Stack8AngleLightOutput, type m5stack_8angle_M5Stack8AngleSwitchBinarySensor, type matrix_keypad_MatrixKeypad, type matrix_keypad_MatrixKeypadBinarySensor, type max17043_MAX17043Component, type max31855_MAX31855Sensor, type max31856_MAX31856Sensor, type max31865_MAX31865Sensor, type max44009_MAX44009Sensor, type max6675_MAX6675Sensor, type max6956_MAX6956, type max6956_MAX6956LedChannel, type max7219_MAX7219Component, type max7219digit_MAX7219Component, type max9611_MAX9611Component, type mcp23008_MCP23008, type mcp23016_MCP23016, type mcp23017_MCP23017, type mcp23s08_MCP23S08, type mcp23s17_MCP23S17, type mcp23x08_base_MCP23X08Base, type mcp23x17_base_MCP23X17Base, type mcp23xxx_base_MCP23XXXBase, type mcp2515_MCP2515, type mcp3008_MCP3008, type mcp3008_MCP3008Sensor, type mcp3204_MCP3204, type mcp3204_MCP3204Sensor, type mcp3221_MCP3221Sensor, type mcp4461_Mcp4461Component, type mcp4461_Mcp4461Wiper, type mcp4725_MCP4725, type mcp4728_MCP4728Channel, type mcp4728_MCP4728Component, type mcp47a1_MCP47A1, type mcp9600_MCP9600Component, type mcp9808_MCP9808Sensor, type mdns_MDNSComponent, type media_player_MediaPlayer, type media_source_MediaSource, type mhz19_MHZ19Component, type micro_wake_word_MicroWakeWord, type micro_wake_word_WakeWordModel, type micronova_MicroNova, type micronova_MicroNovaButton, type micronova_MicroNovaListener, type micronova_MicroNovaNumber, type micronova_MicroNovaSensor, type micronova_MicroNovaSwitch, type micronova_MicroNovaTextSensor, type microphone_Microphone, type microphone_MicrophoneSource, type mics_4514_MICS4514Component, type midea_ac_AirConditioner, type midea_ir_MideaIR, type mitsubishi_MitsubishiClimate, type mixer_speaker_MixerSpeaker, type mixer_speaker_SourceSpeaker, type mlx90393_MLX90393Cls, type mlx90614_MLX90614Component, type mmc5603_MMC5603Component, type mmc5983_MMC5983Component, type modbus_Modbus, type modbus_ModbusDevice, type modbus_controller_ModbusBinaryOutput, type modbus_controller_ModbusBinarySensor, type modbus_controller_ModbusController, type modbus_controller_ModbusFloatOutput, type modbus_controller_ModbusNumber, type modbus_controller_ModbusSelect, type modbus_controller_ModbusSensor, type modbus_controller_ModbusSwitch, type modbus_controller_ModbusTextSensor, type modbus_controller_SensorItem, type modbus_controller_ServerRegister, type monochromatic_MonochromaticLightOutput, type mopeka_ble_MopekaListener, type mopeka_pro_check_MopekaProCheck, type mopeka_std_check_MopekaStdCheck, type mpl3115a2_MPL3115A2Component, type mpr121_MPR121BinarySensor, type mpr121_MPR121Component, type mpu6050_MPU6050Component, type mpu6886_MPU6886Component, type mqtt_MQTTAlarmControlPanelComponent, type mqtt_MQTTBinarySensorComponent, type mqtt_MQTTButtonComponent, type mqtt_MQTTClientComponent, type mqtt_MQTTClimateComponent, type mqtt_MQTTComponent, type mqtt_MQTTCoverComponent, type mqtt_MQTTDateComponent, type mqtt_MQTTDateTimeComponent, type mqtt_MQTTEventComponent, type mqtt_MQTTFanComponent, type mqtt_MQTTJSONLightComponent, type mqtt_MQTTLockComponent, type mqtt_MQTTNumberComponent, type mqtt_MQTTSelectComponent, type mqtt_MQTTSensorComponent, type mqtt_MQTTSwitchComponent, type mqtt_MQTTTextComponent, type mqtt_MQTTTextSensor, type mqtt_MQTTTimeComponent, type mqtt_MQTTUpdateComponent, type mqtt_MQTTValveComponent, type mqtt_subscribe_MQTTSubscribeSensor, type mqtt_subscribe_MQTTSubscribeTextSensor, type ms5611_MS5611Component, type ms8607_MS8607Component, type ms8607_MS8607HumidityDevice, type msa3xx_MSA3xxComponent, type my9231_MY9231OutputComponent, type my9231_MY9231OutputComponent_Channel, type nau7802_NAU7802Sensor, type neopixelbus_NeoPixelBusLightOutputBase, type nextion_Nextion, type nextion_NextionBinarySensor, type nextion_NextionSensor, type nextion_NextionSwitch, type nextion_NextionTextSensor, type nfc_NfcTagBinarySensor, type nfc_NfcTagListener, type nfc_Nfcc, type noblex_NoblexClimate, type npi19_NPI19Component, type nrf52_DeviceFirmwareUpdate, type ntc_NTC, type number_Number, type one_wire_OneWireBus, type one_wire_OneWireDevice, type online_image_OnlineImage, type opentherm_OpenthermHub, type opentherm_OpenthermInput, type opentherm_OpenthermNumber, type opentherm_OpenthermOutput, type opentherm_OpenthermSwitch, type openthread_OpenThreadComponent, type openthread_OpenThreadSrpComponent, type openthread_info_ChannelOpenThreadInfo, type openthread_info_Eui64OpenThreadInfo, type openthread_info_ExtAddrOpenThreadInfo, type openthread_info_ExtPanIdOpenThreadInfo, type openthread_info_IPAddressOpenThreadInfo, type openthread_info_NetworkKeyOpenThreadInfo, type openthread_info_NetworkNameOpenThreadInfo, type openthread_info_PanIdOpenThreadInfo, type openthread_info_Rloc16OpenThreadInfo, type openthread_info_RoleOpenThreadInfo, type opt3001_OPT3001Sensor, type ota_OTAComponent, type output_BinaryOutput, type output_FloatOutput, type output_OutputButton, type output_OutputLock, type output_OutputSwitch, type packet_transport_PacketTransport, type partition_PartitionLightOutput, type pca6416a_PCA6416AComponent, type pca9554_PCA9554Component, type pca9685_PCA9685Channel, type pca9685_PCA9685Output, type pcd8544_PCD8544, type pcf85063_PCF85063Component, type pcf8563_PCF8563Component, type pcf8574_PCF8574Component, type pi4ioe5v6408_PI4IOE5V6408Component, type pid_PIDClimate, type pid_PIDClimateSensor, type pipsolar_Pipsolar, type pipsolar_PipsolarOutput, type pipsolar_PipsolarSwitch, type pm1006_PM1006Component, type pm2005_PM2005Component, type pmsa003i_PMSA003IComponent, type pmsx003_PMSX003Component, type pmwcs3_PMWCS3Component, type pn532_PN532, type pn532_PN532BinarySensor, type pn532_i2c_PN532I2C, type pn532_spi_PN532Spi, type pn7150_PN7150, type pn7160_PN7160, type pn7160_i2c_PN7160I2C, type pn7160_spi_PN7160Spi, type power_supply_PowerSupply, type preferences_IntervalSyncer, type prometheus_PrometheusHandler, type pulse_counter_PulseCounterSensor, type pulse_meter_PulseMeterSensor, type pulse_width_PulseWidthSensor, type pvvx_mithermometer_PVVXDisplay, type pvvx_mithermometer_PVVXMiThermometer, type pylontech_PylontechComponent, type pylontech_PylontechSensor, type pylontech_PylontechTextSensor, type pzem004t_PZEM004T, type pzemac_PZEMAC, type pzemdc_PZEMDC, type qmc5883l_QMC5883LComponent, type qmp6988_QMP6988Component, type qr_code_QrCode, type qspi_dbi_QspiDbi, type qwiic_pir_QwiicPIRComponent, type radon_eye_ble_RadonEyeListener, type radon_eye_rd200_RadonEyeRD200, type rc522_RC522, type rc522_RC522BinarySensor, type rc522_i2c_RC522I2C, type rc522_spi_RC522Spi, type rd03d_RD03DComponent, type rdm6300_RDM6300BinarySensor, type rdm6300_RDM6300Component, registerInScope, type remote_base_RemoteReceiverBase, type remote_base_RemoteReceiverListener, type remote_base_RemoteTransmittable, type remote_base_RemoteTransmitterBase, type remote_receiver_RemoteReceiverComponent, type remote_transmitter_RemoteTransmitterComponent, render, type resampler_ResamplerSpeaker, type resistance_ResistanceSensor, type restart_RestartButton, type restart_RestartSwitch, type rf_bridge_RFBridgeComponent, type rgb_RGBLightOutput, type rgbct_RGBCTLightOutput, type rgbw_RGBWLightOutput, type rgbww_RGBWWLightOutput, type rotary_encoder_RotaryEncoderSensor, type rp2040_ble_RP2040BLE, type rp2040_pio_led_strip_RP2040PIOLEDStripLightOutput, type rp2040_pwm_RP2040PWM, type rpi_dpi_rgb_RpiDpiRgb, type rtttl_Rtttl, type runtime_image_RuntimeImage, type runtime_stats_RuntimeStatsCollector, type ruuvi_ble_RuuviListener, type ruuvitag_RuuviTag, type rx8130_RX8130Component, type safe_mode_SafeModeButton, type safe_mode_SafeModeComponent, type safe_mode_SafeModeSwitch, type scd30_SCD30Component, type scd4x_SCD4XComponent, type script_Script, type sdl_Sdl, type sdl_SdlTouchscreen, type sdm_meter_SDMMeter, type sdp3x_SDP3XComponent, type sds011_SDS011Component, type seeed_mr24hpc1_CustomModeNumber, type seeed_mr24hpc1_CustomSetEndButton, type seeed_mr24hpc1_CustomUnmanTimeNumber, type seeed_mr24hpc1_ExistenceBoundarySelect, type seeed_mr24hpc1_ExistenceThresholdNumber, type seeed_mr24hpc1_MR24HPC1Component, type seeed_mr24hpc1_MotionBoundarySelect, type seeed_mr24hpc1_MotionThresholdNumber, type seeed_mr24hpc1_MotionToRestTimeNumber, type seeed_mr24hpc1_MotionTriggerTimeNumber, type seeed_mr24hpc1_RestartButton, type seeed_mr24hpc1_SceneModeSelect, type seeed_mr24hpc1_SensitivityNumber, type seeed_mr24hpc1_UnderlyOpenFunctionSwitch, type seeed_mr24hpc1_UnmanTimeSelect, type seeed_mr60bha2_MR60BHA2Component, type seeed_mr60fda2_GetRadarParametersButton, type seeed_mr60fda2_HeightThresholdSelect, type seeed_mr60fda2_InstallHeightSelect, type seeed_mr60fda2_MR60FDA2Component, type seeed_mr60fda2_ResetRadarButton, type seeed_mr60fda2_SensitivitySelect, type selec_meter_SelecMeter, type select_Select, type sen0321_sensor_Sen0321Sensor, type sen21231_sensor_Sen21231Sensor, type sen5x_SEN5XComponent, type sen6x_SEN6XComponent, type senseair_SenseAirComponent, type sensirion_common_SensirionI2CDevice, type sensor_Sensor, type serial_proxy_SerialProxy, type servo_Servo, setCurrentComponentName, setCurrentHookIndex, setCurrentHookPath, type sfa30_SFA30Component, type sgp30_SGP30Component, type sgp4x_SGP4xComponent, type shelly_dimmer_ShellyDimmer, type sht3xd_SHT3XDComponent, type sht4x_SHT4XComponent, type shtcx_SHTCXComponent, type shutdown_ShutdownButton, type shutdown_ShutdownSwitch, type sigma_delta_output_SigmaDeltaOutput, type sim800l_Sim800LComponent, type slow_pwm_SlowPWMOutput, type sm10bit_base_Sm10BitBase, type sm16716_SM16716, type sm16716_SM16716_Channel, type sm2135_SM2135, type sm2135_SM2135_Channel, type sm2235_SM2235, type sm2235_SM2235_Channel, type sm2335_SM2335, type sm2335_SM2335_Channel, type sm300d2_SM300D2Sensor, type sml_Sml, type sml_SmlSensor, type sml_SmlTextSensor, type smt100_SMT100Component, type sn74hc165_SN74HC165Component, type sn74hc595_SN74HC595Component, type sn74hc595_SN74HC595GPIOComponent, type sn74hc595_SN74HC595SPIComponent, type sntp_SNTPComponent, type sonoff_d1_SonoffD1Output, type sound_level_SoundLevelComponent, type speaker_AudioPipeline, type speaker_Speaker, type speaker_SpeakerMediaPlayer, type speaker_source_PipelineContext, type speaker_source_SpeakerSourceMediaPlayer, type speed_SpeedFan, type spi_OctalSPIComponent, type spi_QuadSPIComponent, type spi_SPIComponent, type spi_SPIDevice, type spi_device_SPIDeviceComponent, type spi_led_strip_SpiLedStrip, type sprinkler_Sprinkler, type sprinkler_SprinklerControllerNumber, type sprinkler_SprinklerControllerSwitch, type sps30_SPS30Component, type ssd1306_base_SSD1306, type ssd1306_i2c_I2CSSD1306, type ssd1306_spi_SPISSD1306, type ssd1322_base_SSD1322, type ssd1322_spi_SPISSD1322, type ssd1325_base_SSD1325, type ssd1325_spi_SPISSD1325, type ssd1327_base_SSD1327, type ssd1327_i2c_I2CSSD1327, type ssd1327_spi_SPISSD1327, type ssd1331_base_SSD1331, type ssd1331_spi_SPISSD1331, type ssd1351_base_SSD1351, type ssd1351_spi_SPISSD1351, type st7567_base_ST7567, type st7567_i2c_I2CST7567, type st7567_spi_SPIST7567, type st7701s_ST7701S, type st7735_ST7735, type st7789v_ST7789V, type st7920_ST7920, type statsd_StatsdComponent, type status_StatusBinarySensor, type status_led_StatusLED, type status_led_StatusLEDLightOutput, type stepper_Stepper, type sts3x_STS3XComponent, type stts22h_STTS22HComponent, type sun_Sun, type sun_SunSensor, type sun_SunTextSensor, type sun_gtil2_SunGTIL2, type switch__Switch, type switch__SwitchBinarySensor, type sx126x_SX126x, type sx126x_SX126xListener, type sx126x_SX126xTransport, type sx127x_SX127x, type sx127x_SX127xListener, type sx127x_SX127xTransport, type sx1509_SX1509BinarySensor, type sx1509_SX1509Component, type sx1509_SX1509FloatOutputChannel, type sy6970_SY6970BatteryVoltageSensor, type sy6970_SY6970BusStatusTextSensor, type sy6970_SY6970ChargeCurrentSensor, type sy6970_SY6970ChargeDoneBinarySensor, type sy6970_SY6970ChargeStatusTextSensor, type sy6970_SY6970ChargingBinarySensor, type sy6970_SY6970Component, type sy6970_SY6970NtcStatusTextSensor, type sy6970_SY6970PrechargeCurrentSensor, type sy6970_SY6970SystemVoltageSensor, type sy6970_SY6970VbusConnectedBinarySensor, type sy6970_SY6970VbusVoltageSensor, type syslog_Syslog, type t6615_T6615Component, type tc74_TC74Component, type tca9548a_TCA9548AChannel, type tca9548a_TCA9548AComponent, type tca9555_TCA9555Component, type tcl112_Tcl112Climate, type tcs34725_TCS34725Component, type tee501_TEE501Component, type teleinfo_TeleInfo, type teleinfo_TeleInfoSensor, type teleinfo_TeleInfoTextSensor, type tem3200_TEM3200Component, type template__TemplateAlarmControlPanel, type template__TemplateBinaryOutput, type template__TemplateBinarySensor, type template__TemplateButton, type template__TemplateCover, type template__TemplateDate, type template__TemplateDateTime, type template__TemplateEvent, type template__TemplateFan, type template__TemplateFloatOutput, type template__TemplateLock, type template__TemplateNumber, type template__TemplateSelect, type template__TemplateSensor, type template__TemplateSwitch, type template__TemplateText, type template__TemplateTextSensor, type template__TemplateTime, type template__TemplateValve, type template__TemplateWaterHeater, type text_Text, type text_sensor_TextSensor, type thermopro_ble_ThermoProBLE, type thermostat_ThermostatClimate, type thermostat_ThermostatClimateTargetTempConfig, type time_RealTimeClock, type time_based_TimeBasedCover, type tinyusb_TinyUSB, type tlc59208f_TLC59208FChannel, type tlc59208f_TLC59208FOutput, type tlc5947_TLC5947, type tlc5947_TLC5947Channel, type tlc5971_TLC5971, type tlc5971_TLC5971Channel, type tm1621_TM1621Display, type tm1637_TM1637Display, type tm1637_TM1637Key, type tm1638_TM1638Component, type tm1638_TM1638Key, type tm1638_TM1638OutputLed, type tm1638_TM1638SwitchLed, type tm1651_TM1651Display, type tmp102_TMP102Component, type tmp1075_TMP1075Sensor, type tmp117_TMP117Component, toYAML, type tof10120_TOF10120Sensor, type tormatic_Tormatic, type toshiba_ToshibaClimate, type total_daily_energy_TotalDailyEnergy, type touchscreen_TouchListener, type touchscreen_Touchscreen, type touchscreen_TouchscreenBinarySensor, type tsl2561_TSL2561Sensor, type tsl2591_TSL2591Component, type tt21100_TT21100Button, type tt21100_TT21100ButtonListener, type tt21100_TT21100Touchscreen, type ttp229_bsf_TTP229BSFChannel, type ttp229_bsf_TTP229BSFComponent, type ttp229_lsf_TTP229Channel, type ttp229_lsf_TTP229LSFComponent, type tuya_Tuya, type tuya_TuyaBinarySensor, type tuya_TuyaClimate, type tuya_TuyaCover, type tuya_TuyaFan, type tuya_TuyaLight, type tuya_TuyaNumber, type tuya_TuyaSelect, type tuya_TuyaSensor, type tuya_TuyaSwitch, type tuya_TuyaTextSensor, type tx20_Tx20Component, type uart_UARTButton, type uart_UARTComponent, type uart_UARTDevice, type uart_UARTEvent, type uart_UARTSwitch, type uart_UARTTransport, type udp_UDPComponent, type udp_UDPTransport, type ufire_ec_UFireECComponent, type ufire_ise_UFireISEComponent, type uln2003_ULN2003, type ultrasonic_UltrasonicSensorComponent, type update_UpdateEntity, type uponor_smatrix_UponorSmatrixClimate, type uponor_smatrix_UponorSmatrixComponent, type uponor_smatrix_UponorSmatrixDevice, type uponor_smatrix_UponorSmatrixSensor, type uptime_UptimeSecondsSensor, type uptime_UptimeTextSensor, type uptime_UptimeTimestampSensor, type usb_cdc_acm_USBCDCACMComponent, type usb_cdc_acm_USBCDCACMInstance, type usb_host_USBClient, type usb_host_USBHost, type usb_uart_USBUartChannel, type usb_uart_USBUartComponent, type usb_uart_USBUartTypeCH34X, type usb_uart_USBUartTypeCP210X, type usb_uart_USBUartTypeCdcAcm, useContext, useRef, useScript, type valve_Valve, type vbus_DeltaSolBS2009BSensor, type vbus_DeltaSolBS2009Sensor, type vbus_DeltaSolBS2BSensor, type vbus_DeltaSolBS2Sensor, type vbus_DeltaSolBSPlusBSensor, type vbus_DeltaSolBSPlusSensor, type vbus_DeltaSolCBSensor, type vbus_DeltaSolCS2BSensor, type vbus_DeltaSolCS2Sensor, type vbus_DeltaSolCSPlusBSensor, type vbus_DeltaSolCSPlusSensor, type vbus_DeltaSolCSensor, type vbus_VBus, type vbus_VBusCustomBSensor, type vbus_VBusCustomSensor, type vbus_VBusCustomSubBSensor, type vbus_VBusCustomSubSensor, type veml3235_VEML3235Sensor, type veml7700_VEML7700Component, type version_VersionTextSensor, type vl53l0x_VL53L0XSensor, type voice_assistant_VoiceAssistant, type voltage_sampler_VoltageSampler, type wake_on_lan_WakeOnLanButton, type water_heater_WaterHeater, type waveshare_epaper_WaveshareEPaperBase, type web_server_WebServer, type web_server_WebServerOTAComponent, type web_server_base_WebServerBase, type weikai_WeikaiComponent, type weikai_i2c_WeikaiComponentI2C, type weikai_spi_WeikaiComponentSPI, type whirlpool_WhirlpoolClimate, type whynter_Whynter, type wiegand_Wiegand, type wifi_WiFiAP, type wifi_WiFiComponent, type wifi_info_BSSIDWiFiInfo, type wifi_info_DNSAddressWifiInfo, type wifi_info_IPAddressWiFiInfo, type wifi_info_MacAddressWifiInfo, type wifi_info_PowerSaveModeWiFiInfo, type wifi_info_SSIDWiFiInfo, type wifi_info_ScanResultsWiFiInfo, type wifi_signal_WiFiSignalSensor, type wireguard_Wireguard, withContext, withScriptScope, type wl_134_Wl134Component, type wts01_WTS01Sensor, type x9c_X9cOutput, type xgzp68xx_XGZP68XXComponent, type xiaomi_ble_XiaomiListener, type xiaomi_cgd1_XiaomiCGD1, type xiaomi_cgdk2_XiaomiCGDK2, type xiaomi_cgg1_XiaomiCGG1, type xiaomi_cgpr1_XiaomiCGPR1, type xiaomi_gcls002_XiaomiGCLS002, type xiaomi_hhccjcy01_XiaomiHHCCJCY01, type xiaomi_hhccjcy10_XiaomiHHCCJCY10, type xiaomi_hhccpot002_XiaomiHHCCPOT002, type xiaomi_jqjcy01ym_XiaomiJQJCY01YM, type xiaomi_lywsd02_XiaomiLYWSD02, type xiaomi_lywsd02mmc_XiaomiLYWSD02MMC, type xiaomi_lywsd03mmc_XiaomiLYWSD03MMC, type xiaomi_lywsdcgq_XiaomiLYWSDCGQ, type xiaomi_mhoc303_XiaomiMHOC303, type xiaomi_mhoc401_XiaomiMHOC401, type xiaomi_miscale_XiaomiMiscale, type xiaomi_mjyd02yla_XiaomiMJYD02YLA, type xiaomi_mue4094rt_XiaomiMUE4094RT, type xiaomi_rtcgq02lm_XiaomiRTCGQ02LM, type xiaomi_wx08zm_XiaomiWX08ZM, type xiaomi_xmwsdj04mmc_XiaomiXMWSDJ04MMC, type xl9535_XL9535Component, type xpt2046_XPT2046Component, type yashima_YashimaClimate, type zephyr_CdcAcm, type zephyr_ble_server_BLEServer, type zephyr_mcumgr_OTAComponent, type zhlt01_ZHLT01Climate, type zigbee_ZigbeeBinarySensor, type zigbee_ZigbeeComponent, type zigbee_ZigbeeNumber, type zigbee_ZigbeeSensor, type zigbee_ZigbeeSwitch, type zigbee_ZigbeeTime, type zio_ultrasonic_ZioUltrasonicComponent, type zwave_proxy_ZWaveProxy, type zyaura_ZyAuraSensor };