@devvit/protos 0.10.18-next-2024-03-06-efe77efce.0 → 0.10.18-next-2024-03-06-26d85f551.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/index.d.ts +5 -4
  2. package/index.d.ts.map +1 -1
  3. package/index.js +5 -4
  4. package/package.json +3 -3
  5. package/schema/devvit/ui/block_kit/v1beta/ui.proto +18 -9
  6. package/schema/devvit/ui/effects/v1alpha/effect.proto +5 -0
  7. package/schema/devvit/ui/effects/v1alpha/interval.proto +30 -0
  8. package/schema/devvit/ui/events/v1alpha/event.proto +9 -0
  9. package/twirp-server.d.ts +1 -1
  10. package/twirp-server.d.ts.map +1 -1
  11. package/twirp-server.js +1 -1
  12. package/types/devvit/actor/reddit/context_action.d.ts +100 -4
  13. package/types/devvit/actor/reddit/context_action.d.ts.map +1 -1
  14. package/types/devvit/reddit/custom_actions/v2alpha/custom_actions.d.ts +100 -4
  15. package/types/devvit/reddit/custom_actions/v2alpha/custom_actions.d.ts.map +1 -1
  16. package/types/devvit/reddit/custom_post/v1alpha/custom_post.d.ts +343 -247
  17. package/types/devvit/reddit/custom_post/v1alpha/custom_post.d.ts.map +1 -1
  18. package/types/devvit/ui/block_kit/v1beta/ui.d.ts +486 -345
  19. package/types/devvit/ui/block_kit/v1beta/ui.d.ts.map +1 -1
  20. package/types/devvit/ui/block_kit/v1beta/ui.js +64 -55
  21. package/types/devvit/ui/effects/v1alpha/effect.d.ts +64 -3
  22. package/types/devvit/ui/effects/v1alpha/effect.d.ts.map +1 -1
  23. package/types/devvit/ui/effects/v1alpha/effect.js +21 -0
  24. package/types/devvit/ui/effects/v1alpha/interval.d.ts +135 -0
  25. package/types/devvit/ui/effects/v1alpha/interval.d.ts.map +1 -0
  26. package/types/devvit/ui/effects/v1alpha/interval.js +191 -0
  27. package/types/devvit/ui/effects/v1alpha/send_event.d.ts +8 -2
  28. package/types/devvit/ui/effects/v1alpha/send_event.d.ts.map +1 -1
  29. package/types/devvit/ui/events/v1alpha/event.d.ts +19 -1
  30. package/types/devvit/ui/events/v1alpha/event.d.ts.map +1 -1
  31. package/types/devvit/ui/events/v1alpha/event.js +57 -0
  32. package/types/devvit/ui/events/v1alpha/handle_ui.d.ts +108 -6
  33. package/types/devvit/ui/events/v1alpha/handle_ui.d.ts.map +1 -1
@@ -7,7 +7,34 @@ import _m0 from 'protobufjs/minimal.js';
7
7
  import { Effect } from '../../effects/v1alpha/effect.js';
8
8
  import { UIEvent } from '../../events/v1alpha/event.js';
9
9
  import { Block } from './block.js';
10
+ /**
11
+ * This file encodes a generic protocol for rendering UIs. If you want to embed a UI into Devvit, you should use this protocol.
12
+ * This protobuf is for the second iteration of Blocks components. It's an extraction of CustomPost to work with any UI surface.
13
+ *
14
+ * The idea is that if you want to add a new surface, you can add an rpc method that takes a RenderUIRequest and returns a RenderUIResponse.
15
+ * This RPC method will encompass the full lifecycle of the UI. It will be called when the UI is first rendered, and it will be called again
16
+ * when the user or system interacts with the UI via UIEvents.
17
+ *
18
+ * Example:
19
+ *
20
+ * service MyService {
21
+ * rpc MyNewSidebarUI(UIRequest) returns (UIResponse) {};
22
+ * }
23
+ *
24
+ * There are some optimizations encoded in the protocol. For example, if you just want a pure render, you can send a UIRequest with no events. This
25
+ * will return a UIResponse with no effects and no new state. Conversely, if you want to update state, but not render anything, you can send a UIRequest
26
+ * with no_render set to true. This will return a UIResponse with effects and state updates but no new UI.
27
+ *
28
+ * The common case, however, is to send a UIRequest with events and no_render set to false. This will perform the state updates, do a render, then return
29
+ * a UIResponse with a new UI, new state, and effects, and saving the multiple round-trips.
30
+ */
10
31
  export interface UIRequest {
32
+ /**
33
+ * This is universally available to all UIs. It's a place to put environment-specific data.
34
+ * Typical items are e.g. locale, dark mode, etc. Please don't put surface-specific data here.
35
+ * (i.e. *NOT* post_id, that should be in the props. *NOT* user_id, that should be in the state.)
36
+ */
37
+ env?: UIEnvironment | undefined;
11
38
  /** Props to the root component of this UI. */
12
39
  props?: {
13
40
  [key: string]: any;
@@ -21,14 +48,6 @@ export interface UIRequest {
21
48
  * now, This is zero or one events. If you just want to render a UI, you can send an empty list.
22
49
  */
23
50
  events: UIEvent[];
24
- options?: UIOptions | undefined;
25
- }
26
- export interface UIOptions {
27
- /**
28
- * If true, the UI will not be rendered. This is useful for a workflow where you want to update state, but not yet render anything.
29
- * the awkward phrasing is so that the default value is false, and therefore rendering by default.
30
- */
31
- noRender?: boolean | undefined;
32
51
  }
33
52
  export interface UIResponse {
34
53
  /** Stateful data to be sent back. This will be sent back to you in the next request. */
@@ -40,6 +59,17 @@ export interface UIResponse {
40
59
  /** Render the post with Blocks */
41
60
  blocks?: Block | undefined;
42
61
  }
62
+ /**
63
+ * This is universally available to all UIs. It's a place to put environment-specific data.
64
+ * Typical items are e.g. locale, dark mode, etc. Please don't put surface-specific data here.
65
+ * (i.e. *NOT* post_id, that should be in the props. *NOT* user_id, that should be in the state.)
66
+ */
67
+ export interface UIEnvironment {
68
+ /** The locale of the user. This is a string like "en-US" or "fr-CA" */
69
+ locale?: string | undefined;
70
+ /** The user's preferred color scheme. This is a string like "light" or "dark" */
71
+ colorScheme?: string | undefined;
72
+ }
43
73
  export declare const UIRequest: {
44
74
  $type: "devvit.ui.block_kit.v1beta.UIRequest";
45
75
  encode(message: UIRequest, writer?: _m0.Writer): _m0.Writer;
@@ -47,6 +77,10 @@ export declare const UIRequest: {
47
77
  fromJSON(object: any): UIRequest;
48
78
  toJSON(message: UIRequest): unknown;
49
79
  fromPartial<I extends {
80
+ env?: {
81
+ locale?: string | undefined;
82
+ colorScheme?: string | undefined;
83
+ } | undefined;
50
84
  props?: {
51
85
  [x: string]: any;
52
86
  } | undefined;
@@ -104,22 +138,28 @@ export declare const UIRequest: {
104
138
  details?: string | undefined;
105
139
  } | undefined;
106
140
  } | undefined;
141
+ timer?: {} | undefined;
107
142
  queue?: string | undefined;
143
+ hook?: string | undefined;
108
144
  }[] | undefined;
109
- options?: {
110
- noRender?: boolean | undefined;
111
- } | undefined;
112
145
  } & {
146
+ env?: ({
147
+ locale?: string | undefined;
148
+ colorScheme?: string | undefined;
149
+ } & {
150
+ locale?: string | undefined;
151
+ colorScheme?: string | undefined;
152
+ } & { [K in Exclude<keyof I["env"], "$type" | keyof UIEnvironment>]: never; }) | undefined;
113
153
  props?: ({
114
154
  [x: string]: any;
115
155
  } & {
116
156
  [x: string]: any;
117
- } & { [K in Exclude<keyof I["props"], string | number>]: never; }) | undefined;
157
+ } & { [K_1 in Exclude<keyof I["props"], string | number>]: never; }) | undefined;
118
158
  state?: ({
119
159
  [x: string]: any;
120
160
  } & {
121
161
  [x: string]: any;
122
- } & { [K_1 in Exclude<keyof I["state"], string | number>]: never; }) | undefined;
162
+ } & { [K_2 in Exclude<keyof I["state"], string | number>]: never; }) | undefined;
123
163
  events?: ({
124
164
  realtimeEvent?: {
125
165
  event?: {
@@ -171,7 +211,9 @@ export declare const UIRequest: {
171
211
  details?: string | undefined;
172
212
  } | undefined;
173
213
  } | undefined;
214
+ timer?: {} | undefined;
174
215
  queue?: string | undefined;
216
+ hook?: string | undefined;
175
217
  }[] & ({
176
218
  realtimeEvent?: {
177
219
  event?: {
@@ -223,7 +265,9 @@ export declare const UIRequest: {
223
265
  details?: string | undefined;
224
266
  } | undefined;
225
267
  } | undefined;
268
+ timer?: {} | undefined;
226
269
  queue?: string | undefined;
270
+ hook?: string | undefined;
227
271
  } & {
228
272
  realtimeEvent?: ({
229
273
  event?: {
@@ -238,9 +282,9 @@ export declare const UIRequest: {
238
282
  } & {
239
283
  channel?: string | undefined;
240
284
  data?: any;
241
- } & { [K_2 in Exclude<keyof I["events"][number]["realtimeEvent"]["event"], "$type" | keyof import("../../../events/v1alpha/realtime.js").RealtimeEvent>]: never; }) | undefined;
285
+ } & { [K_3 in Exclude<keyof I["events"][number]["realtimeEvent"]["event"], "$type" | keyof import("../../../events/v1alpha/realtime.js").RealtimeEvent>]: never; }) | undefined;
242
286
  status?: import("../../effects/v1alpha/realtime_subscriptions.js").RealtimeSubscriptionStatus | undefined;
243
- } & { [K_3 in Exclude<keyof I["events"][number]["realtimeEvent"], "$type" | keyof import("../../effects/v1alpha/realtime_subscriptions.js").RealtimeSubscriptionEvent>]: never; }) | undefined;
287
+ } & { [K_4 in Exclude<keyof I["events"][number]["realtimeEvent"], "$type" | keyof import("../../effects/v1alpha/realtime_subscriptions.js").RealtimeSubscriptionEvent>]: never; }) | undefined;
244
288
  formSubmitted?: ({
245
289
  results?: {
246
290
  [x: string]: {
@@ -462,12 +506,12 @@ export declare const UIRequest: {
462
506
  } | undefined;
463
507
  groupValue?: {} | undefined;
464
508
  }[] | undefined;
465
- } & any & { [K_4 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
509
+ } & any & { [K_5 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
466
510
  selectionValue?: ({
467
511
  values?: string[] | undefined;
468
- } & any & { [K_5 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
469
- groupValue?: ({} & any & { [K_6 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
470
- } & { [K_7 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_8 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"], "$type" | keyof {
512
+ } & any & { [K_6 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
513
+ groupValue?: ({} & any & { [K_7 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
514
+ } & { [K_8 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_9 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"]["items"], "$type" | keyof {
471
515
  fieldType?: import("../../form_builder/v1alpha/type.js").FormFieldType | undefined;
472
516
  isSecret?: boolean | undefined;
473
517
  stringValue?: string | undefined;
@@ -482,14 +526,14 @@ export declare const UIRequest: {
482
526
  } | undefined;
483
527
  groupValue?: {} | undefined;
484
528
  }[]>]: never; }) | undefined;
485
- } & { [K_9 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
529
+ } & { [K_10 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
486
530
  selectionValue?: ({
487
531
  values?: string[] | undefined;
488
532
  } & {
489
- values?: (string[] & string[] & { [K_10 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
490
- } & { [K_11 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
491
- groupValue?: ({} & {} & { [K_12 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
492
- } & { [K_13 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_14 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"], "$type" | keyof {
533
+ values?: (string[] & string[] & { [K_11 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
534
+ } & { [K_12 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
535
+ groupValue?: ({} & {} & { [K_13 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
536
+ } & { [K_14 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_15 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"]["items"], "$type" | keyof {
493
537
  fieldType?: import("../../form_builder/v1alpha/type.js").FormFieldType | undefined;
494
538
  isSecret?: boolean | undefined;
495
539
  stringValue?: string | undefined;
@@ -504,14 +548,14 @@ export declare const UIRequest: {
504
548
  } | undefined;
505
549
  groupValue?: {} | undefined;
506
550
  }[]>]: never; }) | undefined;
507
- } & { [K_15 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
551
+ } & { [K_16 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
508
552
  selectionValue?: ({
509
553
  values?: string[] | undefined;
510
554
  } & {
511
- values?: (string[] & string[] & { [K_16 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
512
- } & { [K_17 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
513
- groupValue?: ({} & {} & { [K_18 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
514
- } & { [K_19 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_20 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"], "$type" | keyof {
555
+ values?: (string[] & string[] & { [K_17 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
556
+ } & { [K_18 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["selectionValue"], "$type" | "values">]: never; }) | undefined;
557
+ groupValue?: ({} & {} & { [K_19 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number]["groupValue"], "$type">]: never; }) | undefined;
558
+ } & { [K_20 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"][number], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; })[] & { [K_21 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"]["items"], "$type" | keyof {
515
559
  fieldType?: import("../../form_builder/v1alpha/type.js").FormFieldType | undefined;
516
560
  isSecret?: boolean | undefined;
517
561
  stringValue?: string | undefined;
@@ -526,18 +570,18 @@ export declare const UIRequest: {
526
570
  } | undefined;
527
571
  groupValue?: {} | undefined;
528
572
  }[]>]: never; }) | undefined;
529
- } & { [K_21 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
573
+ } & { [K_22 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["listValue"], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue_ListValue>]: never; }) | undefined;
530
574
  selectionValue?: ({
531
575
  values?: string[] | undefined;
532
576
  } & {
533
- values?: (string[] & string[] & { [K_22 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
534
- } & { [K_23 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["selectionValue"], "$type" | "values">]: never; }) | undefined;
535
- groupValue?: ({} & {} & { [K_24 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["groupValue"], "$type">]: never; }) | undefined;
536
- } & { [K_25 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; }) | undefined;
537
- } & { [K_26 in Exclude<keyof I["events"][number]["formSubmitted"]["results"], string | number>]: never; }) | undefined;
577
+ values?: (string[] & string[] & { [K_23 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["selectionValue"]["values"], "$type" | keyof string[]>]: never; }) | undefined;
578
+ } & { [K_24 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["selectionValue"], "$type" | "values">]: never; }) | undefined;
579
+ groupValue?: ({} & {} & { [K_25 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string]["groupValue"], "$type">]: never; }) | undefined;
580
+ } & { [K_26 in Exclude<keyof I["events"][number]["formSubmitted"]["results"][string], "$type" | keyof import("../../form_builder/v1alpha/value.js").FormFieldValue>]: never; }) | undefined;
581
+ } & { [K_27 in Exclude<keyof I["events"][number]["formSubmitted"]["results"], string | number>]: never; }) | undefined;
538
582
  formId?: string | undefined;
539
- } & { [K_27 in Exclude<keyof I["events"][number]["formSubmitted"], "$type" | keyof import("../../effects/v1alpha/show_form.js").FormSubmittedEvent>]: never; }) | undefined;
540
- toastAction?: ({} & {} & { [K_28 in Exclude<keyof I["events"][number]["toastAction"], "$type">]: never; }) | undefined;
583
+ } & { [K_28 in Exclude<keyof I["events"][number]["formSubmitted"], "$type" | keyof import("../../effects/v1alpha/show_form.js").FormSubmittedEvent>]: never; }) | undefined;
584
+ toastAction?: ({} & {} & { [K_29 in Exclude<keyof I["events"][number]["toastAction"], "$type">]: never; }) | undefined;
541
585
  userAction?: ({
542
586
  actionId?: string | undefined;
543
587
  data?: {
@@ -549,8 +593,8 @@ export declare const UIRequest: {
549
593
  [x: string]: any;
550
594
  } & {
551
595
  [x: string]: any;
552
- } & { [K_29 in Exclude<keyof I["events"][number]["userAction"]["data"], string | number>]: never; }) | undefined;
553
- } & { [K_30 in Exclude<keyof I["events"][number]["userAction"], "$type" | keyof import("../../events/v1alpha/event.js").UserAction>]: never; }) | undefined;
596
+ } & { [K_30 in Exclude<keyof I["events"][number]["userAction"]["data"], string | number>]: never; }) | undefined;
597
+ } & { [K_31 in Exclude<keyof I["events"][number]["userAction"], "$type" | keyof import("../../events/v1alpha/event.js").UserAction>]: never; }) | undefined;
554
598
  asyncRequest?: ({
555
599
  requestId?: string | undefined;
556
600
  data?: {
@@ -562,8 +606,8 @@ export declare const UIRequest: {
562
606
  [x: string]: any;
563
607
  } & {
564
608
  [x: string]: any;
565
- } & { [K_31 in Exclude<keyof I["events"][number]["asyncRequest"]["data"], string | number>]: never; }) | undefined;
566
- } & { [K_32 in Exclude<keyof I["events"][number]["asyncRequest"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncRequest>]: never; }) | undefined;
609
+ } & { [K_32 in Exclude<keyof I["events"][number]["asyncRequest"]["data"], string | number>]: never; }) | undefined;
610
+ } & { [K_33 in Exclude<keyof I["events"][number]["asyncRequest"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncRequest>]: never; }) | undefined;
567
611
  asyncResponse?: ({
568
612
  requestId?: string | undefined;
569
613
  data?: {
@@ -579,17 +623,19 @@ export declare const UIRequest: {
579
623
  [x: string]: any;
580
624
  } & {
581
625
  [x: string]: any;
582
- } & { [K_33 in Exclude<keyof I["events"][number]["asyncResponse"]["data"], string | number>]: never; }) | undefined;
626
+ } & { [K_34 in Exclude<keyof I["events"][number]["asyncResponse"]["data"], string | number>]: never; }) | undefined;
583
627
  error?: ({
584
628
  message?: string | undefined;
585
629
  details?: string | undefined;
586
630
  } & {
587
631
  message?: string | undefined;
588
632
  details?: string | undefined;
589
- } & { [K_34 in Exclude<keyof I["events"][number]["asyncResponse"]["error"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncError>]: never; }) | undefined;
590
- } & { [K_35 in Exclude<keyof I["events"][number]["asyncResponse"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncResponse>]: never; }) | undefined;
633
+ } & { [K_35 in Exclude<keyof I["events"][number]["asyncResponse"]["error"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncError>]: never; }) | undefined;
634
+ } & { [K_36 in Exclude<keyof I["events"][number]["asyncResponse"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncResponse>]: never; }) | undefined;
635
+ timer?: ({} & {} & { [K_37 in Exclude<keyof I["events"][number]["timer"], "$type">]: never; }) | undefined;
591
636
  queue?: string | undefined;
592
- } & { [K_36 in Exclude<keyof I["events"][number], "$type" | keyof UIEvent>]: never; })[] & { [K_37 in Exclude<keyof I["events"], "$type" | keyof {
637
+ hook?: string | undefined;
638
+ } & { [K_38 in Exclude<keyof I["events"][number], "$type" | keyof UIEvent>]: never; })[] & { [K_39 in Exclude<keyof I["events"], "$type" | keyof {
593
639
  realtimeEvent?: {
594
640
  event?: {
595
641
  channel?: string | undefined;
@@ -640,26 +686,11 @@ export declare const UIRequest: {
640
686
  details?: string | undefined;
641
687
  } | undefined;
642
688
  } | undefined;
689
+ timer?: {} | undefined;
643
690
  queue?: string | undefined;
691
+ hook?: string | undefined;
644
692
  }[]>]: never; }) | undefined;
645
- options?: ({
646
- noRender?: boolean | undefined;
647
- } & {
648
- noRender?: boolean | undefined;
649
- } & { [K_38 in Exclude<keyof I["options"], "$type" | "noRender">]: never; }) | undefined;
650
- } & { [K_39 in Exclude<keyof I, "$type" | keyof UIRequest>]: never; }>(object: I): UIRequest;
651
- };
652
- export declare const UIOptions: {
653
- $type: "devvit.ui.block_kit.v1beta.UIOptions";
654
- encode(message: UIOptions, writer?: _m0.Writer): _m0.Writer;
655
- decode(input: _m0.Reader | Uint8Array, length?: number): UIOptions;
656
- fromJSON(object: any): UIOptions;
657
- toJSON(message: UIOptions): unknown;
658
- fromPartial<I extends {
659
- noRender?: boolean | undefined;
660
- } & {
661
- noRender?: boolean | undefined;
662
- } & { [K in Exclude<keyof I, "$type" | "noRender">]: never; }>(object: I): UIOptions;
693
+ } & { [K_40 in Exclude<keyof I, "$type" | keyof UIRequest>]: never; }>(object: I): UIRequest;
663
694
  };
664
695
  export declare const UIResponse: {
665
696
  $type: "devvit.ui.block_kit.v1beta.UIResponse";
@@ -835,7 +866,20 @@ export declare const UIResponse: {
835
866
  details?: string | undefined;
836
867
  } | undefined;
837
868
  } | undefined;
869
+ timer?: {} | undefined;
838
870
  queue?: string | undefined;
871
+ hook?: string | undefined;
872
+ } | undefined;
873
+ } | undefined;
874
+ interval?: {
875
+ intervals?: {
876
+ [x: string]: {
877
+ duration?: {
878
+ seconds?: number | undefined;
879
+ nanos?: number | undefined;
880
+ } | undefined;
881
+ queue?: string | undefined;
882
+ } | undefined;
839
883
  } | undefined;
840
884
  } | undefined;
841
885
  type?: import("../../effects/v1alpha/effect.js").EffectType | undefined;
@@ -1170,7 +1214,20 @@ export declare const UIResponse: {
1170
1214
  details?: string | undefined;
1171
1215
  } | undefined;
1172
1216
  } | undefined;
1217
+ timer?: {} | undefined;
1173
1218
  queue?: string | undefined;
1219
+ hook?: string | undefined;
1220
+ } | undefined;
1221
+ } | undefined;
1222
+ interval?: {
1223
+ intervals?: {
1224
+ [x: string]: {
1225
+ duration?: {
1226
+ seconds?: number | undefined;
1227
+ nanos?: number | undefined;
1228
+ } | undefined;
1229
+ queue?: string | undefined;
1230
+ } | undefined;
1174
1231
  } | undefined;
1175
1232
  } | undefined;
1176
1233
  type?: import("../../effects/v1alpha/effect.js").EffectType | undefined;
@@ -1338,7 +1395,20 @@ export declare const UIResponse: {
1338
1395
  details?: string | undefined;
1339
1396
  } | undefined;
1340
1397
  } | undefined;
1398
+ timer?: {} | undefined;
1341
1399
  queue?: string | undefined;
1400
+ hook?: string | undefined;
1401
+ } | undefined;
1402
+ } | undefined;
1403
+ interval?: {
1404
+ intervals?: {
1405
+ [x: string]: {
1406
+ duration?: {
1407
+ seconds?: number | undefined;
1408
+ nanos?: number | undefined;
1409
+ } | undefined;
1410
+ queue?: string | undefined;
1411
+ } | undefined;
1342
1412
  } | undefined;
1343
1413
  } | undefined;
1344
1414
  type?: import("../../effects/v1alpha/effect.js").EffectType | undefined;
@@ -4539,7 +4609,9 @@ export declare const UIResponse: {
4539
4609
  details?: string | undefined;
4540
4610
  } | undefined;
4541
4611
  } | undefined;
4612
+ timer?: {} | undefined;
4542
4613
  queue?: string | undefined;
4614
+ hook?: string | undefined;
4543
4615
  } | undefined;
4544
4616
  } & {
4545
4617
  event?: ({
@@ -4593,7 +4665,9 @@ export declare const UIResponse: {
4593
4665
  details?: string | undefined;
4594
4666
  } | undefined;
4595
4667
  } | undefined;
4668
+ timer?: {} | undefined;
4596
4669
  queue?: string | undefined;
4670
+ hook?: string | undefined;
4597
4671
  } & {
4598
4672
  realtimeEvent?: ({
4599
4673
  event?: {
@@ -4886,11 +4960,51 @@ export declare const UIResponse: {
4886
4960
  details?: string | undefined;
4887
4961
  } & { [K_143 in Exclude<keyof I["effects"][number]["sendEvent"]["event"]["asyncResponse"]["error"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncError>]: never; }) | undefined;
4888
4962
  } & { [K_144 in Exclude<keyof I["effects"][number]["sendEvent"]["event"]["asyncResponse"], "$type" | keyof import("../../events/v1alpha/event.js").AsyncResponse>]: never; }) | undefined;
4963
+ timer?: ({} & {} & { [K_145 in Exclude<keyof I["effects"][number]["sendEvent"]["event"]["timer"], "$type">]: never; }) | undefined;
4889
4964
  queue?: string | undefined;
4890
- } & { [K_145 in Exclude<keyof I["effects"][number]["sendEvent"]["event"], "$type" | keyof UIEvent>]: never; }) | undefined;
4891
- } & { [K_146 in Exclude<keyof I["effects"][number]["sendEvent"], "$type" | "event">]: never; }) | undefined;
4965
+ hook?: string | undefined;
4966
+ } & { [K_146 in Exclude<keyof I["effects"][number]["sendEvent"]["event"], "$type" | keyof UIEvent>]: never; }) | undefined;
4967
+ } & { [K_147 in Exclude<keyof I["effects"][number]["sendEvent"], "$type" | "event">]: never; }) | undefined;
4968
+ interval?: ({
4969
+ intervals?: {
4970
+ [x: string]: {
4971
+ duration?: {
4972
+ seconds?: number | undefined;
4973
+ nanos?: number | undefined;
4974
+ } | undefined;
4975
+ queue?: string | undefined;
4976
+ } | undefined;
4977
+ } | undefined;
4978
+ } & {
4979
+ intervals?: ({
4980
+ [x: string]: {
4981
+ duration?: {
4982
+ seconds?: number | undefined;
4983
+ nanos?: number | undefined;
4984
+ } | undefined;
4985
+ queue?: string | undefined;
4986
+ } | undefined;
4987
+ } & {
4988
+ [x: string]: ({
4989
+ duration?: {
4990
+ seconds?: number | undefined;
4991
+ nanos?: number | undefined;
4992
+ } | undefined;
4993
+ queue?: string | undefined;
4994
+ } & {
4995
+ duration?: ({
4996
+ seconds?: number | undefined;
4997
+ nanos?: number | undefined;
4998
+ } & {
4999
+ seconds?: number | undefined;
5000
+ nanos?: number | undefined;
5001
+ } & { [K_148 in Exclude<keyof I["effects"][number]["interval"]["intervals"][string]["duration"], "$type" | keyof import("../../../../../index.js").Duration>]: never; }) | undefined;
5002
+ queue?: string | undefined;
5003
+ } & { [K_149 in Exclude<keyof I["effects"][number]["interval"]["intervals"][string], "$type" | keyof import("../../effects/v1alpha/interval.js").IntervalDetails>]: never; }) | undefined;
5004
+ } & { [K_150 in Exclude<keyof I["effects"][number]["interval"]["intervals"], string | number>]: never; }) | undefined;
5005
+ } & { [K_151 in Exclude<keyof I["effects"][number]["interval"], "$type" | "intervals">]: never; }) | undefined;
4892
5006
  type?: import("../../effects/v1alpha/effect.js").EffectType | undefined;
4893
- } & { [K_147 in Exclude<keyof I["effects"][number], "$type" | keyof Effect>]: never; })[] & { [K_148 in Exclude<keyof I["effects"], "$type" | keyof {
5007
+ } & { [K_152 in Exclude<keyof I["effects"][number], "$type" | keyof Effect>]: never; })[] & { [K_153 in Exclude<keyof I["effects"], "$type" | keyof {
4894
5008
  realtimeSubscriptions?: {
4895
5009
  subscriptionIds?: string[] | undefined;
4896
5010
  } | undefined;
@@ -5054,7 +5168,20 @@ export declare const UIResponse: {
5054
5168
  details?: string | undefined;
5055
5169
  } | undefined;
5056
5170
  } | undefined;
5171
+ timer?: {} | undefined;
5057
5172
  queue?: string | undefined;
5173
+ hook?: string | undefined;
5174
+ } | undefined;
5175
+ } | undefined;
5176
+ interval?: {
5177
+ intervals?: {
5178
+ [x: string]: {
5179
+ duration?: {
5180
+ seconds?: number | undefined;
5181
+ nanos?: number | undefined;
5182
+ } | undefined;
5183
+ queue?: string | undefined;
5184
+ } | undefined;
5058
5185
  } | undefined;
5059
5186
  } | undefined;
5060
5187
  type?: import("../../effects/v1alpha/effect.js").EffectType | undefined;
@@ -5232,7 +5359,7 @@ export declare const UIResponse: {
5232
5359
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
5233
5360
  height?: number | undefined;
5234
5361
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
5235
- } & { [K_149 in Exclude<keyof I["blocks"]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
5362
+ } & { [K_154 in Exclude<keyof I["blocks"]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
5236
5363
  sizes?: ({
5237
5364
  grow?: boolean | undefined;
5238
5365
  width?: {
@@ -5285,22 +5412,22 @@ export declare const UIResponse: {
5285
5412
  } & {
5286
5413
  value?: number | undefined;
5287
5414
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5288
- } & { [K_150 in Exclude<keyof I["blocks"]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5415
+ } & { [K_155 in Exclude<keyof I["blocks"]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5289
5416
  min?: ({
5290
5417
  value?: number | undefined;
5291
5418
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5292
5419
  } & {
5293
5420
  value?: number | undefined;
5294
5421
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5295
- } & { [K_151 in Exclude<keyof I["blocks"]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5422
+ } & { [K_156 in Exclude<keyof I["blocks"]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5296
5423
  max?: ({
5297
5424
  value?: number | undefined;
5298
5425
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5299
5426
  } & {
5300
5427
  value?: number | undefined;
5301
5428
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5302
- } & { [K_152 in Exclude<keyof I["blocks"]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5303
- } & { [K_153 in Exclude<keyof I["blocks"]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
5429
+ } & { [K_157 in Exclude<keyof I["blocks"]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5430
+ } & { [K_158 in Exclude<keyof I["blocks"]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
5304
5431
  height?: ({
5305
5432
  value?: {
5306
5433
  value?: number | undefined;
@@ -5321,23 +5448,23 @@ export declare const UIResponse: {
5321
5448
  } & {
5322
5449
  value?: number | undefined;
5323
5450
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5324
- } & { [K_154 in Exclude<keyof I["blocks"]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5451
+ } & { [K_159 in Exclude<keyof I["blocks"]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5325
5452
  min?: ({
5326
5453
  value?: number | undefined;
5327
5454
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5328
5455
  } & {
5329
5456
  value?: number | undefined;
5330
5457
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5331
- } & { [K_155 in Exclude<keyof I["blocks"]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5458
+ } & { [K_160 in Exclude<keyof I["blocks"]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5332
5459
  max?: ({
5333
5460
  value?: number | undefined;
5334
5461
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5335
5462
  } & {
5336
5463
  value?: number | undefined;
5337
5464
  unit?: import("./enums.js").BlockSizeUnit | undefined;
5338
- } & { [K_156 in Exclude<keyof I["blocks"]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5339
- } & { [K_157 in Exclude<keyof I["blocks"]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
5340
- } & { [K_158 in Exclude<keyof I["blocks"]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
5465
+ } & { [K_161 in Exclude<keyof I["blocks"]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
5466
+ } & { [K_162 in Exclude<keyof I["blocks"]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
5467
+ } & { [K_163 in Exclude<keyof I["blocks"]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
5341
5468
  config?: ({
5342
5469
  rootConfig?: {
5343
5470
  children?: {
@@ -6038,7 +6165,7 @@ export declare const UIResponse: {
6038
6165
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
6039
6166
  height?: number | undefined;
6040
6167
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
6041
- } & { [K_159 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
6168
+ } & { [K_164 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
6042
6169
  sizes?: ({
6043
6170
  grow?: boolean | undefined;
6044
6171
  width?: {
@@ -6091,22 +6218,22 @@ export declare const UIResponse: {
6091
6218
  } & {
6092
6219
  value?: number | undefined;
6093
6220
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6094
- } & { [K_160 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6221
+ } & { [K_165 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6095
6222
  min?: ({
6096
6223
  value?: number | undefined;
6097
6224
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6098
6225
  } & {
6099
6226
  value?: number | undefined;
6100
6227
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6101
- } & { [K_161 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6228
+ } & { [K_166 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6102
6229
  max?: ({
6103
6230
  value?: number | undefined;
6104
6231
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6105
6232
  } & {
6106
6233
  value?: number | undefined;
6107
6234
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6108
- } & { [K_162 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6109
- } & { [K_163 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6235
+ } & { [K_167 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6236
+ } & { [K_168 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6110
6237
  height?: ({
6111
6238
  value?: {
6112
6239
  value?: number | undefined;
@@ -6127,23 +6254,23 @@ export declare const UIResponse: {
6127
6254
  } & {
6128
6255
  value?: number | undefined;
6129
6256
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6130
- } & { [K_164 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6257
+ } & { [K_169 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6131
6258
  min?: ({
6132
6259
  value?: number | undefined;
6133
6260
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6134
6261
  } & {
6135
6262
  value?: number | undefined;
6136
6263
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6137
- } & { [K_165 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6264
+ } & { [K_170 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6138
6265
  max?: ({
6139
6266
  value?: number | undefined;
6140
6267
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6141
6268
  } & {
6142
6269
  value?: number | undefined;
6143
6270
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6144
- } & { [K_166 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6145
- } & { [K_167 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6146
- } & { [K_168 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
6271
+ } & { [K_171 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6272
+ } & { [K_172 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6273
+ } & { [K_173 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
6147
6274
  config?: ({
6148
6275
  rootConfig?: {
6149
6276
  children?: {
@@ -6844,7 +6971,7 @@ export declare const UIResponse: {
6844
6971
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
6845
6972
  height?: number | undefined;
6846
6973
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
6847
- } & { [K_169 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
6974
+ } & { [K_174 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
6848
6975
  sizes?: ({
6849
6976
  grow?: boolean | undefined;
6850
6977
  width?: {
@@ -6897,22 +7024,22 @@ export declare const UIResponse: {
6897
7024
  } & {
6898
7025
  value?: number | undefined;
6899
7026
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6900
- } & { [K_170 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7027
+ } & { [K_175 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6901
7028
  min?: ({
6902
7029
  value?: number | undefined;
6903
7030
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6904
7031
  } & {
6905
7032
  value?: number | undefined;
6906
7033
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6907
- } & { [K_171 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7034
+ } & { [K_176 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6908
7035
  max?: ({
6909
7036
  value?: number | undefined;
6910
7037
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6911
7038
  } & {
6912
7039
  value?: number | undefined;
6913
7040
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6914
- } & { [K_172 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6915
- } & { [K_173 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
7041
+ } & { [K_177 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7042
+ } & { [K_178 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6916
7043
  height?: ({
6917
7044
  value?: {
6918
7045
  value?: number | undefined;
@@ -6933,23 +7060,23 @@ export declare const UIResponse: {
6933
7060
  } & {
6934
7061
  value?: number | undefined;
6935
7062
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6936
- } & { [K_174 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7063
+ } & { [K_179 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6937
7064
  min?: ({
6938
7065
  value?: number | undefined;
6939
7066
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6940
7067
  } & {
6941
7068
  value?: number | undefined;
6942
7069
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6943
- } & { [K_175 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7070
+ } & { [K_180 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6944
7071
  max?: ({
6945
7072
  value?: number | undefined;
6946
7073
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6947
7074
  } & {
6948
7075
  value?: number | undefined;
6949
7076
  unit?: import("./enums.js").BlockSizeUnit | undefined;
6950
- } & { [K_176 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
6951
- } & { [K_177 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
6952
- } & { [K_178 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
7077
+ } & { [K_181 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
7078
+ } & { [K_182 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
7079
+ } & { [K_183 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
6953
7080
  config?: ({
6954
7081
  rootConfig?: {
6955
7082
  children?: {
@@ -7644,7 +7771,7 @@ export declare const UIResponse: {
7644
7771
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
7645
7772
  height?: number | undefined;
7646
7773
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
7647
- } & any & { [K_179 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
7774
+ } & any & { [K_184 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
7648
7775
  sizes?: ({
7649
7776
  grow?: boolean | undefined;
7650
7777
  width?: {
@@ -7675,7 +7802,7 @@ export declare const UIResponse: {
7675
7802
  unit?: import("./enums.js").BlockSizeUnit | undefined;
7676
7803
  } | undefined;
7677
7804
  } | undefined;
7678
- } & any & { [K_180 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
7805
+ } & any & { [K_185 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
7679
7806
  config?: ({
7680
7807
  rootConfig?: {
7681
7808
  children?: {
@@ -7883,7 +8010,7 @@ export declare const UIResponse: {
7883
8010
  webviewConfig?: {
7884
8011
  url?: string | undefined;
7885
8012
  } | undefined;
7886
- } & any & { [K_181 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
8013
+ } & any & { [K_186 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
7887
8014
  actions?: ({
7888
8015
  type?: import("./enums.js").BlockActionType | undefined;
7889
8016
  id?: string | undefined;
@@ -7896,14 +8023,14 @@ export declare const UIResponse: {
7896
8023
  data?: {
7897
8024
  [x: string]: any;
7898
8025
  } | undefined;
7899
- } & any & { [K_182 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_183 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
8026
+ } & any & { [K_187 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_188 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
7900
8027
  type?: import("./enums.js").BlockActionType | undefined;
7901
8028
  id?: string | undefined;
7902
8029
  data?: {
7903
8030
  [x: string]: any;
7904
8031
  } | undefined;
7905
8032
  }[]>]: never; }) | undefined;
7906
- } & { [K_184 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_185 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
8033
+ } & { [K_189 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_190 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
7907
8034
  type?: import("./enums.js").BlockType | undefined;
7908
8035
  size?: {
7909
8036
  grow?: boolean | undefined;
@@ -8064,7 +8191,7 @@ export declare const UIResponse: {
8064
8191
  }[] | undefined;
8065
8192
  }[]>]: never; }) | undefined;
8066
8193
  height?: number | undefined;
8067
- } & { [K_186 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
8194
+ } & { [K_191 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
8068
8195
  stackConfig?: ({
8069
8196
  direction?: import("./enums.js").BlockStackDirection | undefined;
8070
8197
  children?: {
@@ -8552,7 +8679,7 @@ export declare const UIResponse: {
8552
8679
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
8553
8680
  height?: number | undefined;
8554
8681
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
8555
- } & any & { [K_187 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
8682
+ } & any & { [K_192 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
8556
8683
  sizes?: ({
8557
8684
  grow?: boolean | undefined;
8558
8685
  width?: {
@@ -8583,7 +8710,7 @@ export declare const UIResponse: {
8583
8710
  unit?: import("./enums.js").BlockSizeUnit | undefined;
8584
8711
  } | undefined;
8585
8712
  } | undefined;
8586
- } & any & { [K_188 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
8713
+ } & any & { [K_193 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
8587
8714
  config?: ({
8588
8715
  rootConfig?: {
8589
8716
  children?: {
@@ -8791,7 +8918,7 @@ export declare const UIResponse: {
8791
8918
  webviewConfig?: {
8792
8919
  url?: string | undefined;
8793
8920
  } | undefined;
8794
- } & any & { [K_189 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
8921
+ } & any & { [K_194 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
8795
8922
  actions?: ({
8796
8923
  type?: import("./enums.js").BlockActionType | undefined;
8797
8924
  id?: string | undefined;
@@ -8804,14 +8931,14 @@ export declare const UIResponse: {
8804
8931
  data?: {
8805
8932
  [x: string]: any;
8806
8933
  } | undefined;
8807
- } & any & { [K_190 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_191 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
8934
+ } & any & { [K_195 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_196 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
8808
8935
  type?: import("./enums.js").BlockActionType | undefined;
8809
8936
  id?: string | undefined;
8810
8937
  data?: {
8811
8938
  [x: string]: any;
8812
8939
  } | undefined;
8813
8940
  }[]>]: never; }) | undefined;
8814
- } & { [K_192 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_193 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
8941
+ } & { [K_197 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_198 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
8815
8942
  type?: import("./enums.js").BlockType | undefined;
8816
8943
  size?: {
8817
8944
  grow?: boolean | undefined;
@@ -8978,7 +9105,7 @@ export declare const UIResponse: {
8978
9105
  } & {
8979
9106
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
8980
9107
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
8981
- } & { [K_194 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
9108
+ } & { [K_199 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
8982
9109
  padding?: import("./enums.js").BlockPadding | undefined;
8983
9110
  gap?: import("./enums.js").BlockGap | undefined;
8984
9111
  border?: ({
@@ -8994,8 +9121,8 @@ export declare const UIResponse: {
8994
9121
  colors?: ({
8995
9122
  light?: string | undefined;
8996
9123
  dark?: string | undefined;
8997
- } & any & { [K_195 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
8998
- } & { [K_196 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
9124
+ } & any & { [K_200 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9125
+ } & { [K_201 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
8999
9126
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
9000
9127
  backgroundColor?: string | undefined;
9001
9128
  backgroundColors?: ({
@@ -9004,8 +9131,8 @@ export declare const UIResponse: {
9004
9131
  } & {
9005
9132
  light?: string | undefined;
9006
9133
  dark?: string | undefined;
9007
- } & { [K_197 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9008
- } & { [K_198 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
9134
+ } & { [K_202 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9135
+ } & { [K_203 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
9009
9136
  textConfig?: ({
9010
9137
  text?: string | undefined;
9011
9138
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -9035,7 +9162,7 @@ export declare const UIResponse: {
9035
9162
  } & {
9036
9163
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
9037
9164
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
9038
- } & { [K_199 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
9165
+ } & { [K_204 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
9039
9166
  outline?: import("./enums.js").BlockTextOutline | undefined;
9040
9167
  style?: import("./enums.js").BlockTextStyle | undefined;
9041
9168
  selectable?: boolean | undefined;
@@ -9045,10 +9172,10 @@ export declare const UIResponse: {
9045
9172
  } & {
9046
9173
  light?: string | undefined;
9047
9174
  dark?: string | undefined;
9048
- } & { [K_200 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9175
+ } & { [K_205 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9049
9176
  wrap?: boolean | undefined;
9050
9177
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
9051
- } & { [K_201 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
9178
+ } & { [K_206 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
9052
9179
  buttonConfig?: ({
9053
9180
  text?: string | undefined;
9054
9181
  icon?: string | undefined;
@@ -9079,15 +9206,15 @@ export declare const UIResponse: {
9079
9206
  } & {
9080
9207
  light?: string | undefined;
9081
9208
  dark?: string | undefined;
9082
- } & { [K_202 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9209
+ } & { [K_207 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9083
9210
  backgroundColors?: ({
9084
9211
  light?: string | undefined;
9085
9212
  dark?: string | undefined;
9086
9213
  } & {
9087
9214
  light?: string | undefined;
9088
9215
  dark?: string | undefined;
9089
- } & { [K_203 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9090
- } & { [K_204 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
9216
+ } & { [K_208 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9217
+ } & { [K_209 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
9091
9218
  imageConfig?: ({
9092
9219
  url?: string | undefined;
9093
9220
  width?: number | undefined;
@@ -9100,14 +9227,14 @@ export declare const UIResponse: {
9100
9227
  height?: number | undefined;
9101
9228
  description?: string | undefined;
9102
9229
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
9103
- } & { [K_205 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
9230
+ } & { [K_210 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
9104
9231
  spacerConfig?: ({
9105
9232
  size?: import("./enums.js").BlockSpacerSize | undefined;
9106
9233
  shape?: import("./enums.js").BlockSpacerShape | undefined;
9107
9234
  } & {
9108
9235
  size?: import("./enums.js").BlockSpacerSize | undefined;
9109
9236
  shape?: import("./enums.js").BlockSpacerShape | undefined;
9110
- } & { [K_206 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
9237
+ } & { [K_211 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
9111
9238
  iconConfig?: ({
9112
9239
  icon?: string | undefined;
9113
9240
  color?: string | undefined;
@@ -9126,8 +9253,8 @@ export declare const UIResponse: {
9126
9253
  } & {
9127
9254
  light?: string | undefined;
9128
9255
  dark?: string | undefined;
9129
- } & { [K_207 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9130
- } & { [K_208 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
9256
+ } & { [K_212 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
9257
+ } & { [K_213 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
9131
9258
  avatarConfig?: ({
9132
9259
  thingId?: string | undefined;
9133
9260
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -9138,7 +9265,7 @@ export declare const UIResponse: {
9138
9265
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
9139
9266
  size?: import("./enums.js").BlockAvatarSize | undefined;
9140
9267
  background?: import("./enums.js").BlockAvatarBackground | undefined;
9141
- } & { [K_209 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
9268
+ } & { [K_214 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
9142
9269
  fullsnooConfig?: ({
9143
9270
  userId?: string | undefined;
9144
9271
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -9147,7 +9274,7 @@ export declare const UIResponse: {
9147
9274
  userId?: string | undefined;
9148
9275
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
9149
9276
  size?: import("./enums.js").BlockFullSnooSize | undefined;
9150
- } & { [K_210 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
9277
+ } & { [K_215 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
9151
9278
  animationConfig?: ({
9152
9279
  url?: string | undefined;
9153
9280
  width?: number | undefined;
@@ -9168,13 +9295,13 @@ export declare const UIResponse: {
9168
9295
  autoplay?: boolean | undefined;
9169
9296
  speed?: number | undefined;
9170
9297
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
9171
- } & { [K_211 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
9298
+ } & { [K_216 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
9172
9299
  webviewConfig?: ({
9173
9300
  url?: string | undefined;
9174
9301
  } & {
9175
9302
  url?: string | undefined;
9176
- } & { [K_212 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
9177
- } & { [K_213 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
9303
+ } & { [K_217 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
9304
+ } & { [K_218 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
9178
9305
  actions?: ({
9179
9306
  type?: import("./enums.js").BlockActionType | undefined;
9180
9307
  id?: string | undefined;
@@ -9194,15 +9321,15 @@ export declare const UIResponse: {
9194
9321
  [x: string]: any;
9195
9322
  } & {
9196
9323
  [x: string]: any;
9197
- } & { [K_214 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
9198
- } & { [K_215 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_216 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
9324
+ } & { [K_219 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
9325
+ } & { [K_220 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_221 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
9199
9326
  type?: import("./enums.js").BlockActionType | undefined;
9200
9327
  id?: string | undefined;
9201
9328
  data?: {
9202
9329
  [x: string]: any;
9203
9330
  } | undefined;
9204
9331
  }[]>]: never; }) | undefined;
9205
- } & { [K_217 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_218 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
9332
+ } & { [K_222 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_223 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
9206
9333
  type?: import("./enums.js").BlockType | undefined;
9207
9334
  size?: {
9208
9335
  grow?: boolean | undefined;
@@ -9363,7 +9490,7 @@ export declare const UIResponse: {
9363
9490
  }[] | undefined;
9364
9491
  }[]>]: never; }) | undefined;
9365
9492
  height?: number | undefined;
9366
- } & { [K_219 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
9493
+ } & { [K_224 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
9367
9494
  stackConfig?: ({
9368
9495
  direction?: import("./enums.js").BlockStackDirection | undefined;
9369
9496
  children?: {
@@ -9857,7 +9984,7 @@ export declare const UIResponse: {
9857
9984
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
9858
9985
  height?: number | undefined;
9859
9986
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
9860
- } & { [K_220 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
9987
+ } & { [K_225 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
9861
9988
  sizes?: ({
9862
9989
  grow?: boolean | undefined;
9863
9990
  width?: {
@@ -9910,22 +10037,22 @@ export declare const UIResponse: {
9910
10037
  } & {
9911
10038
  value?: number | undefined;
9912
10039
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9913
- } & { [K_221 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10040
+ } & { [K_226 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9914
10041
  min?: ({
9915
10042
  value?: number | undefined;
9916
10043
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9917
10044
  } & {
9918
10045
  value?: number | undefined;
9919
10046
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9920
- } & { [K_222 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10047
+ } & { [K_227 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9921
10048
  max?: ({
9922
10049
  value?: number | undefined;
9923
10050
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9924
10051
  } & {
9925
10052
  value?: number | undefined;
9926
10053
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9927
- } & { [K_223 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9928
- } & { [K_224 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
10054
+ } & { [K_228 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10055
+ } & { [K_229 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
9929
10056
  height?: ({
9930
10057
  value?: {
9931
10058
  value?: number | undefined;
@@ -9946,23 +10073,23 @@ export declare const UIResponse: {
9946
10073
  } & {
9947
10074
  value?: number | undefined;
9948
10075
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9949
- } & { [K_225 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10076
+ } & { [K_230 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9950
10077
  min?: ({
9951
10078
  value?: number | undefined;
9952
10079
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9953
10080
  } & {
9954
10081
  value?: number | undefined;
9955
10082
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9956
- } & { [K_226 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10083
+ } & { [K_231 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9957
10084
  max?: ({
9958
10085
  value?: number | undefined;
9959
10086
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9960
10087
  } & {
9961
10088
  value?: number | undefined;
9962
10089
  unit?: import("./enums.js").BlockSizeUnit | undefined;
9963
- } & { [K_227 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
9964
- } & { [K_228 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
9965
- } & { [K_229 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
10090
+ } & { [K_232 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
10091
+ } & { [K_233 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
10092
+ } & { [K_234 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
9966
10093
  config?: ({
9967
10094
  rootConfig?: {
9968
10095
  children?: {
@@ -10657,7 +10784,7 @@ export declare const UIResponse: {
10657
10784
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
10658
10785
  height?: number | undefined;
10659
10786
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
10660
- } & any & { [K_230 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
10787
+ } & any & { [K_235 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
10661
10788
  sizes?: ({
10662
10789
  grow?: boolean | undefined;
10663
10790
  width?: {
@@ -10688,7 +10815,7 @@ export declare const UIResponse: {
10688
10815
  unit?: import("./enums.js").BlockSizeUnit | undefined;
10689
10816
  } | undefined;
10690
10817
  } | undefined;
10691
- } & any & { [K_231 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
10818
+ } & any & { [K_236 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
10692
10819
  config?: ({
10693
10820
  rootConfig?: {
10694
10821
  children?: {
@@ -10896,7 +11023,7 @@ export declare const UIResponse: {
10896
11023
  webviewConfig?: {
10897
11024
  url?: string | undefined;
10898
11025
  } | undefined;
10899
- } & any & { [K_232 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
11026
+ } & any & { [K_237 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
10900
11027
  actions?: ({
10901
11028
  type?: import("./enums.js").BlockActionType | undefined;
10902
11029
  id?: string | undefined;
@@ -10909,14 +11036,14 @@ export declare const UIResponse: {
10909
11036
  data?: {
10910
11037
  [x: string]: any;
10911
11038
  } | undefined;
10912
- } & any & { [K_233 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_234 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
11039
+ } & any & { [K_238 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_239 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
10913
11040
  type?: import("./enums.js").BlockActionType | undefined;
10914
11041
  id?: string | undefined;
10915
11042
  data?: {
10916
11043
  [x: string]: any;
10917
11044
  } | undefined;
10918
11045
  }[]>]: never; }) | undefined;
10919
- } & { [K_235 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_236 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
11046
+ } & { [K_240 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_241 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
10920
11047
  type?: import("./enums.js").BlockType | undefined;
10921
11048
  size?: {
10922
11049
  grow?: boolean | undefined;
@@ -11077,7 +11204,7 @@ export declare const UIResponse: {
11077
11204
  }[] | undefined;
11078
11205
  }[]>]: never; }) | undefined;
11079
11206
  height?: number | undefined;
11080
- } & { [K_237 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
11207
+ } & { [K_242 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
11081
11208
  stackConfig?: ({
11082
11209
  direction?: import("./enums.js").BlockStackDirection | undefined;
11083
11210
  children?: {
@@ -11565,7 +11692,7 @@ export declare const UIResponse: {
11565
11692
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
11566
11693
  height?: number | undefined;
11567
11694
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
11568
- } & any & { [K_238 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
11695
+ } & any & { [K_243 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
11569
11696
  sizes?: ({
11570
11697
  grow?: boolean | undefined;
11571
11698
  width?: {
@@ -11596,7 +11723,7 @@ export declare const UIResponse: {
11596
11723
  unit?: import("./enums.js").BlockSizeUnit | undefined;
11597
11724
  } | undefined;
11598
11725
  } | undefined;
11599
- } & any & { [K_239 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
11726
+ } & any & { [K_244 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
11600
11727
  config?: ({
11601
11728
  rootConfig?: {
11602
11729
  children?: {
@@ -11804,7 +11931,7 @@ export declare const UIResponse: {
11804
11931
  webviewConfig?: {
11805
11932
  url?: string | undefined;
11806
11933
  } | undefined;
11807
- } & any & { [K_240 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
11934
+ } & any & { [K_245 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
11808
11935
  actions?: ({
11809
11936
  type?: import("./enums.js").BlockActionType | undefined;
11810
11937
  id?: string | undefined;
@@ -11817,14 +11944,14 @@ export declare const UIResponse: {
11817
11944
  data?: {
11818
11945
  [x: string]: any;
11819
11946
  } | undefined;
11820
- } & any & { [K_241 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_242 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
11947
+ } & any & { [K_246 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_247 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
11821
11948
  type?: import("./enums.js").BlockActionType | undefined;
11822
11949
  id?: string | undefined;
11823
11950
  data?: {
11824
11951
  [x: string]: any;
11825
11952
  } | undefined;
11826
11953
  }[]>]: never; }) | undefined;
11827
- } & { [K_243 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_244 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
11954
+ } & { [K_248 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_249 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
11828
11955
  type?: import("./enums.js").BlockType | undefined;
11829
11956
  size?: {
11830
11957
  grow?: boolean | undefined;
@@ -11991,7 +12118,7 @@ export declare const UIResponse: {
11991
12118
  } & {
11992
12119
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
11993
12120
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
11994
- } & { [K_245 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12121
+ } & { [K_250 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
11995
12122
  padding?: import("./enums.js").BlockPadding | undefined;
11996
12123
  gap?: import("./enums.js").BlockGap | undefined;
11997
12124
  border?: ({
@@ -12007,8 +12134,8 @@ export declare const UIResponse: {
12007
12134
  colors?: ({
12008
12135
  light?: string | undefined;
12009
12136
  dark?: string | undefined;
12010
- } & any & { [K_246 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12011
- } & { [K_247 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
12137
+ } & any & { [K_251 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12138
+ } & { [K_252 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
12012
12139
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
12013
12140
  backgroundColor?: string | undefined;
12014
12141
  backgroundColors?: ({
@@ -12017,8 +12144,8 @@ export declare const UIResponse: {
12017
12144
  } & {
12018
12145
  light?: string | undefined;
12019
12146
  dark?: string | undefined;
12020
- } & { [K_248 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12021
- } & { [K_249 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
12147
+ } & { [K_253 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12148
+ } & { [K_254 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
12022
12149
  textConfig?: ({
12023
12150
  text?: string | undefined;
12024
12151
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -12048,7 +12175,7 @@ export declare const UIResponse: {
12048
12175
  } & {
12049
12176
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
12050
12177
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
12051
- } & { [K_250 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12178
+ } & { [K_255 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12052
12179
  outline?: import("./enums.js").BlockTextOutline | undefined;
12053
12180
  style?: import("./enums.js").BlockTextStyle | undefined;
12054
12181
  selectable?: boolean | undefined;
@@ -12058,10 +12185,10 @@ export declare const UIResponse: {
12058
12185
  } & {
12059
12186
  light?: string | undefined;
12060
12187
  dark?: string | undefined;
12061
- } & { [K_251 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12188
+ } & { [K_256 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12062
12189
  wrap?: boolean | undefined;
12063
12190
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
12064
- } & { [K_252 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
12191
+ } & { [K_257 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
12065
12192
  buttonConfig?: ({
12066
12193
  text?: string | undefined;
12067
12194
  icon?: string | undefined;
@@ -12092,15 +12219,15 @@ export declare const UIResponse: {
12092
12219
  } & {
12093
12220
  light?: string | undefined;
12094
12221
  dark?: string | undefined;
12095
- } & { [K_253 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12222
+ } & { [K_258 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12096
12223
  backgroundColors?: ({
12097
12224
  light?: string | undefined;
12098
12225
  dark?: string | undefined;
12099
12226
  } & {
12100
12227
  light?: string | undefined;
12101
12228
  dark?: string | undefined;
12102
- } & { [K_254 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12103
- } & { [K_255 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
12229
+ } & { [K_259 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12230
+ } & { [K_260 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
12104
12231
  imageConfig?: ({
12105
12232
  url?: string | undefined;
12106
12233
  width?: number | undefined;
@@ -12113,14 +12240,14 @@ export declare const UIResponse: {
12113
12240
  height?: number | undefined;
12114
12241
  description?: string | undefined;
12115
12242
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
12116
- } & { [K_256 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
12243
+ } & { [K_261 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
12117
12244
  spacerConfig?: ({
12118
12245
  size?: import("./enums.js").BlockSpacerSize | undefined;
12119
12246
  shape?: import("./enums.js").BlockSpacerShape | undefined;
12120
12247
  } & {
12121
12248
  size?: import("./enums.js").BlockSpacerSize | undefined;
12122
12249
  shape?: import("./enums.js").BlockSpacerShape | undefined;
12123
- } & { [K_257 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
12250
+ } & { [K_262 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
12124
12251
  iconConfig?: ({
12125
12252
  icon?: string | undefined;
12126
12253
  color?: string | undefined;
@@ -12139,8 +12266,8 @@ export declare const UIResponse: {
12139
12266
  } & {
12140
12267
  light?: string | undefined;
12141
12268
  dark?: string | undefined;
12142
- } & { [K_258 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12143
- } & { [K_259 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
12269
+ } & { [K_263 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12270
+ } & { [K_264 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
12144
12271
  avatarConfig?: ({
12145
12272
  thingId?: string | undefined;
12146
12273
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -12151,7 +12278,7 @@ export declare const UIResponse: {
12151
12278
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
12152
12279
  size?: import("./enums.js").BlockAvatarSize | undefined;
12153
12280
  background?: import("./enums.js").BlockAvatarBackground | undefined;
12154
- } & { [K_260 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
12281
+ } & { [K_265 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
12155
12282
  fullsnooConfig?: ({
12156
12283
  userId?: string | undefined;
12157
12284
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -12160,7 +12287,7 @@ export declare const UIResponse: {
12160
12287
  userId?: string | undefined;
12161
12288
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
12162
12289
  size?: import("./enums.js").BlockFullSnooSize | undefined;
12163
- } & { [K_261 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
12290
+ } & { [K_266 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
12164
12291
  animationConfig?: ({
12165
12292
  url?: string | undefined;
12166
12293
  width?: number | undefined;
@@ -12181,13 +12308,13 @@ export declare const UIResponse: {
12181
12308
  autoplay?: boolean | undefined;
12182
12309
  speed?: number | undefined;
12183
12310
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
12184
- } & { [K_262 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
12311
+ } & { [K_267 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
12185
12312
  webviewConfig?: ({
12186
12313
  url?: string | undefined;
12187
12314
  } & {
12188
12315
  url?: string | undefined;
12189
- } & { [K_263 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
12190
- } & { [K_264 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
12316
+ } & { [K_268 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
12317
+ } & { [K_269 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
12191
12318
  actions?: ({
12192
12319
  type?: import("./enums.js").BlockActionType | undefined;
12193
12320
  id?: string | undefined;
@@ -12207,15 +12334,15 @@ export declare const UIResponse: {
12207
12334
  [x: string]: any;
12208
12335
  } & {
12209
12336
  [x: string]: any;
12210
- } & { [K_265 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
12211
- } & { [K_266 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_267 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
12337
+ } & { [K_270 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
12338
+ } & { [K_271 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_272 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
12212
12339
  type?: import("./enums.js").BlockActionType | undefined;
12213
12340
  id?: string | undefined;
12214
12341
  data?: {
12215
12342
  [x: string]: any;
12216
12343
  } | undefined;
12217
12344
  }[]>]: never; }) | undefined;
12218
- } & { [K_268 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_269 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
12345
+ } & { [K_273 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_274 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
12219
12346
  type?: import("./enums.js").BlockType | undefined;
12220
12347
  size?: {
12221
12348
  grow?: boolean | undefined;
@@ -12382,7 +12509,7 @@ export declare const UIResponse: {
12382
12509
  } & {
12383
12510
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
12384
12511
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
12385
- } & { [K_270 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12512
+ } & { [K_275 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12386
12513
  padding?: import("./enums.js").BlockPadding | undefined;
12387
12514
  gap?: import("./enums.js").BlockGap | undefined;
12388
12515
  border?: ({
@@ -12401,8 +12528,8 @@ export declare const UIResponse: {
12401
12528
  } & {
12402
12529
  light?: string | undefined;
12403
12530
  dark?: string | undefined;
12404
- } & { [K_271 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12405
- } & { [K_272 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
12531
+ } & { [K_276 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12532
+ } & { [K_277 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
12406
12533
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
12407
12534
  backgroundColor?: string | undefined;
12408
12535
  backgroundColors?: ({
@@ -12411,8 +12538,8 @@ export declare const UIResponse: {
12411
12538
  } & {
12412
12539
  light?: string | undefined;
12413
12540
  dark?: string | undefined;
12414
- } & { [K_273 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12415
- } & { [K_274 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
12541
+ } & { [K_278 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12542
+ } & { [K_279 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
12416
12543
  textConfig?: ({
12417
12544
  text?: string | undefined;
12418
12545
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -12442,7 +12569,7 @@ export declare const UIResponse: {
12442
12569
  } & {
12443
12570
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
12444
12571
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
12445
- } & { [K_275 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12572
+ } & { [K_280 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
12446
12573
  outline?: import("./enums.js").BlockTextOutline | undefined;
12447
12574
  style?: import("./enums.js").BlockTextStyle | undefined;
12448
12575
  selectable?: boolean | undefined;
@@ -12452,10 +12579,10 @@ export declare const UIResponse: {
12452
12579
  } & {
12453
12580
  light?: string | undefined;
12454
12581
  dark?: string | undefined;
12455
- } & { [K_276 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12582
+ } & { [K_281 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12456
12583
  wrap?: boolean | undefined;
12457
12584
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
12458
- } & { [K_277 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
12585
+ } & { [K_282 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
12459
12586
  buttonConfig?: ({
12460
12587
  text?: string | undefined;
12461
12588
  icon?: string | undefined;
@@ -12486,15 +12613,15 @@ export declare const UIResponse: {
12486
12613
  } & {
12487
12614
  light?: string | undefined;
12488
12615
  dark?: string | undefined;
12489
- } & { [K_278 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12616
+ } & { [K_283 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12490
12617
  backgroundColors?: ({
12491
12618
  light?: string | undefined;
12492
12619
  dark?: string | undefined;
12493
12620
  } & {
12494
12621
  light?: string | undefined;
12495
12622
  dark?: string | undefined;
12496
- } & { [K_279 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12497
- } & { [K_280 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
12623
+ } & { [K_284 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12624
+ } & { [K_285 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
12498
12625
  imageConfig?: ({
12499
12626
  url?: string | undefined;
12500
12627
  width?: number | undefined;
@@ -12507,14 +12634,14 @@ export declare const UIResponse: {
12507
12634
  height?: number | undefined;
12508
12635
  description?: string | undefined;
12509
12636
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
12510
- } & { [K_281 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
12637
+ } & { [K_286 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
12511
12638
  spacerConfig?: ({
12512
12639
  size?: import("./enums.js").BlockSpacerSize | undefined;
12513
12640
  shape?: import("./enums.js").BlockSpacerShape | undefined;
12514
12641
  } & {
12515
12642
  size?: import("./enums.js").BlockSpacerSize | undefined;
12516
12643
  shape?: import("./enums.js").BlockSpacerShape | undefined;
12517
- } & { [K_282 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
12644
+ } & { [K_287 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
12518
12645
  iconConfig?: ({
12519
12646
  icon?: string | undefined;
12520
12647
  color?: string | undefined;
@@ -12533,8 +12660,8 @@ export declare const UIResponse: {
12533
12660
  } & {
12534
12661
  light?: string | undefined;
12535
12662
  dark?: string | undefined;
12536
- } & { [K_283 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12537
- } & { [K_284 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
12663
+ } & { [K_288 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
12664
+ } & { [K_289 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
12538
12665
  avatarConfig?: ({
12539
12666
  thingId?: string | undefined;
12540
12667
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -12545,7 +12672,7 @@ export declare const UIResponse: {
12545
12672
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
12546
12673
  size?: import("./enums.js").BlockAvatarSize | undefined;
12547
12674
  background?: import("./enums.js").BlockAvatarBackground | undefined;
12548
- } & { [K_285 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
12675
+ } & { [K_290 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
12549
12676
  fullsnooConfig?: ({
12550
12677
  userId?: string | undefined;
12551
12678
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -12554,7 +12681,7 @@ export declare const UIResponse: {
12554
12681
  userId?: string | undefined;
12555
12682
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
12556
12683
  size?: import("./enums.js").BlockFullSnooSize | undefined;
12557
- } & { [K_286 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
12684
+ } & { [K_291 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
12558
12685
  animationConfig?: ({
12559
12686
  url?: string | undefined;
12560
12687
  width?: number | undefined;
@@ -12575,13 +12702,13 @@ export declare const UIResponse: {
12575
12702
  autoplay?: boolean | undefined;
12576
12703
  speed?: number | undefined;
12577
12704
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
12578
- } & { [K_287 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
12705
+ } & { [K_292 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
12579
12706
  webviewConfig?: ({
12580
12707
  url?: string | undefined;
12581
12708
  } & {
12582
12709
  url?: string | undefined;
12583
- } & { [K_288 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
12584
- } & { [K_289 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
12710
+ } & { [K_293 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
12711
+ } & { [K_294 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
12585
12712
  actions?: ({
12586
12713
  type?: import("./enums.js").BlockActionType | undefined;
12587
12714
  id?: string | undefined;
@@ -12601,15 +12728,15 @@ export declare const UIResponse: {
12601
12728
  [x: string]: any;
12602
12729
  } & {
12603
12730
  [x: string]: any;
12604
- } & { [K_290 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
12605
- } & { [K_291 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_292 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
12731
+ } & { [K_295 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
12732
+ } & { [K_296 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_297 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
12606
12733
  type?: import("./enums.js").BlockActionType | undefined;
12607
12734
  id?: string | undefined;
12608
12735
  data?: {
12609
12736
  [x: string]: any;
12610
12737
  } | undefined;
12611
12738
  }[]>]: never; }) | undefined;
12612
- } & { [K_293 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_294 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"], "$type" | keyof {
12739
+ } & { [K_298 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_299 in Exclude<keyof I["blocks"]["config"]["rootConfig"]["children"], "$type" | keyof {
12613
12740
  type?: import("./enums.js").BlockType | undefined;
12614
12741
  size?: {
12615
12742
  grow?: boolean | undefined;
@@ -12770,7 +12897,7 @@ export declare const UIResponse: {
12770
12897
  }[] | undefined;
12771
12898
  }[]>]: never; }) | undefined;
12772
12899
  height?: number | undefined;
12773
- } & { [K_295 in Exclude<keyof I["blocks"]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
12900
+ } & { [K_300 in Exclude<keyof I["blocks"]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
12774
12901
  stackConfig?: ({
12775
12902
  direction?: import("./enums.js").BlockStackDirection | undefined;
12776
12903
  children?: {
@@ -13264,7 +13391,7 @@ export declare const UIResponse: {
13264
13391
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
13265
13392
  height?: number | undefined;
13266
13393
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
13267
- } & { [K_296 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
13394
+ } & { [K_301 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
13268
13395
  sizes?: ({
13269
13396
  grow?: boolean | undefined;
13270
13397
  width?: {
@@ -13317,22 +13444,22 @@ export declare const UIResponse: {
13317
13444
  } & {
13318
13445
  value?: number | undefined;
13319
13446
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13320
- } & { [K_297 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13447
+ } & { [K_302 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13321
13448
  min?: ({
13322
13449
  value?: number | undefined;
13323
13450
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13324
13451
  } & {
13325
13452
  value?: number | undefined;
13326
13453
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13327
- } & { [K_298 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13454
+ } & { [K_303 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13328
13455
  max?: ({
13329
13456
  value?: number | undefined;
13330
13457
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13331
13458
  } & {
13332
13459
  value?: number | undefined;
13333
13460
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13334
- } & { [K_299 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13335
- } & { [K_300 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
13461
+ } & { [K_304 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13462
+ } & { [K_305 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
13336
13463
  height?: ({
13337
13464
  value?: {
13338
13465
  value?: number | undefined;
@@ -13353,23 +13480,23 @@ export declare const UIResponse: {
13353
13480
  } & {
13354
13481
  value?: number | undefined;
13355
13482
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13356
- } & { [K_301 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13483
+ } & { [K_306 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13357
13484
  min?: ({
13358
13485
  value?: number | undefined;
13359
13486
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13360
13487
  } & {
13361
13488
  value?: number | undefined;
13362
13489
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13363
- } & { [K_302 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13490
+ } & { [K_307 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13364
13491
  max?: ({
13365
13492
  value?: number | undefined;
13366
13493
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13367
13494
  } & {
13368
13495
  value?: number | undefined;
13369
13496
  unit?: import("./enums.js").BlockSizeUnit | undefined;
13370
- } & { [K_303 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13371
- } & { [K_304 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
13372
- } & { [K_305 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
13497
+ } & { [K_308 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
13498
+ } & { [K_309 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
13499
+ } & { [K_310 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
13373
13500
  config?: ({
13374
13501
  rootConfig?: {
13375
13502
  children?: {
@@ -14070,7 +14197,7 @@ export declare const UIResponse: {
14070
14197
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
14071
14198
  height?: number | undefined;
14072
14199
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
14073
- } & { [K_306 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
14200
+ } & { [K_311 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
14074
14201
  sizes?: ({
14075
14202
  grow?: boolean | undefined;
14076
14203
  width?: {
@@ -14123,22 +14250,22 @@ export declare const UIResponse: {
14123
14250
  } & {
14124
14251
  value?: number | undefined;
14125
14252
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14126
- } & { [K_307 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14253
+ } & { [K_312 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14127
14254
  min?: ({
14128
14255
  value?: number | undefined;
14129
14256
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14130
14257
  } & {
14131
14258
  value?: number | undefined;
14132
14259
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14133
- } & { [K_308 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14260
+ } & { [K_313 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14134
14261
  max?: ({
14135
14262
  value?: number | undefined;
14136
14263
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14137
14264
  } & {
14138
14265
  value?: number | undefined;
14139
14266
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14140
- } & { [K_309 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14141
- } & { [K_310 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
14267
+ } & { [K_314 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14268
+ } & { [K_315 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
14142
14269
  height?: ({
14143
14270
  value?: {
14144
14271
  value?: number | undefined;
@@ -14159,23 +14286,23 @@ export declare const UIResponse: {
14159
14286
  } & {
14160
14287
  value?: number | undefined;
14161
14288
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14162
- } & { [K_311 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14289
+ } & { [K_316 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14163
14290
  min?: ({
14164
14291
  value?: number | undefined;
14165
14292
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14166
14293
  } & {
14167
14294
  value?: number | undefined;
14168
14295
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14169
- } & { [K_312 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14296
+ } & { [K_317 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14170
14297
  max?: ({
14171
14298
  value?: number | undefined;
14172
14299
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14173
14300
  } & {
14174
14301
  value?: number | undefined;
14175
14302
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14176
- } & { [K_313 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14177
- } & { [K_314 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
14178
- } & { [K_315 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
14303
+ } & { [K_318 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
14304
+ } & { [K_319 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
14305
+ } & { [K_320 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
14179
14306
  config?: ({
14180
14307
  rootConfig?: {
14181
14308
  children?: {
@@ -14870,7 +14997,7 @@ export declare const UIResponse: {
14870
14997
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
14871
14998
  height?: number | undefined;
14872
14999
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
14873
- } & any & { [K_316 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
15000
+ } & any & { [K_321 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
14874
15001
  sizes?: ({
14875
15002
  grow?: boolean | undefined;
14876
15003
  width?: {
@@ -14901,7 +15028,7 @@ export declare const UIResponse: {
14901
15028
  unit?: import("./enums.js").BlockSizeUnit | undefined;
14902
15029
  } | undefined;
14903
15030
  } | undefined;
14904
- } & any & { [K_317 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
15031
+ } & any & { [K_322 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
14905
15032
  config?: ({
14906
15033
  rootConfig?: {
14907
15034
  children?: {
@@ -15109,7 +15236,7 @@ export declare const UIResponse: {
15109
15236
  webviewConfig?: {
15110
15237
  url?: string | undefined;
15111
15238
  } | undefined;
15112
- } & any & { [K_318 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
15239
+ } & any & { [K_323 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
15113
15240
  actions?: ({
15114
15241
  type?: import("./enums.js").BlockActionType | undefined;
15115
15242
  id?: string | undefined;
@@ -15122,14 +15249,14 @@ export declare const UIResponse: {
15122
15249
  data?: {
15123
15250
  [x: string]: any;
15124
15251
  } | undefined;
15125
- } & any & { [K_319 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_320 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
15252
+ } & any & { [K_324 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_325 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
15126
15253
  type?: import("./enums.js").BlockActionType | undefined;
15127
15254
  id?: string | undefined;
15128
15255
  data?: {
15129
15256
  [x: string]: any;
15130
15257
  } | undefined;
15131
15258
  }[]>]: never; }) | undefined;
15132
- } & { [K_321 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_322 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
15259
+ } & { [K_326 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_327 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
15133
15260
  type?: import("./enums.js").BlockType | undefined;
15134
15261
  size?: {
15135
15262
  grow?: boolean | undefined;
@@ -15290,7 +15417,7 @@ export declare const UIResponse: {
15290
15417
  }[] | undefined;
15291
15418
  }[]>]: never; }) | undefined;
15292
15419
  height?: number | undefined;
15293
- } & { [K_323 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
15420
+ } & { [K_328 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
15294
15421
  stackConfig?: ({
15295
15422
  direction?: import("./enums.js").BlockStackDirection | undefined;
15296
15423
  children?: {
@@ -15778,7 +15905,7 @@ export declare const UIResponse: {
15778
15905
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
15779
15906
  height?: number | undefined;
15780
15907
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
15781
- } & any & { [K_324 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
15908
+ } & any & { [K_329 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
15782
15909
  sizes?: ({
15783
15910
  grow?: boolean | undefined;
15784
15911
  width?: {
@@ -15809,7 +15936,7 @@ export declare const UIResponse: {
15809
15936
  unit?: import("./enums.js").BlockSizeUnit | undefined;
15810
15937
  } | undefined;
15811
15938
  } | undefined;
15812
- } & any & { [K_325 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
15939
+ } & any & { [K_330 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
15813
15940
  config?: ({
15814
15941
  rootConfig?: {
15815
15942
  children?: {
@@ -16017,7 +16144,7 @@ export declare const UIResponse: {
16017
16144
  webviewConfig?: {
16018
16145
  url?: string | undefined;
16019
16146
  } | undefined;
16020
- } & any & { [K_326 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
16147
+ } & any & { [K_331 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
16021
16148
  actions?: ({
16022
16149
  type?: import("./enums.js").BlockActionType | undefined;
16023
16150
  id?: string | undefined;
@@ -16030,14 +16157,14 @@ export declare const UIResponse: {
16030
16157
  data?: {
16031
16158
  [x: string]: any;
16032
16159
  } | undefined;
16033
- } & any & { [K_327 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_328 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
16160
+ } & any & { [K_332 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_333 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
16034
16161
  type?: import("./enums.js").BlockActionType | undefined;
16035
16162
  id?: string | undefined;
16036
16163
  data?: {
16037
16164
  [x: string]: any;
16038
16165
  } | undefined;
16039
16166
  }[]>]: never; }) | undefined;
16040
- } & { [K_329 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_330 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
16167
+ } & { [K_334 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_335 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
16041
16168
  type?: import("./enums.js").BlockType | undefined;
16042
16169
  size?: {
16043
16170
  grow?: boolean | undefined;
@@ -16204,7 +16331,7 @@ export declare const UIResponse: {
16204
16331
  } & {
16205
16332
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
16206
16333
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
16207
- } & { [K_331 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
16334
+ } & { [K_336 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
16208
16335
  padding?: import("./enums.js").BlockPadding | undefined;
16209
16336
  gap?: import("./enums.js").BlockGap | undefined;
16210
16337
  border?: ({
@@ -16220,8 +16347,8 @@ export declare const UIResponse: {
16220
16347
  colors?: ({
16221
16348
  light?: string | undefined;
16222
16349
  dark?: string | undefined;
16223
- } & any & { [K_332 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16224
- } & { [K_333 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
16350
+ } & any & { [K_337 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16351
+ } & { [K_338 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
16225
16352
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
16226
16353
  backgroundColor?: string | undefined;
16227
16354
  backgroundColors?: ({
@@ -16230,8 +16357,8 @@ export declare const UIResponse: {
16230
16357
  } & {
16231
16358
  light?: string | undefined;
16232
16359
  dark?: string | undefined;
16233
- } & { [K_334 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16234
- } & { [K_335 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
16360
+ } & { [K_339 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16361
+ } & { [K_340 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
16235
16362
  textConfig?: ({
16236
16363
  text?: string | undefined;
16237
16364
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -16261,7 +16388,7 @@ export declare const UIResponse: {
16261
16388
  } & {
16262
16389
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
16263
16390
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
16264
- } & { [K_336 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
16391
+ } & { [K_341 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
16265
16392
  outline?: import("./enums.js").BlockTextOutline | undefined;
16266
16393
  style?: import("./enums.js").BlockTextStyle | undefined;
16267
16394
  selectable?: boolean | undefined;
@@ -16271,10 +16398,10 @@ export declare const UIResponse: {
16271
16398
  } & {
16272
16399
  light?: string | undefined;
16273
16400
  dark?: string | undefined;
16274
- } & { [K_337 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16401
+ } & { [K_342 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16275
16402
  wrap?: boolean | undefined;
16276
16403
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
16277
- } & { [K_338 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
16404
+ } & { [K_343 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
16278
16405
  buttonConfig?: ({
16279
16406
  text?: string | undefined;
16280
16407
  icon?: string | undefined;
@@ -16305,15 +16432,15 @@ export declare const UIResponse: {
16305
16432
  } & {
16306
16433
  light?: string | undefined;
16307
16434
  dark?: string | undefined;
16308
- } & { [K_339 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16435
+ } & { [K_344 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16309
16436
  backgroundColors?: ({
16310
16437
  light?: string | undefined;
16311
16438
  dark?: string | undefined;
16312
16439
  } & {
16313
16440
  light?: string | undefined;
16314
16441
  dark?: string | undefined;
16315
- } & { [K_340 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16316
- } & { [K_341 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
16442
+ } & { [K_345 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16443
+ } & { [K_346 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
16317
16444
  imageConfig?: ({
16318
16445
  url?: string | undefined;
16319
16446
  width?: number | undefined;
@@ -16326,14 +16453,14 @@ export declare const UIResponse: {
16326
16453
  height?: number | undefined;
16327
16454
  description?: string | undefined;
16328
16455
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
16329
- } & { [K_342 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
16456
+ } & { [K_347 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
16330
16457
  spacerConfig?: ({
16331
16458
  size?: import("./enums.js").BlockSpacerSize | undefined;
16332
16459
  shape?: import("./enums.js").BlockSpacerShape | undefined;
16333
16460
  } & {
16334
16461
  size?: import("./enums.js").BlockSpacerSize | undefined;
16335
16462
  shape?: import("./enums.js").BlockSpacerShape | undefined;
16336
- } & { [K_343 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
16463
+ } & { [K_348 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
16337
16464
  iconConfig?: ({
16338
16465
  icon?: string | undefined;
16339
16466
  color?: string | undefined;
@@ -16352,8 +16479,8 @@ export declare const UIResponse: {
16352
16479
  } & {
16353
16480
  light?: string | undefined;
16354
16481
  dark?: string | undefined;
16355
- } & { [K_344 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16356
- } & { [K_345 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
16482
+ } & { [K_349 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
16483
+ } & { [K_350 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
16357
16484
  avatarConfig?: ({
16358
16485
  thingId?: string | undefined;
16359
16486
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -16364,7 +16491,7 @@ export declare const UIResponse: {
16364
16491
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
16365
16492
  size?: import("./enums.js").BlockAvatarSize | undefined;
16366
16493
  background?: import("./enums.js").BlockAvatarBackground | undefined;
16367
- } & { [K_346 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
16494
+ } & { [K_351 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
16368
16495
  fullsnooConfig?: ({
16369
16496
  userId?: string | undefined;
16370
16497
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -16373,7 +16500,7 @@ export declare const UIResponse: {
16373
16500
  userId?: string | undefined;
16374
16501
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
16375
16502
  size?: import("./enums.js").BlockFullSnooSize | undefined;
16376
- } & { [K_347 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
16503
+ } & { [K_352 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
16377
16504
  animationConfig?: ({
16378
16505
  url?: string | undefined;
16379
16506
  width?: number | undefined;
@@ -16394,13 +16521,13 @@ export declare const UIResponse: {
16394
16521
  autoplay?: boolean | undefined;
16395
16522
  speed?: number | undefined;
16396
16523
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
16397
- } & { [K_348 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
16524
+ } & { [K_353 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
16398
16525
  webviewConfig?: ({
16399
16526
  url?: string | undefined;
16400
16527
  } & {
16401
16528
  url?: string | undefined;
16402
- } & { [K_349 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
16403
- } & { [K_350 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
16529
+ } & { [K_354 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
16530
+ } & { [K_355 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
16404
16531
  actions?: ({
16405
16532
  type?: import("./enums.js").BlockActionType | undefined;
16406
16533
  id?: string | undefined;
@@ -16420,15 +16547,15 @@ export declare const UIResponse: {
16420
16547
  [x: string]: any;
16421
16548
  } & {
16422
16549
  [x: string]: any;
16423
- } & { [K_351 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
16424
- } & { [K_352 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_353 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
16550
+ } & { [K_356 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
16551
+ } & { [K_357 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_358 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
16425
16552
  type?: import("./enums.js").BlockActionType | undefined;
16426
16553
  id?: string | undefined;
16427
16554
  data?: {
16428
16555
  [x: string]: any;
16429
16556
  } | undefined;
16430
16557
  }[]>]: never; }) | undefined;
16431
- } & { [K_354 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_355 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
16558
+ } & { [K_359 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_360 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
16432
16559
  type?: import("./enums.js").BlockType | undefined;
16433
16560
  size?: {
16434
16561
  grow?: boolean | undefined;
@@ -16589,7 +16716,7 @@ export declare const UIResponse: {
16589
16716
  }[] | undefined;
16590
16717
  }[]>]: never; }) | undefined;
16591
16718
  height?: number | undefined;
16592
- } & { [K_356 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
16719
+ } & { [K_361 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
16593
16720
  stackConfig?: ({
16594
16721
  direction?: import("./enums.js").BlockStackDirection | undefined;
16595
16722
  children?: {
@@ -17083,7 +17210,7 @@ export declare const UIResponse: {
17083
17210
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
17084
17211
  height?: number | undefined;
17085
17212
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
17086
- } & { [K_357 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
17213
+ } & { [K_362 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
17087
17214
  sizes?: ({
17088
17215
  grow?: boolean | undefined;
17089
17216
  width?: {
@@ -17136,22 +17263,22 @@ export declare const UIResponse: {
17136
17263
  } & {
17137
17264
  value?: number | undefined;
17138
17265
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17139
- } & { [K_358 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17266
+ } & { [K_363 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17140
17267
  min?: ({
17141
17268
  value?: number | undefined;
17142
17269
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17143
17270
  } & {
17144
17271
  value?: number | undefined;
17145
17272
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17146
- } & { [K_359 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17273
+ } & { [K_364 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17147
17274
  max?: ({
17148
17275
  value?: number | undefined;
17149
17276
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17150
17277
  } & {
17151
17278
  value?: number | undefined;
17152
17279
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17153
- } & { [K_360 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17154
- } & { [K_361 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
17280
+ } & { [K_365 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17281
+ } & { [K_366 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["width"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
17155
17282
  height?: ({
17156
17283
  value?: {
17157
17284
  value?: number | undefined;
@@ -17172,23 +17299,23 @@ export declare const UIResponse: {
17172
17299
  } & {
17173
17300
  value?: number | undefined;
17174
17301
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17175
- } & { [K_362 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17302
+ } & { [K_367 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["value"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17176
17303
  min?: ({
17177
17304
  value?: number | undefined;
17178
17305
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17179
17306
  } & {
17180
17307
  value?: number | undefined;
17181
17308
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17182
- } & { [K_363 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17309
+ } & { [K_368 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["min"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17183
17310
  max?: ({
17184
17311
  value?: number | undefined;
17185
17312
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17186
17313
  } & {
17187
17314
  value?: number | undefined;
17188
17315
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17189
- } & { [K_364 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17190
- } & { [K_365 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
17191
- } & { [K_366 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
17316
+ } & { [K_369 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"]["max"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension_Value>]: never; }) | undefined;
17317
+ } & { [K_370 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"]["height"], "$type" | keyof import("./attributes.js").BlockSizes_Dimension>]: never; }) | undefined;
17318
+ } & { [K_371 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
17192
17319
  config?: ({
17193
17320
  rootConfig?: {
17194
17321
  children?: {
@@ -17883,7 +18010,7 @@ export declare const UIResponse: {
17883
18010
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
17884
18011
  height?: number | undefined;
17885
18012
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
17886
- } & any & { [K_367 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
18013
+ } & any & { [K_372 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
17887
18014
  sizes?: ({
17888
18015
  grow?: boolean | undefined;
17889
18016
  width?: {
@@ -17914,7 +18041,7 @@ export declare const UIResponse: {
17914
18041
  unit?: import("./enums.js").BlockSizeUnit | undefined;
17915
18042
  } | undefined;
17916
18043
  } | undefined;
17917
- } & any & { [K_368 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
18044
+ } & any & { [K_373 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
17918
18045
  config?: ({
17919
18046
  rootConfig?: {
17920
18047
  children?: {
@@ -18122,7 +18249,7 @@ export declare const UIResponse: {
18122
18249
  webviewConfig?: {
18123
18250
  url?: string | undefined;
18124
18251
  } | undefined;
18125
- } & any & { [K_369 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
18252
+ } & any & { [K_374 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
18126
18253
  actions?: ({
18127
18254
  type?: import("./enums.js").BlockActionType | undefined;
18128
18255
  id?: string | undefined;
@@ -18135,14 +18262,14 @@ export declare const UIResponse: {
18135
18262
  data?: {
18136
18263
  [x: string]: any;
18137
18264
  } | undefined;
18138
- } & any & { [K_370 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_371 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
18265
+ } & any & { [K_375 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_376 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["actions"], "$type" | keyof {
18139
18266
  type?: import("./enums.js").BlockActionType | undefined;
18140
18267
  id?: string | undefined;
18141
18268
  data?: {
18142
18269
  [x: string]: any;
18143
18270
  } | undefined;
18144
18271
  }[]>]: never; }) | undefined;
18145
- } & { [K_372 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_373 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
18272
+ } & { [K_377 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_378 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
18146
18273
  type?: import("./enums.js").BlockType | undefined;
18147
18274
  size?: {
18148
18275
  grow?: boolean | undefined;
@@ -18303,7 +18430,7 @@ export declare const UIResponse: {
18303
18430
  }[] | undefined;
18304
18431
  }[]>]: never; }) | undefined;
18305
18432
  height?: number | undefined;
18306
- } & { [K_374 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
18433
+ } & { [K_379 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof import("./block.js").BlockConfig_Root>]: never; }) | undefined;
18307
18434
  stackConfig?: ({
18308
18435
  direction?: import("./enums.js").BlockStackDirection | undefined;
18309
18436
  children?: {
@@ -18791,7 +18918,7 @@ export declare const UIResponse: {
18791
18918
  widthUnit?: import("./enums.js").BlockSizeUnit | undefined;
18792
18919
  height?: number | undefined;
18793
18920
  heightUnit?: import("./enums.js").BlockSizeUnit | undefined;
18794
- } & any & { [K_375 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
18921
+ } & any & { [K_380 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["size"], "$type" | keyof import("./attributes.js").BlockSize>]: never; }) | undefined;
18795
18922
  sizes?: ({
18796
18923
  grow?: boolean | undefined;
18797
18924
  width?: {
@@ -18822,7 +18949,7 @@ export declare const UIResponse: {
18822
18949
  unit?: import("./enums.js").BlockSizeUnit | undefined;
18823
18950
  } | undefined;
18824
18951
  } | undefined;
18825
- } & any & { [K_376 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
18952
+ } & any & { [K_381 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["sizes"], "$type" | keyof import("./attributes.js").BlockSizes>]: never; }) | undefined;
18826
18953
  config?: ({
18827
18954
  rootConfig?: {
18828
18955
  children?: {
@@ -19030,7 +19157,7 @@ export declare const UIResponse: {
19030
19157
  webviewConfig?: {
19031
19158
  url?: string | undefined;
19032
19159
  } | undefined;
19033
- } & any & { [K_377 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19160
+ } & any & { [K_382 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19034
19161
  actions?: ({
19035
19162
  type?: import("./enums.js").BlockActionType | undefined;
19036
19163
  id?: string | undefined;
@@ -19043,14 +19170,14 @@ export declare const UIResponse: {
19043
19170
  data?: {
19044
19171
  [x: string]: any;
19045
19172
  } | undefined;
19046
- } & any & { [K_378 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_379 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19173
+ } & any & { [K_383 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_384 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19047
19174
  type?: import("./enums.js").BlockActionType | undefined;
19048
19175
  id?: string | undefined;
19049
19176
  data?: {
19050
19177
  [x: string]: any;
19051
19178
  } | undefined;
19052
19179
  }[]>]: never; }) | undefined;
19053
- } & { [K_380 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_381 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
19180
+ } & { [K_385 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_386 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
19054
19181
  type?: import("./enums.js").BlockType | undefined;
19055
19182
  size?: {
19056
19183
  grow?: boolean | undefined;
@@ -19217,7 +19344,7 @@ export declare const UIResponse: {
19217
19344
  } & {
19218
19345
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
19219
19346
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
19220
- } & { [K_382 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19347
+ } & { [K_387 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19221
19348
  padding?: import("./enums.js").BlockPadding | undefined;
19222
19349
  gap?: import("./enums.js").BlockGap | undefined;
19223
19350
  border?: ({
@@ -19233,8 +19360,8 @@ export declare const UIResponse: {
19233
19360
  colors?: ({
19234
19361
  light?: string | undefined;
19235
19362
  dark?: string | undefined;
19236
- } & any & { [K_383 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19237
- } & { [K_384 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
19363
+ } & any & { [K_388 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19364
+ } & { [K_389 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
19238
19365
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
19239
19366
  backgroundColor?: string | undefined;
19240
19367
  backgroundColors?: ({
@@ -19243,8 +19370,8 @@ export declare const UIResponse: {
19243
19370
  } & {
19244
19371
  light?: string | undefined;
19245
19372
  dark?: string | undefined;
19246
- } & { [K_385 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19247
- } & { [K_386 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
19373
+ } & { [K_390 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19374
+ } & { [K_391 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
19248
19375
  textConfig?: ({
19249
19376
  text?: string | undefined;
19250
19377
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -19274,7 +19401,7 @@ export declare const UIResponse: {
19274
19401
  } & {
19275
19402
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
19276
19403
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
19277
- } & { [K_387 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19404
+ } & { [K_392 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19278
19405
  outline?: import("./enums.js").BlockTextOutline | undefined;
19279
19406
  style?: import("./enums.js").BlockTextStyle | undefined;
19280
19407
  selectable?: boolean | undefined;
@@ -19284,10 +19411,10 @@ export declare const UIResponse: {
19284
19411
  } & {
19285
19412
  light?: string | undefined;
19286
19413
  dark?: string | undefined;
19287
- } & { [K_388 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19414
+ } & { [K_393 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19288
19415
  wrap?: boolean | undefined;
19289
19416
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
19290
- } & { [K_389 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
19417
+ } & { [K_394 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
19291
19418
  buttonConfig?: ({
19292
19419
  text?: string | undefined;
19293
19420
  icon?: string | undefined;
@@ -19318,15 +19445,15 @@ export declare const UIResponse: {
19318
19445
  } & {
19319
19446
  light?: string | undefined;
19320
19447
  dark?: string | undefined;
19321
- } & { [K_390 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19448
+ } & { [K_395 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19322
19449
  backgroundColors?: ({
19323
19450
  light?: string | undefined;
19324
19451
  dark?: string | undefined;
19325
19452
  } & {
19326
19453
  light?: string | undefined;
19327
19454
  dark?: string | undefined;
19328
- } & { [K_391 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19329
- } & { [K_392 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
19455
+ } & { [K_396 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19456
+ } & { [K_397 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
19330
19457
  imageConfig?: ({
19331
19458
  url?: string | undefined;
19332
19459
  width?: number | undefined;
@@ -19339,14 +19466,14 @@ export declare const UIResponse: {
19339
19466
  height?: number | undefined;
19340
19467
  description?: string | undefined;
19341
19468
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
19342
- } & { [K_393 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
19469
+ } & { [K_398 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
19343
19470
  spacerConfig?: ({
19344
19471
  size?: import("./enums.js").BlockSpacerSize | undefined;
19345
19472
  shape?: import("./enums.js").BlockSpacerShape | undefined;
19346
19473
  } & {
19347
19474
  size?: import("./enums.js").BlockSpacerSize | undefined;
19348
19475
  shape?: import("./enums.js").BlockSpacerShape | undefined;
19349
- } & { [K_394 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
19476
+ } & { [K_399 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
19350
19477
  iconConfig?: ({
19351
19478
  icon?: string | undefined;
19352
19479
  color?: string | undefined;
@@ -19365,8 +19492,8 @@ export declare const UIResponse: {
19365
19492
  } & {
19366
19493
  light?: string | undefined;
19367
19494
  dark?: string | undefined;
19368
- } & { [K_395 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19369
- } & { [K_396 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
19495
+ } & { [K_400 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19496
+ } & { [K_401 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
19370
19497
  avatarConfig?: ({
19371
19498
  thingId?: string | undefined;
19372
19499
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -19377,7 +19504,7 @@ export declare const UIResponse: {
19377
19504
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
19378
19505
  size?: import("./enums.js").BlockAvatarSize | undefined;
19379
19506
  background?: import("./enums.js").BlockAvatarBackground | undefined;
19380
- } & { [K_397 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
19507
+ } & { [K_402 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
19381
19508
  fullsnooConfig?: ({
19382
19509
  userId?: string | undefined;
19383
19510
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -19386,7 +19513,7 @@ export declare const UIResponse: {
19386
19513
  userId?: string | undefined;
19387
19514
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
19388
19515
  size?: import("./enums.js").BlockFullSnooSize | undefined;
19389
- } & { [K_398 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
19516
+ } & { [K_403 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
19390
19517
  animationConfig?: ({
19391
19518
  url?: string | undefined;
19392
19519
  width?: number | undefined;
@@ -19407,13 +19534,13 @@ export declare const UIResponse: {
19407
19534
  autoplay?: boolean | undefined;
19408
19535
  speed?: number | undefined;
19409
19536
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
19410
- } & { [K_399 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
19537
+ } & { [K_404 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
19411
19538
  webviewConfig?: ({
19412
19539
  url?: string | undefined;
19413
19540
  } & {
19414
19541
  url?: string | undefined;
19415
- } & { [K_400 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
19416
- } & { [K_401 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19542
+ } & { [K_405 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
19543
+ } & { [K_406 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19417
19544
  actions?: ({
19418
19545
  type?: import("./enums.js").BlockActionType | undefined;
19419
19546
  id?: string | undefined;
@@ -19433,15 +19560,15 @@ export declare const UIResponse: {
19433
19560
  [x: string]: any;
19434
19561
  } & {
19435
19562
  [x: string]: any;
19436
- } & { [K_402 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
19437
- } & { [K_403 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_404 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19563
+ } & { [K_407 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
19564
+ } & { [K_408 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_409 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19438
19565
  type?: import("./enums.js").BlockActionType | undefined;
19439
19566
  id?: string | undefined;
19440
19567
  data?: {
19441
19568
  [x: string]: any;
19442
19569
  } | undefined;
19443
19570
  }[]>]: never; }) | undefined;
19444
- } & { [K_405 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_406 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
19571
+ } & { [K_410 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_411 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
19445
19572
  type?: import("./enums.js").BlockType | undefined;
19446
19573
  size?: {
19447
19574
  grow?: boolean | undefined;
@@ -19608,7 +19735,7 @@ export declare const UIResponse: {
19608
19735
  } & {
19609
19736
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
19610
19737
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
19611
- } & { [K_407 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19738
+ } & { [K_412 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19612
19739
  padding?: import("./enums.js").BlockPadding | undefined;
19613
19740
  gap?: import("./enums.js").BlockGap | undefined;
19614
19741
  border?: ({
@@ -19627,8 +19754,8 @@ export declare const UIResponse: {
19627
19754
  } & {
19628
19755
  light?: string | undefined;
19629
19756
  dark?: string | undefined;
19630
- } & { [K_408 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19631
- } & { [K_409 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
19757
+ } & { [K_413 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19758
+ } & { [K_414 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
19632
19759
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
19633
19760
  backgroundColor?: string | undefined;
19634
19761
  backgroundColors?: ({
@@ -19637,8 +19764,8 @@ export declare const UIResponse: {
19637
19764
  } & {
19638
19765
  light?: string | undefined;
19639
19766
  dark?: string | undefined;
19640
- } & { [K_410 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19641
- } & { [K_411 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
19767
+ } & { [K_415 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19768
+ } & { [K_416 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
19642
19769
  textConfig?: ({
19643
19770
  text?: string | undefined;
19644
19771
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -19668,7 +19795,7 @@ export declare const UIResponse: {
19668
19795
  } & {
19669
19796
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
19670
19797
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
19671
- } & { [K_412 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19798
+ } & { [K_417 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
19672
19799
  outline?: import("./enums.js").BlockTextOutline | undefined;
19673
19800
  style?: import("./enums.js").BlockTextStyle | undefined;
19674
19801
  selectable?: boolean | undefined;
@@ -19678,10 +19805,10 @@ export declare const UIResponse: {
19678
19805
  } & {
19679
19806
  light?: string | undefined;
19680
19807
  dark?: string | undefined;
19681
- } & { [K_413 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19808
+ } & { [K_418 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19682
19809
  wrap?: boolean | undefined;
19683
19810
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
19684
- } & { [K_414 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
19811
+ } & { [K_419 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
19685
19812
  buttonConfig?: ({
19686
19813
  text?: string | undefined;
19687
19814
  icon?: string | undefined;
@@ -19712,15 +19839,15 @@ export declare const UIResponse: {
19712
19839
  } & {
19713
19840
  light?: string | undefined;
19714
19841
  dark?: string | undefined;
19715
- } & { [K_415 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19842
+ } & { [K_420 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19716
19843
  backgroundColors?: ({
19717
19844
  light?: string | undefined;
19718
19845
  dark?: string | undefined;
19719
19846
  } & {
19720
19847
  light?: string | undefined;
19721
19848
  dark?: string | undefined;
19722
- } & { [K_416 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19723
- } & { [K_417 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
19849
+ } & { [K_421 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19850
+ } & { [K_422 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
19724
19851
  imageConfig?: ({
19725
19852
  url?: string | undefined;
19726
19853
  width?: number | undefined;
@@ -19733,14 +19860,14 @@ export declare const UIResponse: {
19733
19860
  height?: number | undefined;
19734
19861
  description?: string | undefined;
19735
19862
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
19736
- } & { [K_418 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
19863
+ } & { [K_423 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
19737
19864
  spacerConfig?: ({
19738
19865
  size?: import("./enums.js").BlockSpacerSize | undefined;
19739
19866
  shape?: import("./enums.js").BlockSpacerShape | undefined;
19740
19867
  } & {
19741
19868
  size?: import("./enums.js").BlockSpacerSize | undefined;
19742
19869
  shape?: import("./enums.js").BlockSpacerShape | undefined;
19743
- } & { [K_419 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
19870
+ } & { [K_424 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
19744
19871
  iconConfig?: ({
19745
19872
  icon?: string | undefined;
19746
19873
  color?: string | undefined;
@@ -19759,8 +19886,8 @@ export declare const UIResponse: {
19759
19886
  } & {
19760
19887
  light?: string | undefined;
19761
19888
  dark?: string | undefined;
19762
- } & { [K_420 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19763
- } & { [K_421 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
19889
+ } & { [K_425 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
19890
+ } & { [K_426 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
19764
19891
  avatarConfig?: ({
19765
19892
  thingId?: string | undefined;
19766
19893
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -19771,7 +19898,7 @@ export declare const UIResponse: {
19771
19898
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
19772
19899
  size?: import("./enums.js").BlockAvatarSize | undefined;
19773
19900
  background?: import("./enums.js").BlockAvatarBackground | undefined;
19774
- } & { [K_422 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
19901
+ } & { [K_427 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
19775
19902
  fullsnooConfig?: ({
19776
19903
  userId?: string | undefined;
19777
19904
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -19780,7 +19907,7 @@ export declare const UIResponse: {
19780
19907
  userId?: string | undefined;
19781
19908
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
19782
19909
  size?: import("./enums.js").BlockFullSnooSize | undefined;
19783
- } & { [K_423 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
19910
+ } & { [K_428 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
19784
19911
  animationConfig?: ({
19785
19912
  url?: string | undefined;
19786
19913
  width?: number | undefined;
@@ -19801,13 +19928,13 @@ export declare const UIResponse: {
19801
19928
  autoplay?: boolean | undefined;
19802
19929
  speed?: number | undefined;
19803
19930
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
19804
- } & { [K_424 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
19931
+ } & { [K_429 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
19805
19932
  webviewConfig?: ({
19806
19933
  url?: string | undefined;
19807
19934
  } & {
19808
19935
  url?: string | undefined;
19809
- } & { [K_425 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
19810
- } & { [K_426 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19936
+ } & { [K_430 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
19937
+ } & { [K_431 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
19811
19938
  actions?: ({
19812
19939
  type?: import("./enums.js").BlockActionType | undefined;
19813
19940
  id?: string | undefined;
@@ -19827,15 +19954,15 @@ export declare const UIResponse: {
19827
19954
  [x: string]: any;
19828
19955
  } & {
19829
19956
  [x: string]: any;
19830
- } & { [K_427 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
19831
- } & { [K_428 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_429 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19957
+ } & { [K_432 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"][number]["data"], string | number>]: never; }) | undefined;
19958
+ } & { [K_433 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_434 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number]["actions"], "$type" | keyof {
19832
19959
  type?: import("./enums.js").BlockActionType | undefined;
19833
19960
  id?: string | undefined;
19834
19961
  data?: {
19835
19962
  [x: string]: any;
19836
19963
  } | undefined;
19837
19964
  }[]>]: never; }) | undefined;
19838
- } & { [K_430 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_431 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"], "$type" | keyof {
19965
+ } & { [K_435 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_436 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["children"], "$type" | keyof {
19839
19966
  type?: import("./enums.js").BlockType | undefined;
19840
19967
  size?: {
19841
19968
  grow?: boolean | undefined;
@@ -20002,7 +20129,7 @@ export declare const UIResponse: {
20002
20129
  } & {
20003
20130
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
20004
20131
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
20005
- } & { [K_432 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
20132
+ } & { [K_437 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
20006
20133
  padding?: import("./enums.js").BlockPadding | undefined;
20007
20134
  gap?: import("./enums.js").BlockGap | undefined;
20008
20135
  border?: ({
@@ -20021,8 +20148,8 @@ export declare const UIResponse: {
20021
20148
  } & {
20022
20149
  light?: string | undefined;
20023
20150
  dark?: string | undefined;
20024
- } & { [K_433 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20025
- } & { [K_434 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
20151
+ } & { [K_438 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["border"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20152
+ } & { [K_439 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["border"], "$type" | keyof import("./attributes.js").BlockBorder>]: never; }) | undefined;
20026
20153
  cornerRadius?: import("./enums.js").BlockRadius | undefined;
20027
20154
  backgroundColor?: string | undefined;
20028
20155
  backgroundColors?: ({
@@ -20031,8 +20158,8 @@ export declare const UIResponse: {
20031
20158
  } & {
20032
20159
  light?: string | undefined;
20033
20160
  dark?: string | undefined;
20034
- } & { [K_435 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20035
- } & { [K_436 in Exclude<keyof I["blocks"]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
20161
+ } & { [K_440 in Exclude<keyof I["blocks"]["config"]["stackConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20162
+ } & { [K_441 in Exclude<keyof I["blocks"]["config"]["stackConfig"], "$type" | keyof import("./block.js").BlockConfig_Stack>]: never; }) | undefined;
20036
20163
  textConfig?: ({
20037
20164
  text?: string | undefined;
20038
20165
  size?: import("./enums.js").BlockTextSize | undefined;
@@ -20062,7 +20189,7 @@ export declare const UIResponse: {
20062
20189
  } & {
20063
20190
  vertical?: import("./enums.js").BlockVerticalAlignment | undefined;
20064
20191
  horizontal?: import("./enums.js").BlockHorizontalAlignment | undefined;
20065
- } & { [K_437 in Exclude<keyof I["blocks"]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
20192
+ } & { [K_442 in Exclude<keyof I["blocks"]["config"]["textConfig"]["alignment"], "$type" | keyof import("./attributes.js").BlockAlignment>]: never; }) | undefined;
20066
20193
  outline?: import("./enums.js").BlockTextOutline | undefined;
20067
20194
  style?: import("./enums.js").BlockTextStyle | undefined;
20068
20195
  selectable?: boolean | undefined;
@@ -20072,10 +20199,10 @@ export declare const UIResponse: {
20072
20199
  } & {
20073
20200
  light?: string | undefined;
20074
20201
  dark?: string | undefined;
20075
- } & { [K_438 in Exclude<keyof I["blocks"]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20202
+ } & { [K_443 in Exclude<keyof I["blocks"]["config"]["textConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20076
20203
  wrap?: boolean | undefined;
20077
20204
  overflow?: import("./enums.js").BlockTextOverflow | undefined;
20078
- } & { [K_439 in Exclude<keyof I["blocks"]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
20205
+ } & { [K_444 in Exclude<keyof I["blocks"]["config"]["textConfig"], "$type" | keyof import("./block.js").BlockConfig_Text>]: never; }) | undefined;
20079
20206
  buttonConfig?: ({
20080
20207
  text?: string | undefined;
20081
20208
  icon?: string | undefined;
@@ -20106,15 +20233,15 @@ export declare const UIResponse: {
20106
20233
  } & {
20107
20234
  light?: string | undefined;
20108
20235
  dark?: string | undefined;
20109
- } & { [K_440 in Exclude<keyof I["blocks"]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20236
+ } & { [K_445 in Exclude<keyof I["blocks"]["config"]["buttonConfig"]["textColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20110
20237
  backgroundColors?: ({
20111
20238
  light?: string | undefined;
20112
20239
  dark?: string | undefined;
20113
20240
  } & {
20114
20241
  light?: string | undefined;
20115
20242
  dark?: string | undefined;
20116
- } & { [K_441 in Exclude<keyof I["blocks"]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20117
- } & { [K_442 in Exclude<keyof I["blocks"]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
20243
+ } & { [K_446 in Exclude<keyof I["blocks"]["config"]["buttonConfig"]["backgroundColors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20244
+ } & { [K_447 in Exclude<keyof I["blocks"]["config"]["buttonConfig"], "$type" | keyof import("./block.js").BlockConfig_Button>]: never; }) | undefined;
20118
20245
  imageConfig?: ({
20119
20246
  url?: string | undefined;
20120
20247
  width?: number | undefined;
@@ -20127,14 +20254,14 @@ export declare const UIResponse: {
20127
20254
  height?: number | undefined;
20128
20255
  description?: string | undefined;
20129
20256
  resizeMode?: import("./enums.js").BlockImageResizeMode | undefined;
20130
- } & { [K_443 in Exclude<keyof I["blocks"]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
20257
+ } & { [K_448 in Exclude<keyof I["blocks"]["config"]["imageConfig"], "$type" | keyof import("./block.js").BlockConfig_Image>]: never; }) | undefined;
20131
20258
  spacerConfig?: ({
20132
20259
  size?: import("./enums.js").BlockSpacerSize | undefined;
20133
20260
  shape?: import("./enums.js").BlockSpacerShape | undefined;
20134
20261
  } & {
20135
20262
  size?: import("./enums.js").BlockSpacerSize | undefined;
20136
20263
  shape?: import("./enums.js").BlockSpacerShape | undefined;
20137
- } & { [K_444 in Exclude<keyof I["blocks"]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
20264
+ } & { [K_449 in Exclude<keyof I["blocks"]["config"]["spacerConfig"], "$type" | keyof import("./block.js").BlockConfig_Spacer>]: never; }) | undefined;
20138
20265
  iconConfig?: ({
20139
20266
  icon?: string | undefined;
20140
20267
  color?: string | undefined;
@@ -20153,8 +20280,8 @@ export declare const UIResponse: {
20153
20280
  } & {
20154
20281
  light?: string | undefined;
20155
20282
  dark?: string | undefined;
20156
- } & { [K_445 in Exclude<keyof I["blocks"]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20157
- } & { [K_446 in Exclude<keyof I["blocks"]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
20283
+ } & { [K_450 in Exclude<keyof I["blocks"]["config"]["iconConfig"]["colors"], "$type" | keyof import("./attributes.js").BlockColor>]: never; }) | undefined;
20284
+ } & { [K_451 in Exclude<keyof I["blocks"]["config"]["iconConfig"], "$type" | keyof import("./block.js").BlockConfig_Icon>]: never; }) | undefined;
20158
20285
  avatarConfig?: ({
20159
20286
  thingId?: string | undefined;
20160
20287
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -20165,7 +20292,7 @@ export declare const UIResponse: {
20165
20292
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
20166
20293
  size?: import("./enums.js").BlockAvatarSize | undefined;
20167
20294
  background?: import("./enums.js").BlockAvatarBackground | undefined;
20168
- } & { [K_447 in Exclude<keyof I["blocks"]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
20295
+ } & { [K_452 in Exclude<keyof I["blocks"]["config"]["avatarConfig"], "$type" | keyof import("./block.js").BlockConfig_Avatar>]: never; }) | undefined;
20169
20296
  fullsnooConfig?: ({
20170
20297
  userId?: string | undefined;
20171
20298
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
@@ -20174,7 +20301,7 @@ export declare const UIResponse: {
20174
20301
  userId?: string | undefined;
20175
20302
  facing?: import("./enums.js").BlockAvatarFacing | undefined;
20176
20303
  size?: import("./enums.js").BlockFullSnooSize | undefined;
20177
- } & { [K_448 in Exclude<keyof I["blocks"]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
20304
+ } & { [K_453 in Exclude<keyof I["blocks"]["config"]["fullsnooConfig"], "$type" | keyof import("./block.js").BlockConfig_FullSnoo>]: never; }) | undefined;
20178
20305
  animationConfig?: ({
20179
20306
  url?: string | undefined;
20180
20307
  width?: number | undefined;
@@ -20195,13 +20322,13 @@ export declare const UIResponse: {
20195
20322
  autoplay?: boolean | undefined;
20196
20323
  speed?: number | undefined;
20197
20324
  direction?: import("./enums.js").BlockAnimationDirection | undefined;
20198
- } & { [K_449 in Exclude<keyof I["blocks"]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
20325
+ } & { [K_454 in Exclude<keyof I["blocks"]["config"]["animationConfig"], "$type" | keyof import("./block.js").BlockConfig_Animation>]: never; }) | undefined;
20199
20326
  webviewConfig?: ({
20200
20327
  url?: string | undefined;
20201
20328
  } & {
20202
20329
  url?: string | undefined;
20203
- } & { [K_450 in Exclude<keyof I["blocks"]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
20204
- } & { [K_451 in Exclude<keyof I["blocks"]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
20330
+ } & { [K_455 in Exclude<keyof I["blocks"]["config"]["webviewConfig"], "$type" | "url">]: never; }) | undefined;
20331
+ } & { [K_456 in Exclude<keyof I["blocks"]["config"], "$type" | keyof import("./block.js").BlockConfig>]: never; }) | undefined;
20205
20332
  actions?: ({
20206
20333
  type?: import("./enums.js").BlockActionType | undefined;
20207
20334
  id?: string | undefined;
@@ -20221,15 +20348,29 @@ export declare const UIResponse: {
20221
20348
  [x: string]: any;
20222
20349
  } & {
20223
20350
  [x: string]: any;
20224
- } & { [K_452 in Exclude<keyof I["blocks"]["actions"][number]["data"], string | number>]: never; }) | undefined;
20225
- } & { [K_453 in Exclude<keyof I["blocks"]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_454 in Exclude<keyof I["blocks"]["actions"], "$type" | keyof {
20351
+ } & { [K_457 in Exclude<keyof I["blocks"]["actions"][number]["data"], string | number>]: never; }) | undefined;
20352
+ } & { [K_458 in Exclude<keyof I["blocks"]["actions"][number], "$type" | keyof import("./attributes.js").BlockAction>]: never; })[] & { [K_459 in Exclude<keyof I["blocks"]["actions"], "$type" | keyof {
20226
20353
  type?: import("./enums.js").BlockActionType | undefined;
20227
20354
  id?: string | undefined;
20228
20355
  data?: {
20229
20356
  [x: string]: any;
20230
20357
  } | undefined;
20231
20358
  }[]>]: never; }) | undefined;
20232
- } & { [K_455 in Exclude<keyof I["blocks"], "$type" | keyof Block>]: never; }) | undefined;
20233
- } & { [K_456 in Exclude<keyof I, "$type" | keyof UIResponse>]: never; }>(object: I): UIResponse;
20359
+ } & { [K_460 in Exclude<keyof I["blocks"], "$type" | keyof Block>]: never; }) | undefined;
20360
+ } & { [K_461 in Exclude<keyof I, "$type" | keyof UIResponse>]: never; }>(object: I): UIResponse;
20361
+ };
20362
+ export declare const UIEnvironment: {
20363
+ $type: "devvit.ui.block_kit.v1beta.UIEnvironment";
20364
+ encode(message: UIEnvironment, writer?: _m0.Writer): _m0.Writer;
20365
+ decode(input: _m0.Reader | Uint8Array, length?: number): UIEnvironment;
20366
+ fromJSON(object: any): UIEnvironment;
20367
+ toJSON(message: UIEnvironment): unknown;
20368
+ fromPartial<I extends {
20369
+ locale?: string | undefined;
20370
+ colorScheme?: string | undefined;
20371
+ } & {
20372
+ locale?: string | undefined;
20373
+ colorScheme?: string | undefined;
20374
+ } & { [K in Exclude<keyof I, "$type" | keyof UIEnvironment>]: never; }>(object: I): UIEnvironment;
20234
20375
  };
20235
20376
  //# sourceMappingURL=ui.d.ts.map