@devvit/protos 0.10.18-next-2024-03-12-1779d7ee8.0 → 0.10.18-next-2024-03-12-613bad501.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,23 @@ export interface Block {
21
21
  config?: BlockConfig;
22
22
  /** List of possible actions */
23
23
  actions: BlockAction[];
24
+ /**
25
+ * Unique identifier for the block, if we have one. This is designed to
26
+ * facilitate component re-use.
27
+ *
28
+ * If this is not set, the block is considered to be a new instance of a
29
+ * component, or the client may use heuristics to determine if the component
30
+ * appears similar enough to reuse.
31
+ */
32
+ id?: string | undefined;
33
+ /**
34
+ * Key for the block, if we have one. This is designed to handle
35
+ * component re-ordering within a list or parent.
36
+ *
37
+ * Keys are not required to be unique, but they should be stable across
38
+ * re-orderings of the same list or parent.
39
+ */
40
+ key?: string | undefined;
24
41
  }
25
42
  export interface BlockConfig {
26
43
  rootConfig?: BlockConfig_Root | undefined;
@@ -333,6 +350,8 @@ export declare const Block: {
333
350
  [x: string]: any;
334
351
  } | undefined;
335
352
  }[] | undefined;
353
+ id?: string | undefined;
354
+ key?: string | undefined;
336
355
  } & {
337
356
  type?: BlockType | undefined;
338
357
  size?: ({
@@ -503,6 +522,8 @@ export declare const Block: {
503
522
  [x: string]: any;
504
523
  } | undefined;
505
524
  }[] | undefined;
525
+ id?: string | undefined;
526
+ key?: string | undefined;
506
527
  }[] | undefined;
507
528
  height?: number | undefined;
508
529
  } | undefined;
@@ -556,6 +577,8 @@ export declare const Block: {
556
577
  [x: string]: any;
557
578
  } | undefined;
558
579
  }[] | undefined;
580
+ id?: string | undefined;
581
+ key?: string | undefined;
559
582
  }[] | undefined;
560
583
  reverse?: boolean | undefined;
561
584
  alignment?: {
@@ -818,6 +841,8 @@ export declare const Block: {
818
841
  [x: string]: any;
819
842
  } | undefined;
820
843
  }[] | undefined;
844
+ id?: string | undefined;
845
+ key?: string | undefined;
821
846
  }[] | undefined;
822
847
  height?: number | undefined;
823
848
  } & {
@@ -980,6 +1005,8 @@ export declare const Block: {
980
1005
  [x: string]: any;
981
1006
  } | undefined;
982
1007
  }[] | undefined;
1008
+ id?: string | undefined;
1009
+ key?: string | undefined;
983
1010
  }[] & ({
984
1011
  type?: BlockType | undefined;
985
1012
  size?: {
@@ -1139,6 +1166,8 @@ export declare const Block: {
1139
1166
  [x: string]: any;
1140
1167
  } | undefined;
1141
1168
  }[] | undefined;
1169
+ id?: string | undefined;
1170
+ key?: string | undefined;
1142
1171
  } & {
1143
1172
  type?: BlockType | undefined;
1144
1173
  size?: ({
@@ -1309,6 +1338,8 @@ export declare const Block: {
1309
1338
  [x: string]: any;
1310
1339
  } | undefined;
1311
1340
  }[] | undefined;
1341
+ id?: string | undefined;
1342
+ key?: string | undefined;
1312
1343
  }[] | undefined;
1313
1344
  height?: number | undefined;
1314
1345
  } | undefined;
@@ -1362,6 +1393,8 @@ export declare const Block: {
1362
1393
  [x: string]: any;
1363
1394
  } | undefined;
1364
1395
  }[] | undefined;
1396
+ id?: string | undefined;
1397
+ key?: string | undefined;
1365
1398
  }[] | undefined;
1366
1399
  reverse?: boolean | undefined;
1367
1400
  alignment?: {
@@ -1624,6 +1657,8 @@ export declare const Block: {
1624
1657
  [x: string]: any;
1625
1658
  } | undefined;
1626
1659
  }[] | undefined;
1660
+ id?: string | undefined;
1661
+ key?: string | undefined;
1627
1662
  }[] | undefined;
1628
1663
  height?: number | undefined;
1629
1664
  } & {
@@ -1786,6 +1821,8 @@ export declare const Block: {
1786
1821
  [x: string]: any;
1787
1822
  } | undefined;
1788
1823
  }[] | undefined;
1824
+ id?: string | undefined;
1825
+ key?: string | undefined;
1789
1826
  }[] & ({
1790
1827
  type?: BlockType | undefined;
1791
1828
  size?: {
@@ -1945,6 +1982,8 @@ export declare const Block: {
1945
1982
  [x: string]: any;
1946
1983
  } | undefined;
1947
1984
  }[] | undefined;
1985
+ id?: string | undefined;
1986
+ key?: string | undefined;
1948
1987
  } & {
1949
1988
  type?: BlockType | undefined;
1950
1989
  size?: ({
@@ -2115,6 +2154,8 @@ export declare const Block: {
2115
2154
  [x: string]: any;
2116
2155
  } | undefined;
2117
2156
  }[] | undefined;
2157
+ id?: string | undefined;
2158
+ key?: string | undefined;
2118
2159
  }[] | undefined;
2119
2160
  height?: number | undefined;
2120
2161
  } | undefined;
@@ -2168,6 +2209,8 @@ export declare const Block: {
2168
2209
  [x: string]: any;
2169
2210
  } | undefined;
2170
2211
  }[] | undefined;
2212
+ id?: string | undefined;
2213
+ key?: string | undefined;
2171
2214
  }[] | undefined;
2172
2215
  reverse?: boolean | undefined;
2173
2216
  alignment?: {
@@ -2430,6 +2473,8 @@ export declare const Block: {
2430
2473
  [x: string]: any;
2431
2474
  } | undefined;
2432
2475
  }[] | undefined;
2476
+ id?: string | undefined;
2477
+ key?: string | undefined;
2433
2478
  }[] | undefined;
2434
2479
  height?: number | undefined;
2435
2480
  } & {
@@ -2592,6 +2637,8 @@ export declare const Block: {
2592
2637
  [x: string]: any;
2593
2638
  } | undefined;
2594
2639
  }[] | undefined;
2640
+ id?: string | undefined;
2641
+ key?: string | undefined;
2595
2642
  }[] & ({
2596
2643
  type?: BlockType | undefined;
2597
2644
  size?: {
@@ -2751,6 +2798,8 @@ export declare const Block: {
2751
2798
  [x: string]: any;
2752
2799
  } | undefined;
2753
2800
  }[] | undefined;
2801
+ id?: string | undefined;
2802
+ key?: string | undefined;
2754
2803
  } & {
2755
2804
  type?: BlockType | undefined;
2756
2805
  size?: ({
@@ -2877,6 +2926,8 @@ export declare const Block: {
2877
2926
  [x: string]: any;
2878
2927
  } | undefined;
2879
2928
  }[] | undefined;
2929
+ id?: string | undefined;
2930
+ key?: string | undefined;
2880
2931
  }[] | undefined;
2881
2932
  height?: number | undefined;
2882
2933
  } | undefined;
@@ -2930,6 +2981,8 @@ export declare const Block: {
2930
2981
  [x: string]: any;
2931
2982
  } | undefined;
2932
2983
  }[] | undefined;
2984
+ id?: string | undefined;
2985
+ key?: string | undefined;
2933
2986
  }[] | undefined;
2934
2987
  reverse?: boolean | undefined;
2935
2988
  alignment?: {
@@ -3192,6 +3245,8 @@ export declare const Block: {
3192
3245
  [x: string]: any;
3193
3246
  } | undefined;
3194
3247
  }[] | undefined;
3248
+ id?: string | undefined;
3249
+ key?: string | undefined;
3195
3250
  }[] | undefined;
3196
3251
  height?: number | undefined;
3197
3252
  } & any & { [K_34 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -3332,6 +3387,8 @@ export declare const Block: {
3332
3387
  [x: string]: any;
3333
3388
  } | undefined;
3334
3389
  }[] | undefined;
3390
+ id?: string | undefined;
3391
+ key?: string | undefined;
3335
3392
  }[] | undefined;
3336
3393
  reverse?: boolean | undefined;
3337
3394
  alignment?: {
@@ -3462,6 +3519,8 @@ export declare const Block: {
3462
3519
  [x: string]: any;
3463
3520
  } | undefined;
3464
3521
  }[]>]: never; }) | undefined;
3522
+ id?: string | undefined;
3523
+ key?: string | undefined;
3465
3524
  } & { [K_49 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_50 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
3466
3525
  type?: BlockType | undefined;
3467
3526
  size?: {
@@ -3621,6 +3680,8 @@ export declare const Block: {
3621
3680
  [x: string]: any;
3622
3681
  } | undefined;
3623
3682
  }[] | undefined;
3683
+ id?: string | undefined;
3684
+ key?: string | undefined;
3624
3685
  }[]>]: never; }) | undefined;
3625
3686
  height?: number | undefined;
3626
3687
  } & { [K_51 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -3761,6 +3822,8 @@ export declare const Block: {
3761
3822
  [x: string]: any;
3762
3823
  } | undefined;
3763
3824
  }[] | undefined;
3825
+ id?: string | undefined;
3826
+ key?: string | undefined;
3764
3827
  }[] | undefined;
3765
3828
  reverse?: boolean | undefined;
3766
3829
  alignment?: {
@@ -3944,6 +4007,8 @@ export declare const Block: {
3944
4007
  [x: string]: any;
3945
4008
  } | undefined;
3946
4009
  }[] | undefined;
4010
+ id?: string | undefined;
4011
+ key?: string | undefined;
3947
4012
  }[] & ({
3948
4013
  type?: BlockType | undefined;
3949
4014
  size?: {
@@ -4103,6 +4168,8 @@ export declare const Block: {
4103
4168
  [x: string]: any;
4104
4169
  } | undefined;
4105
4170
  }[] | undefined;
4171
+ id?: string | undefined;
4172
+ key?: string | undefined;
4106
4173
  } & {
4107
4174
  type?: BlockType | undefined;
4108
4175
  size?: ({
@@ -4229,6 +4296,8 @@ export declare const Block: {
4229
4296
  [x: string]: any;
4230
4297
  } | undefined;
4231
4298
  }[] | undefined;
4299
+ id?: string | undefined;
4300
+ key?: string | undefined;
4232
4301
  }[] | undefined;
4233
4302
  height?: number | undefined;
4234
4303
  } | undefined;
@@ -4282,6 +4351,8 @@ export declare const Block: {
4282
4351
  [x: string]: any;
4283
4352
  } | undefined;
4284
4353
  }[] | undefined;
4354
+ id?: string | undefined;
4355
+ key?: string | undefined;
4285
4356
  }[] | undefined;
4286
4357
  reverse?: boolean | undefined;
4287
4358
  alignment?: {
@@ -4544,6 +4615,8 @@ export declare const Block: {
4544
4615
  [x: string]: any;
4545
4616
  } | undefined;
4546
4617
  }[] | undefined;
4618
+ id?: string | undefined;
4619
+ key?: string | undefined;
4547
4620
  }[] | undefined;
4548
4621
  height?: number | undefined;
4549
4622
  } & any & { [K_56 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -4684,6 +4757,8 @@ export declare const Block: {
4684
4757
  [x: string]: any;
4685
4758
  } | undefined;
4686
4759
  }[] | undefined;
4760
+ id?: string | undefined;
4761
+ key?: string | undefined;
4687
4762
  }[] | undefined;
4688
4763
  reverse?: boolean | undefined;
4689
4764
  alignment?: {
@@ -4814,6 +4889,8 @@ export declare const Block: {
4814
4889
  [x: string]: any;
4815
4890
  } | undefined;
4816
4891
  }[]>]: never; }) | undefined;
4892
+ id?: string | undefined;
4893
+ key?: string | undefined;
4817
4894
  } & { [K_71 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_72 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
4818
4895
  type?: BlockType | undefined;
4819
4896
  size?: {
@@ -4973,6 +5050,8 @@ export declare const Block: {
4973
5050
  [x: string]: any;
4974
5051
  } | undefined;
4975
5052
  }[] | undefined;
5053
+ id?: string | undefined;
5054
+ key?: string | undefined;
4976
5055
  }[]>]: never; }) | undefined;
4977
5056
  reverse?: boolean | undefined;
4978
5057
  alignment?: ({
@@ -5208,6 +5287,8 @@ export declare const Block: {
5208
5287
  [x: string]: any;
5209
5288
  } | undefined;
5210
5289
  }[]>]: never; }) | undefined;
5290
+ id?: string | undefined;
5291
+ key?: string | undefined;
5211
5292
  } & { [K_96 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_97 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
5212
5293
  type?: BlockType | undefined;
5213
5294
  size?: {
@@ -5367,6 +5448,8 @@ export declare const Block: {
5367
5448
  [x: string]: any;
5368
5449
  } | undefined;
5369
5450
  }[] | undefined;
5451
+ id?: string | undefined;
5452
+ key?: string | undefined;
5370
5453
  }[]>]: never; }) | undefined;
5371
5454
  height?: number | undefined;
5372
5455
  } & { [K_98 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -5507,6 +5590,8 @@ export declare const Block: {
5507
5590
  [x: string]: any;
5508
5591
  } | undefined;
5509
5592
  }[] | undefined;
5593
+ id?: string | undefined;
5594
+ key?: string | undefined;
5510
5595
  }[] | undefined;
5511
5596
  reverse?: boolean | undefined;
5512
5597
  alignment?: {
@@ -5690,6 +5775,8 @@ export declare const Block: {
5690
5775
  [x: string]: any;
5691
5776
  } | undefined;
5692
5777
  }[] | undefined;
5778
+ id?: string | undefined;
5779
+ key?: string | undefined;
5693
5780
  }[] & ({
5694
5781
  type?: BlockType | undefined;
5695
5782
  size?: {
@@ -5849,6 +5936,8 @@ export declare const Block: {
5849
5936
  [x: string]: any;
5850
5937
  } | undefined;
5851
5938
  }[] | undefined;
5939
+ id?: string | undefined;
5940
+ key?: string | undefined;
5852
5941
  } & {
5853
5942
  type?: BlockType | undefined;
5854
5943
  size?: ({
@@ -6019,6 +6108,8 @@ export declare const Block: {
6019
6108
  [x: string]: any;
6020
6109
  } | undefined;
6021
6110
  }[] | undefined;
6111
+ id?: string | undefined;
6112
+ key?: string | undefined;
6022
6113
  }[] | undefined;
6023
6114
  height?: number | undefined;
6024
6115
  } | undefined;
@@ -6072,6 +6163,8 @@ export declare const Block: {
6072
6163
  [x: string]: any;
6073
6164
  } | undefined;
6074
6165
  }[] | undefined;
6166
+ id?: string | undefined;
6167
+ key?: string | undefined;
6075
6168
  }[] | undefined;
6076
6169
  reverse?: boolean | undefined;
6077
6170
  alignment?: {
@@ -6334,6 +6427,8 @@ export declare const Block: {
6334
6427
  [x: string]: any;
6335
6428
  } | undefined;
6336
6429
  }[] | undefined;
6430
+ id?: string | undefined;
6431
+ key?: string | undefined;
6337
6432
  }[] | undefined;
6338
6433
  height?: number | undefined;
6339
6434
  } & {
@@ -6496,6 +6591,8 @@ export declare const Block: {
6496
6591
  [x: string]: any;
6497
6592
  } | undefined;
6498
6593
  }[] | undefined;
6594
+ id?: string | undefined;
6595
+ key?: string | undefined;
6499
6596
  }[] & ({
6500
6597
  type?: BlockType | undefined;
6501
6598
  size?: {
@@ -6655,6 +6752,8 @@ export declare const Block: {
6655
6752
  [x: string]: any;
6656
6753
  } | undefined;
6657
6754
  }[] | undefined;
6755
+ id?: string | undefined;
6756
+ key?: string | undefined;
6658
6757
  } & {
6659
6758
  type?: BlockType | undefined;
6660
6759
  size?: ({
@@ -6781,6 +6880,8 @@ export declare const Block: {
6781
6880
  [x: string]: any;
6782
6881
  } | undefined;
6783
6882
  }[] | undefined;
6883
+ id?: string | undefined;
6884
+ key?: string | undefined;
6784
6885
  }[] | undefined;
6785
6886
  height?: number | undefined;
6786
6887
  } | undefined;
@@ -6834,6 +6935,8 @@ export declare const Block: {
6834
6935
  [x: string]: any;
6835
6936
  } | undefined;
6836
6937
  }[] | undefined;
6938
+ id?: string | undefined;
6939
+ key?: string | undefined;
6837
6940
  }[] | undefined;
6838
6941
  reverse?: boolean | undefined;
6839
6942
  alignment?: {
@@ -7096,6 +7199,8 @@ export declare const Block: {
7096
7199
  [x: string]: any;
7097
7200
  } | undefined;
7098
7201
  }[] | undefined;
7202
+ id?: string | undefined;
7203
+ key?: string | undefined;
7099
7204
  }[] | undefined;
7100
7205
  height?: number | undefined;
7101
7206
  } & any & { [K_113 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -7236,6 +7341,8 @@ export declare const Block: {
7236
7341
  [x: string]: any;
7237
7342
  } | undefined;
7238
7343
  }[] | undefined;
7344
+ id?: string | undefined;
7345
+ key?: string | undefined;
7239
7346
  }[] | undefined;
7240
7347
  reverse?: boolean | undefined;
7241
7348
  alignment?: {
@@ -7366,6 +7473,8 @@ export declare const Block: {
7366
7473
  [x: string]: any;
7367
7474
  } | undefined;
7368
7475
  }[]>]: never; }) | undefined;
7476
+ id?: string | undefined;
7477
+ key?: string | undefined;
7369
7478
  } & { [K_128 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_129 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
7370
7479
  type?: BlockType | undefined;
7371
7480
  size?: {
@@ -7525,6 +7634,8 @@ export declare const Block: {
7525
7634
  [x: string]: any;
7526
7635
  } | undefined;
7527
7636
  }[] | undefined;
7637
+ id?: string | undefined;
7638
+ key?: string | undefined;
7528
7639
  }[]>]: never; }) | undefined;
7529
7640
  height?: number | undefined;
7530
7641
  } & { [K_130 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -7665,6 +7776,8 @@ export declare const Block: {
7665
7776
  [x: string]: any;
7666
7777
  } | undefined;
7667
7778
  }[] | undefined;
7779
+ id?: string | undefined;
7780
+ key?: string | undefined;
7668
7781
  }[] | undefined;
7669
7782
  reverse?: boolean | undefined;
7670
7783
  alignment?: {
@@ -7848,6 +7961,8 @@ export declare const Block: {
7848
7961
  [x: string]: any;
7849
7962
  } | undefined;
7850
7963
  }[] | undefined;
7964
+ id?: string | undefined;
7965
+ key?: string | undefined;
7851
7966
  }[] & ({
7852
7967
  type?: BlockType | undefined;
7853
7968
  size?: {
@@ -8007,6 +8122,8 @@ export declare const Block: {
8007
8122
  [x: string]: any;
8008
8123
  } | undefined;
8009
8124
  }[] | undefined;
8125
+ id?: string | undefined;
8126
+ key?: string | undefined;
8010
8127
  } & {
8011
8128
  type?: BlockType | undefined;
8012
8129
  size?: ({
@@ -8133,6 +8250,8 @@ export declare const Block: {
8133
8250
  [x: string]: any;
8134
8251
  } | undefined;
8135
8252
  }[] | undefined;
8253
+ id?: string | undefined;
8254
+ key?: string | undefined;
8136
8255
  }[] | undefined;
8137
8256
  height?: number | undefined;
8138
8257
  } | undefined;
@@ -8186,6 +8305,8 @@ export declare const Block: {
8186
8305
  [x: string]: any;
8187
8306
  } | undefined;
8188
8307
  }[] | undefined;
8308
+ id?: string | undefined;
8309
+ key?: string | undefined;
8189
8310
  }[] | undefined;
8190
8311
  reverse?: boolean | undefined;
8191
8312
  alignment?: {
@@ -8448,6 +8569,8 @@ export declare const Block: {
8448
8569
  [x: string]: any;
8449
8570
  } | undefined;
8450
8571
  }[] | undefined;
8572
+ id?: string | undefined;
8573
+ key?: string | undefined;
8451
8574
  }[] | undefined;
8452
8575
  height?: number | undefined;
8453
8576
  } & any & { [K_135 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -8588,6 +8711,8 @@ export declare const Block: {
8588
8711
  [x: string]: any;
8589
8712
  } | undefined;
8590
8713
  }[] | undefined;
8714
+ id?: string | undefined;
8715
+ key?: string | undefined;
8591
8716
  }[] | undefined;
8592
8717
  reverse?: boolean | undefined;
8593
8718
  alignment?: {
@@ -8718,6 +8843,8 @@ export declare const Block: {
8718
8843
  [x: string]: any;
8719
8844
  } | undefined;
8720
8845
  }[]>]: never; }) | undefined;
8846
+ id?: string | undefined;
8847
+ key?: string | undefined;
8721
8848
  } & { [K_150 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_151 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
8722
8849
  type?: BlockType | undefined;
8723
8850
  size?: {
@@ -8877,6 +9004,8 @@ export declare const Block: {
8877
9004
  [x: string]: any;
8878
9005
  } | undefined;
8879
9006
  }[] | undefined;
9007
+ id?: string | undefined;
9008
+ key?: string | undefined;
8880
9009
  }[]>]: never; }) | undefined;
8881
9010
  reverse?: boolean | undefined;
8882
9011
  alignment?: ({
@@ -9112,6 +9241,8 @@ export declare const Block: {
9112
9241
  [x: string]: any;
9113
9242
  } | undefined;
9114
9243
  }[]>]: never; }) | undefined;
9244
+ id?: string | undefined;
9245
+ key?: string | undefined;
9115
9246
  } & { [K_175 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_176 in Exclude<keyof I["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
9116
9247
  type?: BlockType | undefined;
9117
9248
  size?: {
@@ -9271,6 +9402,8 @@ export declare const Block: {
9271
9402
  [x: string]: any;
9272
9403
  } | undefined;
9273
9404
  }[] | undefined;
9405
+ id?: string | undefined;
9406
+ key?: string | undefined;
9274
9407
  }[]>]: never; }) | undefined;
9275
9408
  reverse?: boolean | undefined;
9276
9409
  alignment?: ({
@@ -9506,6 +9639,8 @@ export declare const Block: {
9506
9639
  [x: string]: any;
9507
9640
  } | undefined;
9508
9641
  }[]>]: never; }) | undefined;
9642
+ id?: string | undefined;
9643
+ key?: string | undefined;
9509
9644
  } & { [K_200 in Exclude<keyof I["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_201 in Exclude<keyof I["config"]["rootConfig"]["children"], "$type" | keyof {
9510
9645
  type?: BlockType | undefined;
9511
9646
  size?: {
@@ -9665,6 +9800,8 @@ export declare const Block: {
9665
9800
  [x: string]: any;
9666
9801
  } | undefined;
9667
9802
  }[] | undefined;
9803
+ id?: string | undefined;
9804
+ key?: string | undefined;
9668
9805
  }[]>]: never; }) | undefined;
9669
9806
  height?: number | undefined;
9670
9807
  } & { [K_202 in Exclude<keyof I["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -9805,6 +9942,8 @@ export declare const Block: {
9805
9942
  [x: string]: any;
9806
9943
  } | undefined;
9807
9944
  }[] | undefined;
9945
+ id?: string | undefined;
9946
+ key?: string | undefined;
9808
9947
  }[] | undefined;
9809
9948
  reverse?: boolean | undefined;
9810
9949
  alignment?: {
@@ -9988,6 +10127,8 @@ export declare const Block: {
9988
10127
  [x: string]: any;
9989
10128
  } | undefined;
9990
10129
  }[] | undefined;
10130
+ id?: string | undefined;
10131
+ key?: string | undefined;
9991
10132
  }[] & ({
9992
10133
  type?: BlockType | undefined;
9993
10134
  size?: {
@@ -10147,6 +10288,8 @@ export declare const Block: {
10147
10288
  [x: string]: any;
10148
10289
  } | undefined;
10149
10290
  }[] | undefined;
10291
+ id?: string | undefined;
10292
+ key?: string | undefined;
10150
10293
  } & {
10151
10294
  type?: BlockType | undefined;
10152
10295
  size?: ({
@@ -10317,6 +10460,8 @@ export declare const Block: {
10317
10460
  [x: string]: any;
10318
10461
  } | undefined;
10319
10462
  }[] | undefined;
10463
+ id?: string | undefined;
10464
+ key?: string | undefined;
10320
10465
  }[] | undefined;
10321
10466
  height?: number | undefined;
10322
10467
  } | undefined;
@@ -10370,6 +10515,8 @@ export declare const Block: {
10370
10515
  [x: string]: any;
10371
10516
  } | undefined;
10372
10517
  }[] | undefined;
10518
+ id?: string | undefined;
10519
+ key?: string | undefined;
10373
10520
  }[] | undefined;
10374
10521
  reverse?: boolean | undefined;
10375
10522
  alignment?: {
@@ -10632,6 +10779,8 @@ export declare const Block: {
10632
10779
  [x: string]: any;
10633
10780
  } | undefined;
10634
10781
  }[] | undefined;
10782
+ id?: string | undefined;
10783
+ key?: string | undefined;
10635
10784
  }[] | undefined;
10636
10785
  height?: number | undefined;
10637
10786
  } & {
@@ -10794,6 +10943,8 @@ export declare const Block: {
10794
10943
  [x: string]: any;
10795
10944
  } | undefined;
10796
10945
  }[] | undefined;
10946
+ id?: string | undefined;
10947
+ key?: string | undefined;
10797
10948
  }[] & ({
10798
10949
  type?: BlockType | undefined;
10799
10950
  size?: {
@@ -10953,6 +11104,8 @@ export declare const Block: {
10953
11104
  [x: string]: any;
10954
11105
  } | undefined;
10955
11106
  }[] | undefined;
11107
+ id?: string | undefined;
11108
+ key?: string | undefined;
10956
11109
  } & {
10957
11110
  type?: BlockType | undefined;
10958
11111
  size?: ({
@@ -11123,6 +11276,8 @@ export declare const Block: {
11123
11276
  [x: string]: any;
11124
11277
  } | undefined;
11125
11278
  }[] | undefined;
11279
+ id?: string | undefined;
11280
+ key?: string | undefined;
11126
11281
  }[] | undefined;
11127
11282
  height?: number | undefined;
11128
11283
  } | undefined;
@@ -11176,6 +11331,8 @@ export declare const Block: {
11176
11331
  [x: string]: any;
11177
11332
  } | undefined;
11178
11333
  }[] | undefined;
11334
+ id?: string | undefined;
11335
+ key?: string | undefined;
11179
11336
  }[] | undefined;
11180
11337
  reverse?: boolean | undefined;
11181
11338
  alignment?: {
@@ -11438,6 +11595,8 @@ export declare const Block: {
11438
11595
  [x: string]: any;
11439
11596
  } | undefined;
11440
11597
  }[] | undefined;
11598
+ id?: string | undefined;
11599
+ key?: string | undefined;
11441
11600
  }[] | undefined;
11442
11601
  height?: number | undefined;
11443
11602
  } & {
@@ -11600,6 +11759,8 @@ export declare const Block: {
11600
11759
  [x: string]: any;
11601
11760
  } | undefined;
11602
11761
  }[] | undefined;
11762
+ id?: string | undefined;
11763
+ key?: string | undefined;
11603
11764
  }[] & ({
11604
11765
  type?: BlockType | undefined;
11605
11766
  size?: {
@@ -11759,6 +11920,8 @@ export declare const Block: {
11759
11920
  [x: string]: any;
11760
11921
  } | undefined;
11761
11922
  }[] | undefined;
11923
+ id?: string | undefined;
11924
+ key?: string | undefined;
11762
11925
  } & {
11763
11926
  type?: BlockType | undefined;
11764
11927
  size?: ({
@@ -11885,6 +12048,8 @@ export declare const Block: {
11885
12048
  [x: string]: any;
11886
12049
  } | undefined;
11887
12050
  }[] | undefined;
12051
+ id?: string | undefined;
12052
+ key?: string | undefined;
11888
12053
  }[] | undefined;
11889
12054
  height?: number | undefined;
11890
12055
  } | undefined;
@@ -11938,6 +12103,8 @@ export declare const Block: {
11938
12103
  [x: string]: any;
11939
12104
  } | undefined;
11940
12105
  }[] | undefined;
12106
+ id?: string | undefined;
12107
+ key?: string | undefined;
11941
12108
  }[] | undefined;
11942
12109
  reverse?: boolean | undefined;
11943
12110
  alignment?: {
@@ -12200,6 +12367,8 @@ export declare const Block: {
12200
12367
  [x: string]: any;
12201
12368
  } | undefined;
12202
12369
  }[] | undefined;
12370
+ id?: string | undefined;
12371
+ key?: string | undefined;
12203
12372
  }[] | undefined;
12204
12373
  height?: number | undefined;
12205
12374
  } & any & { [K_227 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -12340,6 +12509,8 @@ export declare const Block: {
12340
12509
  [x: string]: any;
12341
12510
  } | undefined;
12342
12511
  }[] | undefined;
12512
+ id?: string | undefined;
12513
+ key?: string | undefined;
12343
12514
  }[] | undefined;
12344
12515
  reverse?: boolean | undefined;
12345
12516
  alignment?: {
@@ -12470,6 +12641,8 @@ export declare const Block: {
12470
12641
  [x: string]: any;
12471
12642
  } | undefined;
12472
12643
  }[]>]: never; }) | undefined;
12644
+ id?: string | undefined;
12645
+ key?: string | undefined;
12473
12646
  } & { [K_242 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_243 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
12474
12647
  type?: BlockType | undefined;
12475
12648
  size?: {
@@ -12629,6 +12802,8 @@ export declare const Block: {
12629
12802
  [x: string]: any;
12630
12803
  } | undefined;
12631
12804
  }[] | undefined;
12805
+ id?: string | undefined;
12806
+ key?: string | undefined;
12632
12807
  }[]>]: never; }) | undefined;
12633
12808
  height?: number | undefined;
12634
12809
  } & { [K_244 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -12769,6 +12944,8 @@ export declare const Block: {
12769
12944
  [x: string]: any;
12770
12945
  } | undefined;
12771
12946
  }[] | undefined;
12947
+ id?: string | undefined;
12948
+ key?: string | undefined;
12772
12949
  }[] | undefined;
12773
12950
  reverse?: boolean | undefined;
12774
12951
  alignment?: {
@@ -12952,6 +13129,8 @@ export declare const Block: {
12952
13129
  [x: string]: any;
12953
13130
  } | undefined;
12954
13131
  }[] | undefined;
13132
+ id?: string | undefined;
13133
+ key?: string | undefined;
12955
13134
  }[] & ({
12956
13135
  type?: BlockType | undefined;
12957
13136
  size?: {
@@ -13111,6 +13290,8 @@ export declare const Block: {
13111
13290
  [x: string]: any;
13112
13291
  } | undefined;
13113
13292
  }[] | undefined;
13293
+ id?: string | undefined;
13294
+ key?: string | undefined;
13114
13295
  } & {
13115
13296
  type?: BlockType | undefined;
13116
13297
  size?: ({
@@ -13237,6 +13418,8 @@ export declare const Block: {
13237
13418
  [x: string]: any;
13238
13419
  } | undefined;
13239
13420
  }[] | undefined;
13421
+ id?: string | undefined;
13422
+ key?: string | undefined;
13240
13423
  }[] | undefined;
13241
13424
  height?: number | undefined;
13242
13425
  } | undefined;
@@ -13290,6 +13473,8 @@ export declare const Block: {
13290
13473
  [x: string]: any;
13291
13474
  } | undefined;
13292
13475
  }[] | undefined;
13476
+ id?: string | undefined;
13477
+ key?: string | undefined;
13293
13478
  }[] | undefined;
13294
13479
  reverse?: boolean | undefined;
13295
13480
  alignment?: {
@@ -13552,6 +13737,8 @@ export declare const Block: {
13552
13737
  [x: string]: any;
13553
13738
  } | undefined;
13554
13739
  }[] | undefined;
13740
+ id?: string | undefined;
13741
+ key?: string | undefined;
13555
13742
  }[] | undefined;
13556
13743
  height?: number | undefined;
13557
13744
  } & any & { [K_249 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -13692,6 +13879,8 @@ export declare const Block: {
13692
13879
  [x: string]: any;
13693
13880
  } | undefined;
13694
13881
  }[] | undefined;
13882
+ id?: string | undefined;
13883
+ key?: string | undefined;
13695
13884
  }[] | undefined;
13696
13885
  reverse?: boolean | undefined;
13697
13886
  alignment?: {
@@ -13822,6 +14011,8 @@ export declare const Block: {
13822
14011
  [x: string]: any;
13823
14012
  } | undefined;
13824
14013
  }[]>]: never; }) | undefined;
14014
+ id?: string | undefined;
14015
+ key?: string | undefined;
13825
14016
  } & { [K_264 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_265 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
13826
14017
  type?: BlockType | undefined;
13827
14018
  size?: {
@@ -13981,6 +14172,8 @@ export declare const Block: {
13981
14172
  [x: string]: any;
13982
14173
  } | undefined;
13983
14174
  }[] | undefined;
14175
+ id?: string | undefined;
14176
+ key?: string | undefined;
13984
14177
  }[]>]: never; }) | undefined;
13985
14178
  reverse?: boolean | undefined;
13986
14179
  alignment?: ({
@@ -14216,6 +14409,8 @@ export declare const Block: {
14216
14409
  [x: string]: any;
14217
14410
  } | undefined;
14218
14411
  }[]>]: never; }) | undefined;
14412
+ id?: string | undefined;
14413
+ key?: string | undefined;
14219
14414
  } & { [K_289 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_290 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
14220
14415
  type?: BlockType | undefined;
14221
14416
  size?: {
@@ -14375,6 +14570,8 @@ export declare const Block: {
14375
14570
  [x: string]: any;
14376
14571
  } | undefined;
14377
14572
  }[] | undefined;
14573
+ id?: string | undefined;
14574
+ key?: string | undefined;
14378
14575
  }[]>]: never; }) | undefined;
14379
14576
  height?: number | undefined;
14380
14577
  } & { [K_291 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -14515,6 +14712,8 @@ export declare const Block: {
14515
14712
  [x: string]: any;
14516
14713
  } | undefined;
14517
14714
  }[] | undefined;
14715
+ id?: string | undefined;
14716
+ key?: string | undefined;
14518
14717
  }[] | undefined;
14519
14718
  reverse?: boolean | undefined;
14520
14719
  alignment?: {
@@ -14698,6 +14897,8 @@ export declare const Block: {
14698
14897
  [x: string]: any;
14699
14898
  } | undefined;
14700
14899
  }[] | undefined;
14900
+ id?: string | undefined;
14901
+ key?: string | undefined;
14701
14902
  }[] & ({
14702
14903
  type?: BlockType | undefined;
14703
14904
  size?: {
@@ -14857,6 +15058,8 @@ export declare const Block: {
14857
15058
  [x: string]: any;
14858
15059
  } | undefined;
14859
15060
  }[] | undefined;
15061
+ id?: string | undefined;
15062
+ key?: string | undefined;
14860
15063
  } & {
14861
15064
  type?: BlockType | undefined;
14862
15065
  size?: ({
@@ -15027,6 +15230,8 @@ export declare const Block: {
15027
15230
  [x: string]: any;
15028
15231
  } | undefined;
15029
15232
  }[] | undefined;
15233
+ id?: string | undefined;
15234
+ key?: string | undefined;
15030
15235
  }[] | undefined;
15031
15236
  height?: number | undefined;
15032
15237
  } | undefined;
@@ -15080,6 +15285,8 @@ export declare const Block: {
15080
15285
  [x: string]: any;
15081
15286
  } | undefined;
15082
15287
  }[] | undefined;
15288
+ id?: string | undefined;
15289
+ key?: string | undefined;
15083
15290
  }[] | undefined;
15084
15291
  reverse?: boolean | undefined;
15085
15292
  alignment?: {
@@ -15342,6 +15549,8 @@ export declare const Block: {
15342
15549
  [x: string]: any;
15343
15550
  } | undefined;
15344
15551
  }[] | undefined;
15552
+ id?: string | undefined;
15553
+ key?: string | undefined;
15345
15554
  }[] | undefined;
15346
15555
  height?: number | undefined;
15347
15556
  } & {
@@ -15504,6 +15713,8 @@ export declare const Block: {
15504
15713
  [x: string]: any;
15505
15714
  } | undefined;
15506
15715
  }[] | undefined;
15716
+ id?: string | undefined;
15717
+ key?: string | undefined;
15507
15718
  }[] & ({
15508
15719
  type?: BlockType | undefined;
15509
15720
  size?: {
@@ -15663,6 +15874,8 @@ export declare const Block: {
15663
15874
  [x: string]: any;
15664
15875
  } | undefined;
15665
15876
  }[] | undefined;
15877
+ id?: string | undefined;
15878
+ key?: string | undefined;
15666
15879
  } & {
15667
15880
  type?: BlockType | undefined;
15668
15881
  size?: ({
@@ -15789,6 +16002,8 @@ export declare const Block: {
15789
16002
  [x: string]: any;
15790
16003
  } | undefined;
15791
16004
  }[] | undefined;
16005
+ id?: string | undefined;
16006
+ key?: string | undefined;
15792
16007
  }[] | undefined;
15793
16008
  height?: number | undefined;
15794
16009
  } | undefined;
@@ -15842,6 +16057,8 @@ export declare const Block: {
15842
16057
  [x: string]: any;
15843
16058
  } | undefined;
15844
16059
  }[] | undefined;
16060
+ id?: string | undefined;
16061
+ key?: string | undefined;
15845
16062
  }[] | undefined;
15846
16063
  reverse?: boolean | undefined;
15847
16064
  alignment?: {
@@ -16104,6 +16321,8 @@ export declare const Block: {
16104
16321
  [x: string]: any;
16105
16322
  } | undefined;
16106
16323
  }[] | undefined;
16324
+ id?: string | undefined;
16325
+ key?: string | undefined;
16107
16326
  }[] | undefined;
16108
16327
  height?: number | undefined;
16109
16328
  } & any & { [K_306 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -16244,6 +16463,8 @@ export declare const Block: {
16244
16463
  [x: string]: any;
16245
16464
  } | undefined;
16246
16465
  }[] | undefined;
16466
+ id?: string | undefined;
16467
+ key?: string | undefined;
16247
16468
  }[] | undefined;
16248
16469
  reverse?: boolean | undefined;
16249
16470
  alignment?: {
@@ -16374,6 +16595,8 @@ export declare const Block: {
16374
16595
  [x: string]: any;
16375
16596
  } | undefined;
16376
16597
  }[]>]: never; }) | undefined;
16598
+ id?: string | undefined;
16599
+ key?: string | undefined;
16377
16600
  } & { [K_321 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_322 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
16378
16601
  type?: BlockType | undefined;
16379
16602
  size?: {
@@ -16533,6 +16756,8 @@ export declare const Block: {
16533
16756
  [x: string]: any;
16534
16757
  } | undefined;
16535
16758
  }[] | undefined;
16759
+ id?: string | undefined;
16760
+ key?: string | undefined;
16536
16761
  }[]>]: never; }) | undefined;
16537
16762
  height?: number | undefined;
16538
16763
  } & { [K_323 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -16673,6 +16898,8 @@ export declare const Block: {
16673
16898
  [x: string]: any;
16674
16899
  } | undefined;
16675
16900
  }[] | undefined;
16901
+ id?: string | undefined;
16902
+ key?: string | undefined;
16676
16903
  }[] | undefined;
16677
16904
  reverse?: boolean | undefined;
16678
16905
  alignment?: {
@@ -16856,6 +17083,8 @@ export declare const Block: {
16856
17083
  [x: string]: any;
16857
17084
  } | undefined;
16858
17085
  }[] | undefined;
17086
+ id?: string | undefined;
17087
+ key?: string | undefined;
16859
17088
  }[] & ({
16860
17089
  type?: BlockType | undefined;
16861
17090
  size?: {
@@ -17015,6 +17244,8 @@ export declare const Block: {
17015
17244
  [x: string]: any;
17016
17245
  } | undefined;
17017
17246
  }[] | undefined;
17247
+ id?: string | undefined;
17248
+ key?: string | undefined;
17018
17249
  } & {
17019
17250
  type?: BlockType | undefined;
17020
17251
  size?: ({
@@ -17141,6 +17372,8 @@ export declare const Block: {
17141
17372
  [x: string]: any;
17142
17373
  } | undefined;
17143
17374
  }[] | undefined;
17375
+ id?: string | undefined;
17376
+ key?: string | undefined;
17144
17377
  }[] | undefined;
17145
17378
  height?: number | undefined;
17146
17379
  } | undefined;
@@ -17194,6 +17427,8 @@ export declare const Block: {
17194
17427
  [x: string]: any;
17195
17428
  } | undefined;
17196
17429
  }[] | undefined;
17430
+ id?: string | undefined;
17431
+ key?: string | undefined;
17197
17432
  }[] | undefined;
17198
17433
  reverse?: boolean | undefined;
17199
17434
  alignment?: {
@@ -17456,6 +17691,8 @@ export declare const Block: {
17456
17691
  [x: string]: any;
17457
17692
  } | undefined;
17458
17693
  }[] | undefined;
17694
+ id?: string | undefined;
17695
+ key?: string | undefined;
17459
17696
  }[] | undefined;
17460
17697
  height?: number | undefined;
17461
17698
  } & any & { [K_328 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -17596,6 +17833,8 @@ export declare const Block: {
17596
17833
  [x: string]: any;
17597
17834
  } | undefined;
17598
17835
  }[] | undefined;
17836
+ id?: string | undefined;
17837
+ key?: string | undefined;
17599
17838
  }[] | undefined;
17600
17839
  reverse?: boolean | undefined;
17601
17840
  alignment?: {
@@ -17726,6 +17965,8 @@ export declare const Block: {
17726
17965
  [x: string]: any;
17727
17966
  } | undefined;
17728
17967
  }[]>]: never; }) | undefined;
17968
+ id?: string | undefined;
17969
+ key?: string | undefined;
17729
17970
  } & { [K_343 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_344 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
17730
17971
  type?: BlockType | undefined;
17731
17972
  size?: {
@@ -17885,6 +18126,8 @@ export declare const Block: {
17885
18126
  [x: string]: any;
17886
18127
  } | undefined;
17887
18128
  }[] | undefined;
18129
+ id?: string | undefined;
18130
+ key?: string | undefined;
17888
18131
  }[]>]: never; }) | undefined;
17889
18132
  reverse?: boolean | undefined;
17890
18133
  alignment?: ({
@@ -18120,6 +18363,8 @@ export declare const Block: {
18120
18363
  [x: string]: any;
18121
18364
  } | undefined;
18122
18365
  }[]>]: never; }) | undefined;
18366
+ id?: string | undefined;
18367
+ key?: string | undefined;
18123
18368
  } & { [K_368 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_369 in Exclude<keyof I["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
18124
18369
  type?: BlockType | undefined;
18125
18370
  size?: {
@@ -18279,6 +18524,8 @@ export declare const Block: {
18279
18524
  [x: string]: any;
18280
18525
  } | undefined;
18281
18526
  }[] | undefined;
18527
+ id?: string | undefined;
18528
+ key?: string | undefined;
18282
18529
  }[]>]: never; }) | undefined;
18283
18530
  reverse?: boolean | undefined;
18284
18531
  alignment?: ({
@@ -18514,6 +18761,8 @@ export declare const Block: {
18514
18761
  [x: string]: any;
18515
18762
  } | undefined;
18516
18763
  }[]>]: never; }) | undefined;
18764
+ id?: string | undefined;
18765
+ key?: string | undefined;
18517
18766
  } & { [K_393 in Exclude<keyof I["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_394 in Exclude<keyof I["config"]["stackConfig"]["children"], "$type" | keyof {
18518
18767
  type?: BlockType | undefined;
18519
18768
  size?: {
@@ -18673,6 +18922,8 @@ export declare const Block: {
18673
18922
  [x: string]: any;
18674
18923
  } | undefined;
18675
18924
  }[] | undefined;
18925
+ id?: string | undefined;
18926
+ key?: string | undefined;
18676
18927
  }[]>]: never; }) | undefined;
18677
18928
  reverse?: boolean | undefined;
18678
18929
  alignment?: ({
@@ -18908,6 +19159,8 @@ export declare const Block: {
18908
19159
  [x: string]: any;
18909
19160
  } | undefined;
18910
19161
  }[]>]: never; }) | undefined;
19162
+ id?: string | undefined;
19163
+ key?: string | undefined;
18911
19164
  } & { [K_418 in Exclude<keyof I, "$type" | keyof Block>]: never; }>(object: I): Block;
18912
19165
  };
18913
19166
  export declare const BlockConfig: {
@@ -18966,6 +19219,8 @@ export declare const BlockConfig: {
18966
19219
  [x: string]: any;
18967
19220
  } | undefined;
18968
19221
  }[] | undefined;
19222
+ id?: string | undefined;
19223
+ key?: string | undefined;
18969
19224
  }[] | undefined;
18970
19225
  height?: number | undefined;
18971
19226
  } | undefined;
@@ -19019,6 +19274,8 @@ export declare const BlockConfig: {
19019
19274
  [x: string]: any;
19020
19275
  } | undefined;
19021
19276
  }[] | undefined;
19277
+ id?: string | undefined;
19278
+ key?: string | undefined;
19022
19279
  }[] | undefined;
19023
19280
  reverse?: boolean | undefined;
19024
19281
  alignment?: {
@@ -19281,6 +19538,8 @@ export declare const BlockConfig: {
19281
19538
  [x: string]: any;
19282
19539
  } | undefined;
19283
19540
  }[] | undefined;
19541
+ id?: string | undefined;
19542
+ key?: string | undefined;
19284
19543
  }[] | undefined;
19285
19544
  height?: number | undefined;
19286
19545
  } & {
@@ -19443,6 +19702,8 @@ export declare const BlockConfig: {
19443
19702
  [x: string]: any;
19444
19703
  } | undefined;
19445
19704
  }[] | undefined;
19705
+ id?: string | undefined;
19706
+ key?: string | undefined;
19446
19707
  }[] & ({
19447
19708
  type?: BlockType | undefined;
19448
19709
  size?: {
@@ -19602,6 +19863,8 @@ export declare const BlockConfig: {
19602
19863
  [x: string]: any;
19603
19864
  } | undefined;
19604
19865
  }[] | undefined;
19866
+ id?: string | undefined;
19867
+ key?: string | undefined;
19605
19868
  } & {
19606
19869
  type?: BlockType | undefined;
19607
19870
  size?: ({
@@ -19772,6 +20035,8 @@ export declare const BlockConfig: {
19772
20035
  [x: string]: any;
19773
20036
  } | undefined;
19774
20037
  }[] | undefined;
20038
+ id?: string | undefined;
20039
+ key?: string | undefined;
19775
20040
  }[] | undefined;
19776
20041
  height?: number | undefined;
19777
20042
  } | undefined;
@@ -19825,6 +20090,8 @@ export declare const BlockConfig: {
19825
20090
  [x: string]: any;
19826
20091
  } | undefined;
19827
20092
  }[] | undefined;
20093
+ id?: string | undefined;
20094
+ key?: string | undefined;
19828
20095
  }[] | undefined;
19829
20096
  reverse?: boolean | undefined;
19830
20097
  alignment?: {
@@ -20087,6 +20354,8 @@ export declare const BlockConfig: {
20087
20354
  [x: string]: any;
20088
20355
  } | undefined;
20089
20356
  }[] | undefined;
20357
+ id?: string | undefined;
20358
+ key?: string | undefined;
20090
20359
  }[] | undefined;
20091
20360
  height?: number | undefined;
20092
20361
  } & {
@@ -20249,6 +20518,8 @@ export declare const BlockConfig: {
20249
20518
  [x: string]: any;
20250
20519
  } | undefined;
20251
20520
  }[] | undefined;
20521
+ id?: string | undefined;
20522
+ key?: string | undefined;
20252
20523
  }[] & ({
20253
20524
  type?: BlockType | undefined;
20254
20525
  size?: {
@@ -20408,6 +20679,8 @@ export declare const BlockConfig: {
20408
20679
  [x: string]: any;
20409
20680
  } | undefined;
20410
20681
  }[] | undefined;
20682
+ id?: string | undefined;
20683
+ key?: string | undefined;
20411
20684
  } & {
20412
20685
  type?: BlockType | undefined;
20413
20686
  size?: ({
@@ -20578,6 +20851,8 @@ export declare const BlockConfig: {
20578
20851
  [x: string]: any;
20579
20852
  } | undefined;
20580
20853
  }[] | undefined;
20854
+ id?: string | undefined;
20855
+ key?: string | undefined;
20581
20856
  }[] | undefined;
20582
20857
  height?: number | undefined;
20583
20858
  } | undefined;
@@ -20631,6 +20906,8 @@ export declare const BlockConfig: {
20631
20906
  [x: string]: any;
20632
20907
  } | undefined;
20633
20908
  }[] | undefined;
20909
+ id?: string | undefined;
20910
+ key?: string | undefined;
20634
20911
  }[] | undefined;
20635
20912
  reverse?: boolean | undefined;
20636
20913
  alignment?: {
@@ -20893,6 +21170,8 @@ export declare const BlockConfig: {
20893
21170
  [x: string]: any;
20894
21171
  } | undefined;
20895
21172
  }[] | undefined;
21173
+ id?: string | undefined;
21174
+ key?: string | undefined;
20896
21175
  }[] | undefined;
20897
21176
  height?: number | undefined;
20898
21177
  } & {
@@ -21055,6 +21334,8 @@ export declare const BlockConfig: {
21055
21334
  [x: string]: any;
21056
21335
  } | undefined;
21057
21336
  }[] | undefined;
21337
+ id?: string | undefined;
21338
+ key?: string | undefined;
21058
21339
  }[] & ({
21059
21340
  type?: BlockType | undefined;
21060
21341
  size?: {
@@ -21214,6 +21495,8 @@ export declare const BlockConfig: {
21214
21495
  [x: string]: any;
21215
21496
  } | undefined;
21216
21497
  }[] | undefined;
21498
+ id?: string | undefined;
21499
+ key?: string | undefined;
21217
21500
  } & {
21218
21501
  type?: BlockType | undefined;
21219
21502
  size?: ({
@@ -21366,6 +21649,8 @@ export declare const BlockConfig: {
21366
21649
  [x: string]: any;
21367
21650
  } | undefined;
21368
21651
  }[] | undefined;
21652
+ id?: string | undefined;
21653
+ key?: string | undefined;
21369
21654
  }[] | undefined;
21370
21655
  height?: number | undefined;
21371
21656
  } | undefined;
@@ -21419,6 +21704,8 @@ export declare const BlockConfig: {
21419
21704
  [x: string]: any;
21420
21705
  } | undefined;
21421
21706
  }[] | undefined;
21707
+ id?: string | undefined;
21708
+ key?: string | undefined;
21422
21709
  }[] | undefined;
21423
21710
  reverse?: boolean | undefined;
21424
21711
  alignment?: {
@@ -21681,6 +21968,8 @@ export declare const BlockConfig: {
21681
21968
  [x: string]: any;
21682
21969
  } | undefined;
21683
21970
  }[] | undefined;
21971
+ id?: string | undefined;
21972
+ key?: string | undefined;
21684
21973
  }[] | undefined;
21685
21974
  height?: number | undefined;
21686
21975
  } & {
@@ -21843,6 +22132,8 @@ export declare const BlockConfig: {
21843
22132
  [x: string]: any;
21844
22133
  } | undefined;
21845
22134
  }[] | undefined;
22135
+ id?: string | undefined;
22136
+ key?: string | undefined;
21846
22137
  }[] & ({
21847
22138
  type?: BlockType | undefined;
21848
22139
  size?: {
@@ -22002,6 +22293,8 @@ export declare const BlockConfig: {
22002
22293
  [x: string]: any;
22003
22294
  } | undefined;
22004
22295
  }[] | undefined;
22296
+ id?: string | undefined;
22297
+ key?: string | undefined;
22005
22298
  } & any & { [K_30 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_31 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
22006
22299
  type?: BlockType | undefined;
22007
22300
  size?: {
@@ -22161,6 +22454,8 @@ export declare const BlockConfig: {
22161
22454
  [x: string]: any;
22162
22455
  } | undefined;
22163
22456
  }[] | undefined;
22457
+ id?: string | undefined;
22458
+ key?: string | undefined;
22164
22459
  }[]>]: never; }) | undefined;
22165
22460
  height?: number | undefined;
22166
22461
  } & { [K_32 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -22301,6 +22596,8 @@ export declare const BlockConfig: {
22301
22596
  [x: string]: any;
22302
22597
  } | undefined;
22303
22598
  }[] | undefined;
22599
+ id?: string | undefined;
22600
+ key?: string | undefined;
22304
22601
  }[] | undefined;
22305
22602
  reverse?: boolean | undefined;
22306
22603
  alignment?: {
@@ -22484,6 +22781,8 @@ export declare const BlockConfig: {
22484
22781
  [x: string]: any;
22485
22782
  } | undefined;
22486
22783
  }[] | undefined;
22784
+ id?: string | undefined;
22785
+ key?: string | undefined;
22487
22786
  }[] & ({
22488
22787
  type?: BlockType | undefined;
22489
22788
  size?: {
@@ -22643,6 +22942,8 @@ export declare const BlockConfig: {
22643
22942
  [x: string]: any;
22644
22943
  } | undefined;
22645
22944
  }[] | undefined;
22945
+ id?: string | undefined;
22946
+ key?: string | undefined;
22646
22947
  } & any & { [K_33 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_34 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
22647
22948
  type?: BlockType | undefined;
22648
22949
  size?: {
@@ -22802,6 +23103,8 @@ export declare const BlockConfig: {
22802
23103
  [x: string]: any;
22803
23104
  } | undefined;
22804
23105
  }[] | undefined;
23106
+ id?: string | undefined;
23107
+ key?: string | undefined;
22805
23108
  }[]>]: never; }) | undefined;
22806
23109
  reverse?: boolean | undefined;
22807
23110
  alignment?: ({
@@ -23006,6 +23309,8 @@ export declare const BlockConfig: {
23006
23309
  [x: string]: any;
23007
23310
  } | undefined;
23008
23311
  }[]>]: never; }) | undefined;
23312
+ id?: string | undefined;
23313
+ key?: string | undefined;
23009
23314
  } & { [K_57 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_58 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
23010
23315
  type?: BlockType | undefined;
23011
23316
  size?: {
@@ -23165,6 +23470,8 @@ export declare const BlockConfig: {
23165
23470
  [x: string]: any;
23166
23471
  } | undefined;
23167
23472
  }[] | undefined;
23473
+ id?: string | undefined;
23474
+ key?: string | undefined;
23168
23475
  }[]>]: never; }) | undefined;
23169
23476
  height?: number | undefined;
23170
23477
  } & { [K_59 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -23305,6 +23612,8 @@ export declare const BlockConfig: {
23305
23612
  [x: string]: any;
23306
23613
  } | undefined;
23307
23614
  }[] | undefined;
23615
+ id?: string | undefined;
23616
+ key?: string | undefined;
23308
23617
  }[] | undefined;
23309
23618
  reverse?: boolean | undefined;
23310
23619
  alignment?: {
@@ -23488,6 +23797,8 @@ export declare const BlockConfig: {
23488
23797
  [x: string]: any;
23489
23798
  } | undefined;
23490
23799
  }[] | undefined;
23800
+ id?: string | undefined;
23801
+ key?: string | undefined;
23491
23802
  }[] & ({
23492
23803
  type?: BlockType | undefined;
23493
23804
  size?: {
@@ -23647,6 +23958,8 @@ export declare const BlockConfig: {
23647
23958
  [x: string]: any;
23648
23959
  } | undefined;
23649
23960
  }[] | undefined;
23961
+ id?: string | undefined;
23962
+ key?: string | undefined;
23650
23963
  } & {
23651
23964
  type?: BlockType | undefined;
23652
23965
  size?: ({
@@ -23799,6 +24112,8 @@ export declare const BlockConfig: {
23799
24112
  [x: string]: any;
23800
24113
  } | undefined;
23801
24114
  }[] | undefined;
24115
+ id?: string | undefined;
24116
+ key?: string | undefined;
23802
24117
  }[] | undefined;
23803
24118
  height?: number | undefined;
23804
24119
  } | undefined;
@@ -23852,6 +24167,8 @@ export declare const BlockConfig: {
23852
24167
  [x: string]: any;
23853
24168
  } | undefined;
23854
24169
  }[] | undefined;
24170
+ id?: string | undefined;
24171
+ key?: string | undefined;
23855
24172
  }[] | undefined;
23856
24173
  reverse?: boolean | undefined;
23857
24174
  alignment?: {
@@ -24114,6 +24431,8 @@ export declare const BlockConfig: {
24114
24431
  [x: string]: any;
24115
24432
  } | undefined;
24116
24433
  }[] | undefined;
24434
+ id?: string | undefined;
24435
+ key?: string | undefined;
24117
24436
  }[] | undefined;
24118
24437
  height?: number | undefined;
24119
24438
  } & {
@@ -24276,6 +24595,8 @@ export declare const BlockConfig: {
24276
24595
  [x: string]: any;
24277
24596
  } | undefined;
24278
24597
  }[] | undefined;
24598
+ id?: string | undefined;
24599
+ key?: string | undefined;
24279
24600
  }[] & ({
24280
24601
  type?: BlockType | undefined;
24281
24602
  size?: {
@@ -24435,6 +24756,8 @@ export declare const BlockConfig: {
24435
24756
  [x: string]: any;
24436
24757
  } | undefined;
24437
24758
  }[] | undefined;
24759
+ id?: string | undefined;
24760
+ key?: string | undefined;
24438
24761
  } & any & { [K_70 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_71 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
24439
24762
  type?: BlockType | undefined;
24440
24763
  size?: {
@@ -24594,6 +24917,8 @@ export declare const BlockConfig: {
24594
24917
  [x: string]: any;
24595
24918
  } | undefined;
24596
24919
  }[] | undefined;
24920
+ id?: string | undefined;
24921
+ key?: string | undefined;
24597
24922
  }[]>]: never; }) | undefined;
24598
24923
  height?: number | undefined;
24599
24924
  } & { [K_72 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -24734,6 +25059,8 @@ export declare const BlockConfig: {
24734
25059
  [x: string]: any;
24735
25060
  } | undefined;
24736
25061
  }[] | undefined;
25062
+ id?: string | undefined;
25063
+ key?: string | undefined;
24737
25064
  }[] | undefined;
24738
25065
  reverse?: boolean | undefined;
24739
25066
  alignment?: {
@@ -24917,6 +25244,8 @@ export declare const BlockConfig: {
24917
25244
  [x: string]: any;
24918
25245
  } | undefined;
24919
25246
  }[] | undefined;
25247
+ id?: string | undefined;
25248
+ key?: string | undefined;
24920
25249
  }[] & ({
24921
25250
  type?: BlockType | undefined;
24922
25251
  size?: {
@@ -25076,6 +25405,8 @@ export declare const BlockConfig: {
25076
25405
  [x: string]: any;
25077
25406
  } | undefined;
25078
25407
  }[] | undefined;
25408
+ id?: string | undefined;
25409
+ key?: string | undefined;
25079
25410
  } & any & { [K_73 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_74 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
25080
25411
  type?: BlockType | undefined;
25081
25412
  size?: {
@@ -25235,6 +25566,8 @@ export declare const BlockConfig: {
25235
25566
  [x: string]: any;
25236
25567
  } | undefined;
25237
25568
  }[] | undefined;
25569
+ id?: string | undefined;
25570
+ key?: string | undefined;
25238
25571
  }[]>]: never; }) | undefined;
25239
25572
  reverse?: boolean | undefined;
25240
25573
  alignment?: ({
@@ -25439,6 +25772,8 @@ export declare const BlockConfig: {
25439
25772
  [x: string]: any;
25440
25773
  } | undefined;
25441
25774
  }[]>]: never; }) | undefined;
25775
+ id?: string | undefined;
25776
+ key?: string | undefined;
25442
25777
  } & { [K_97 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_98 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
25443
25778
  type?: BlockType | undefined;
25444
25779
  size?: {
@@ -25598,6 +25933,8 @@ export declare const BlockConfig: {
25598
25933
  [x: string]: any;
25599
25934
  } | undefined;
25600
25935
  }[] | undefined;
25936
+ id?: string | undefined;
25937
+ key?: string | undefined;
25601
25938
  }[]>]: never; }) | undefined;
25602
25939
  reverse?: boolean | undefined;
25603
25940
  alignment?: ({
@@ -25833,6 +26170,8 @@ export declare const BlockConfig: {
25833
26170
  [x: string]: any;
25834
26171
  } | undefined;
25835
26172
  }[]>]: never; }) | undefined;
26173
+ id?: string | undefined;
26174
+ key?: string | undefined;
25836
26175
  } & { [K_122 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_123 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
25837
26176
  type?: BlockType | undefined;
25838
26177
  size?: {
@@ -25992,6 +26331,8 @@ export declare const BlockConfig: {
25992
26331
  [x: string]: any;
25993
26332
  } | undefined;
25994
26333
  }[] | undefined;
26334
+ id?: string | undefined;
26335
+ key?: string | undefined;
25995
26336
  }[]>]: never; }) | undefined;
25996
26337
  height?: number | undefined;
25997
26338
  } & { [K_124 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -26132,6 +26473,8 @@ export declare const BlockConfig: {
26132
26473
  [x: string]: any;
26133
26474
  } | undefined;
26134
26475
  }[] | undefined;
26476
+ id?: string | undefined;
26477
+ key?: string | undefined;
26135
26478
  }[] | undefined;
26136
26479
  reverse?: boolean | undefined;
26137
26480
  alignment?: {
@@ -26315,6 +26658,8 @@ export declare const BlockConfig: {
26315
26658
  [x: string]: any;
26316
26659
  } | undefined;
26317
26660
  }[] | undefined;
26661
+ id?: string | undefined;
26662
+ key?: string | undefined;
26318
26663
  }[] & ({
26319
26664
  type?: BlockType | undefined;
26320
26665
  size?: {
@@ -26474,6 +26819,8 @@ export declare const BlockConfig: {
26474
26819
  [x: string]: any;
26475
26820
  } | undefined;
26476
26821
  }[] | undefined;
26822
+ id?: string | undefined;
26823
+ key?: string | undefined;
26477
26824
  } & {
26478
26825
  type?: BlockType | undefined;
26479
26826
  size?: ({
@@ -26644,6 +26991,8 @@ export declare const BlockConfig: {
26644
26991
  [x: string]: any;
26645
26992
  } | undefined;
26646
26993
  }[] | undefined;
26994
+ id?: string | undefined;
26995
+ key?: string | undefined;
26647
26996
  }[] | undefined;
26648
26997
  height?: number | undefined;
26649
26998
  } | undefined;
@@ -26697,6 +27046,8 @@ export declare const BlockConfig: {
26697
27046
  [x: string]: any;
26698
27047
  } | undefined;
26699
27048
  }[] | undefined;
27049
+ id?: string | undefined;
27050
+ key?: string | undefined;
26700
27051
  }[] | undefined;
26701
27052
  reverse?: boolean | undefined;
26702
27053
  alignment?: {
@@ -26959,6 +27310,8 @@ export declare const BlockConfig: {
26959
27310
  [x: string]: any;
26960
27311
  } | undefined;
26961
27312
  }[] | undefined;
27313
+ id?: string | undefined;
27314
+ key?: string | undefined;
26962
27315
  }[] | undefined;
26963
27316
  height?: number | undefined;
26964
27317
  } & {
@@ -27121,6 +27474,8 @@ export declare const BlockConfig: {
27121
27474
  [x: string]: any;
27122
27475
  } | undefined;
27123
27476
  }[] | undefined;
27477
+ id?: string | undefined;
27478
+ key?: string | undefined;
27124
27479
  }[] & ({
27125
27480
  type?: BlockType | undefined;
27126
27481
  size?: {
@@ -27280,6 +27635,8 @@ export declare const BlockConfig: {
27280
27635
  [x: string]: any;
27281
27636
  } | undefined;
27282
27637
  }[] | undefined;
27638
+ id?: string | undefined;
27639
+ key?: string | undefined;
27283
27640
  } & {
27284
27641
  type?: BlockType | undefined;
27285
27642
  size?: ({
@@ -27432,6 +27789,8 @@ export declare const BlockConfig: {
27432
27789
  [x: string]: any;
27433
27790
  } | undefined;
27434
27791
  }[] | undefined;
27792
+ id?: string | undefined;
27793
+ key?: string | undefined;
27435
27794
  }[] | undefined;
27436
27795
  height?: number | undefined;
27437
27796
  } | undefined;
@@ -27485,6 +27844,8 @@ export declare const BlockConfig: {
27485
27844
  [x: string]: any;
27486
27845
  } | undefined;
27487
27846
  }[] | undefined;
27847
+ id?: string | undefined;
27848
+ key?: string | undefined;
27488
27849
  }[] | undefined;
27489
27850
  reverse?: boolean | undefined;
27490
27851
  alignment?: {
@@ -27747,6 +28108,8 @@ export declare const BlockConfig: {
27747
28108
  [x: string]: any;
27748
28109
  } | undefined;
27749
28110
  }[] | undefined;
28111
+ id?: string | undefined;
28112
+ key?: string | undefined;
27750
28113
  }[] | undefined;
27751
28114
  height?: number | undefined;
27752
28115
  } & {
@@ -27909,6 +28272,8 @@ export declare const BlockConfig: {
27909
28272
  [x: string]: any;
27910
28273
  } | undefined;
27911
28274
  }[] | undefined;
28275
+ id?: string | undefined;
28276
+ key?: string | undefined;
27912
28277
  }[] & ({
27913
28278
  type?: BlockType | undefined;
27914
28279
  size?: {
@@ -28068,6 +28433,8 @@ export declare const BlockConfig: {
28068
28433
  [x: string]: any;
28069
28434
  } | undefined;
28070
28435
  }[] | undefined;
28436
+ id?: string | undefined;
28437
+ key?: string | undefined;
28071
28438
  } & any & { [K_145 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_146 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
28072
28439
  type?: BlockType | undefined;
28073
28440
  size?: {
@@ -28227,6 +28594,8 @@ export declare const BlockConfig: {
28227
28594
  [x: string]: any;
28228
28595
  } | undefined;
28229
28596
  }[] | undefined;
28597
+ id?: string | undefined;
28598
+ key?: string | undefined;
28230
28599
  }[]>]: never; }) | undefined;
28231
28600
  height?: number | undefined;
28232
28601
  } & { [K_147 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -28367,6 +28736,8 @@ export declare const BlockConfig: {
28367
28736
  [x: string]: any;
28368
28737
  } | undefined;
28369
28738
  }[] | undefined;
28739
+ id?: string | undefined;
28740
+ key?: string | undefined;
28370
28741
  }[] | undefined;
28371
28742
  reverse?: boolean | undefined;
28372
28743
  alignment?: {
@@ -28550,6 +28921,8 @@ export declare const BlockConfig: {
28550
28921
  [x: string]: any;
28551
28922
  } | undefined;
28552
28923
  }[] | undefined;
28924
+ id?: string | undefined;
28925
+ key?: string | undefined;
28553
28926
  }[] & ({
28554
28927
  type?: BlockType | undefined;
28555
28928
  size?: {
@@ -28709,6 +29082,8 @@ export declare const BlockConfig: {
28709
29082
  [x: string]: any;
28710
29083
  } | undefined;
28711
29084
  }[] | undefined;
29085
+ id?: string | undefined;
29086
+ key?: string | undefined;
28712
29087
  } & any & { [K_148 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_149 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
28713
29088
  type?: BlockType | undefined;
28714
29089
  size?: {
@@ -28868,6 +29243,8 @@ export declare const BlockConfig: {
28868
29243
  [x: string]: any;
28869
29244
  } | undefined;
28870
29245
  }[] | undefined;
29246
+ id?: string | undefined;
29247
+ key?: string | undefined;
28871
29248
  }[]>]: never; }) | undefined;
28872
29249
  reverse?: boolean | undefined;
28873
29250
  alignment?: ({
@@ -29072,6 +29449,8 @@ export declare const BlockConfig: {
29072
29449
  [x: string]: any;
29073
29450
  } | undefined;
29074
29451
  }[]>]: never; }) | undefined;
29452
+ id?: string | undefined;
29453
+ key?: string | undefined;
29075
29454
  } & { [K_172 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_173 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
29076
29455
  type?: BlockType | undefined;
29077
29456
  size?: {
@@ -29231,6 +29610,8 @@ export declare const BlockConfig: {
29231
29610
  [x: string]: any;
29232
29611
  } | undefined;
29233
29612
  }[] | undefined;
29613
+ id?: string | undefined;
29614
+ key?: string | undefined;
29234
29615
  }[]>]: never; }) | undefined;
29235
29616
  height?: number | undefined;
29236
29617
  } & { [K_174 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -29371,6 +29752,8 @@ export declare const BlockConfig: {
29371
29752
  [x: string]: any;
29372
29753
  } | undefined;
29373
29754
  }[] | undefined;
29755
+ id?: string | undefined;
29756
+ key?: string | undefined;
29374
29757
  }[] | undefined;
29375
29758
  reverse?: boolean | undefined;
29376
29759
  alignment?: {
@@ -29554,6 +29937,8 @@ export declare const BlockConfig: {
29554
29937
  [x: string]: any;
29555
29938
  } | undefined;
29556
29939
  }[] | undefined;
29940
+ id?: string | undefined;
29941
+ key?: string | undefined;
29557
29942
  }[] & ({
29558
29943
  type?: BlockType | undefined;
29559
29944
  size?: {
@@ -29713,6 +30098,8 @@ export declare const BlockConfig: {
29713
30098
  [x: string]: any;
29714
30099
  } | undefined;
29715
30100
  }[] | undefined;
30101
+ id?: string | undefined;
30102
+ key?: string | undefined;
29716
30103
  } & {
29717
30104
  type?: BlockType | undefined;
29718
30105
  size?: ({
@@ -29865,6 +30252,8 @@ export declare const BlockConfig: {
29865
30252
  [x: string]: any;
29866
30253
  } | undefined;
29867
30254
  }[] | undefined;
30255
+ id?: string | undefined;
30256
+ key?: string | undefined;
29868
30257
  }[] | undefined;
29869
30258
  height?: number | undefined;
29870
30259
  } | undefined;
@@ -29918,6 +30307,8 @@ export declare const BlockConfig: {
29918
30307
  [x: string]: any;
29919
30308
  } | undefined;
29920
30309
  }[] | undefined;
30310
+ id?: string | undefined;
30311
+ key?: string | undefined;
29921
30312
  }[] | undefined;
29922
30313
  reverse?: boolean | undefined;
29923
30314
  alignment?: {
@@ -30180,6 +30571,8 @@ export declare const BlockConfig: {
30180
30571
  [x: string]: any;
30181
30572
  } | undefined;
30182
30573
  }[] | undefined;
30574
+ id?: string | undefined;
30575
+ key?: string | undefined;
30183
30576
  }[] | undefined;
30184
30577
  height?: number | undefined;
30185
30578
  } & {
@@ -30342,6 +30735,8 @@ export declare const BlockConfig: {
30342
30735
  [x: string]: any;
30343
30736
  } | undefined;
30344
30737
  }[] | undefined;
30738
+ id?: string | undefined;
30739
+ key?: string | undefined;
30345
30740
  }[] & ({
30346
30741
  type?: BlockType | undefined;
30347
30742
  size?: {
@@ -30501,6 +30896,8 @@ export declare const BlockConfig: {
30501
30896
  [x: string]: any;
30502
30897
  } | undefined;
30503
30898
  }[] | undefined;
30899
+ id?: string | undefined;
30900
+ key?: string | undefined;
30504
30901
  } & any & { [K_185 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_186 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
30505
30902
  type?: BlockType | undefined;
30506
30903
  size?: {
@@ -30660,6 +31057,8 @@ export declare const BlockConfig: {
30660
31057
  [x: string]: any;
30661
31058
  } | undefined;
30662
31059
  }[] | undefined;
31060
+ id?: string | undefined;
31061
+ key?: string | undefined;
30663
31062
  }[]>]: never; }) | undefined;
30664
31063
  height?: number | undefined;
30665
31064
  } & { [K_187 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -30800,6 +31199,8 @@ export declare const BlockConfig: {
30800
31199
  [x: string]: any;
30801
31200
  } | undefined;
30802
31201
  }[] | undefined;
31202
+ id?: string | undefined;
31203
+ key?: string | undefined;
30803
31204
  }[] | undefined;
30804
31205
  reverse?: boolean | undefined;
30805
31206
  alignment?: {
@@ -30983,6 +31384,8 @@ export declare const BlockConfig: {
30983
31384
  [x: string]: any;
30984
31385
  } | undefined;
30985
31386
  }[] | undefined;
31387
+ id?: string | undefined;
31388
+ key?: string | undefined;
30986
31389
  }[] & ({
30987
31390
  type?: BlockType | undefined;
30988
31391
  size?: {
@@ -31142,6 +31545,8 @@ export declare const BlockConfig: {
31142
31545
  [x: string]: any;
31143
31546
  } | undefined;
31144
31547
  }[] | undefined;
31548
+ id?: string | undefined;
31549
+ key?: string | undefined;
31145
31550
  } & any & { [K_188 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_189 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
31146
31551
  type?: BlockType | undefined;
31147
31552
  size?: {
@@ -31301,6 +31706,8 @@ export declare const BlockConfig: {
31301
31706
  [x: string]: any;
31302
31707
  } | undefined;
31303
31708
  }[] | undefined;
31709
+ id?: string | undefined;
31710
+ key?: string | undefined;
31304
31711
  }[]>]: never; }) | undefined;
31305
31712
  reverse?: boolean | undefined;
31306
31713
  alignment?: ({
@@ -31505,6 +31912,8 @@ export declare const BlockConfig: {
31505
31912
  [x: string]: any;
31506
31913
  } | undefined;
31507
31914
  }[]>]: never; }) | undefined;
31915
+ id?: string | undefined;
31916
+ key?: string | undefined;
31508
31917
  } & { [K_212 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_213 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
31509
31918
  type?: BlockType | undefined;
31510
31919
  size?: {
@@ -31664,6 +32073,8 @@ export declare const BlockConfig: {
31664
32073
  [x: string]: any;
31665
32074
  } | undefined;
31666
32075
  }[] | undefined;
32076
+ id?: string | undefined;
32077
+ key?: string | undefined;
31667
32078
  }[]>]: never; }) | undefined;
31668
32079
  reverse?: boolean | undefined;
31669
32080
  alignment?: ({
@@ -31899,6 +32310,8 @@ export declare const BlockConfig: {
31899
32310
  [x: string]: any;
31900
32311
  } | undefined;
31901
32312
  }[]>]: never; }) | undefined;
32313
+ id?: string | undefined;
32314
+ key?: string | undefined;
31902
32315
  } & { [K_237 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_238 in Exclude<keyof I["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
31903
32316
  type?: BlockType | undefined;
31904
32317
  size?: {
@@ -32058,6 +32471,8 @@ export declare const BlockConfig: {
32058
32471
  [x: string]: any;
32059
32472
  } | undefined;
32060
32473
  }[] | undefined;
32474
+ id?: string | undefined;
32475
+ key?: string | undefined;
32061
32476
  }[]>]: never; }) | undefined;
32062
32477
  reverse?: boolean | undefined;
32063
32478
  alignment?: ({
@@ -32293,6 +32708,8 @@ export declare const BlockConfig: {
32293
32708
  [x: string]: any;
32294
32709
  } | undefined;
32295
32710
  }[]>]: never; }) | undefined;
32711
+ id?: string | undefined;
32712
+ key?: string | undefined;
32296
32713
  } & { [K_262 in Exclude<keyof I["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_263 in Exclude<keyof I["rootConfig"]["children"], "$type" | keyof {
32297
32714
  type?: BlockType | undefined;
32298
32715
  size?: {
@@ -32452,6 +32869,8 @@ export declare const BlockConfig: {
32452
32869
  [x: string]: any;
32453
32870
  } | undefined;
32454
32871
  }[] | undefined;
32872
+ id?: string | undefined;
32873
+ key?: string | undefined;
32455
32874
  }[]>]: never; }) | undefined;
32456
32875
  height?: number | undefined;
32457
32876
  } & { [K_264 in Exclude<keyof I["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -32592,6 +33011,8 @@ export declare const BlockConfig: {
32592
33011
  [x: string]: any;
32593
33012
  } | undefined;
32594
33013
  }[] | undefined;
33014
+ id?: string | undefined;
33015
+ key?: string | undefined;
32595
33016
  }[] | undefined;
32596
33017
  reverse?: boolean | undefined;
32597
33018
  alignment?: {
@@ -32775,6 +33196,8 @@ export declare const BlockConfig: {
32775
33196
  [x: string]: any;
32776
33197
  } | undefined;
32777
33198
  }[] | undefined;
33199
+ id?: string | undefined;
33200
+ key?: string | undefined;
32778
33201
  }[] & ({
32779
33202
  type?: BlockType | undefined;
32780
33203
  size?: {
@@ -32934,6 +33357,8 @@ export declare const BlockConfig: {
32934
33357
  [x: string]: any;
32935
33358
  } | undefined;
32936
33359
  }[] | undefined;
33360
+ id?: string | undefined;
33361
+ key?: string | undefined;
32937
33362
  } & {
32938
33363
  type?: BlockType | undefined;
32939
33364
  size?: ({
@@ -33104,6 +33529,8 @@ export declare const BlockConfig: {
33104
33529
  [x: string]: any;
33105
33530
  } | undefined;
33106
33531
  }[] | undefined;
33532
+ id?: string | undefined;
33533
+ key?: string | undefined;
33107
33534
  }[] | undefined;
33108
33535
  height?: number | undefined;
33109
33536
  } | undefined;
@@ -33157,6 +33584,8 @@ export declare const BlockConfig: {
33157
33584
  [x: string]: any;
33158
33585
  } | undefined;
33159
33586
  }[] | undefined;
33587
+ id?: string | undefined;
33588
+ key?: string | undefined;
33160
33589
  }[] | undefined;
33161
33590
  reverse?: boolean | undefined;
33162
33591
  alignment?: {
@@ -33419,6 +33848,8 @@ export declare const BlockConfig: {
33419
33848
  [x: string]: any;
33420
33849
  } | undefined;
33421
33850
  }[] | undefined;
33851
+ id?: string | undefined;
33852
+ key?: string | undefined;
33422
33853
  }[] | undefined;
33423
33854
  height?: number | undefined;
33424
33855
  } & {
@@ -33581,6 +34012,8 @@ export declare const BlockConfig: {
33581
34012
  [x: string]: any;
33582
34013
  } | undefined;
33583
34014
  }[] | undefined;
34015
+ id?: string | undefined;
34016
+ key?: string | undefined;
33584
34017
  }[] & ({
33585
34018
  type?: BlockType | undefined;
33586
34019
  size?: {
@@ -33740,6 +34173,8 @@ export declare const BlockConfig: {
33740
34173
  [x: string]: any;
33741
34174
  } | undefined;
33742
34175
  }[] | undefined;
34176
+ id?: string | undefined;
34177
+ key?: string | undefined;
33743
34178
  } & {
33744
34179
  type?: BlockType | undefined;
33745
34180
  size?: ({
@@ -33910,6 +34345,8 @@ export declare const BlockConfig: {
33910
34345
  [x: string]: any;
33911
34346
  } | undefined;
33912
34347
  }[] | undefined;
34348
+ id?: string | undefined;
34349
+ key?: string | undefined;
33913
34350
  }[] | undefined;
33914
34351
  height?: number | undefined;
33915
34352
  } | undefined;
@@ -33963,6 +34400,8 @@ export declare const BlockConfig: {
33963
34400
  [x: string]: any;
33964
34401
  } | undefined;
33965
34402
  }[] | undefined;
34403
+ id?: string | undefined;
34404
+ key?: string | undefined;
33966
34405
  }[] | undefined;
33967
34406
  reverse?: boolean | undefined;
33968
34407
  alignment?: {
@@ -34225,6 +34664,8 @@ export declare const BlockConfig: {
34225
34664
  [x: string]: any;
34226
34665
  } | undefined;
34227
34666
  }[] | undefined;
34667
+ id?: string | undefined;
34668
+ key?: string | undefined;
34228
34669
  }[] | undefined;
34229
34670
  height?: number | undefined;
34230
34671
  } & {
@@ -34387,6 +34828,8 @@ export declare const BlockConfig: {
34387
34828
  [x: string]: any;
34388
34829
  } | undefined;
34389
34830
  }[] | undefined;
34831
+ id?: string | undefined;
34832
+ key?: string | undefined;
34390
34833
  }[] & ({
34391
34834
  type?: BlockType | undefined;
34392
34835
  size?: {
@@ -34546,6 +34989,8 @@ export declare const BlockConfig: {
34546
34989
  [x: string]: any;
34547
34990
  } | undefined;
34548
34991
  }[] | undefined;
34992
+ id?: string | undefined;
34993
+ key?: string | undefined;
34549
34994
  } & {
34550
34995
  type?: BlockType | undefined;
34551
34996
  size?: ({
@@ -34698,6 +35143,8 @@ export declare const BlockConfig: {
34698
35143
  [x: string]: any;
34699
35144
  } | undefined;
34700
35145
  }[] | undefined;
35146
+ id?: string | undefined;
35147
+ key?: string | undefined;
34701
35148
  }[] | undefined;
34702
35149
  height?: number | undefined;
34703
35150
  } | undefined;
@@ -34751,6 +35198,8 @@ export declare const BlockConfig: {
34751
35198
  [x: string]: any;
34752
35199
  } | undefined;
34753
35200
  }[] | undefined;
35201
+ id?: string | undefined;
35202
+ key?: string | undefined;
34754
35203
  }[] | undefined;
34755
35204
  reverse?: boolean | undefined;
34756
35205
  alignment?: {
@@ -35013,6 +35462,8 @@ export declare const BlockConfig: {
35013
35462
  [x: string]: any;
35014
35463
  } | undefined;
35015
35464
  }[] | undefined;
35465
+ id?: string | undefined;
35466
+ key?: string | undefined;
35016
35467
  }[] | undefined;
35017
35468
  height?: number | undefined;
35018
35469
  } & {
@@ -35175,6 +35626,8 @@ export declare const BlockConfig: {
35175
35626
  [x: string]: any;
35176
35627
  } | undefined;
35177
35628
  }[] | undefined;
35629
+ id?: string | undefined;
35630
+ key?: string | undefined;
35178
35631
  }[] & ({
35179
35632
  type?: BlockType | undefined;
35180
35633
  size?: {
@@ -35334,6 +35787,8 @@ export declare const BlockConfig: {
35334
35787
  [x: string]: any;
35335
35788
  } | undefined;
35336
35789
  }[] | undefined;
35790
+ id?: string | undefined;
35791
+ key?: string | undefined;
35337
35792
  } & any & { [K_295 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_296 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
35338
35793
  type?: BlockType | undefined;
35339
35794
  size?: {
@@ -35493,6 +35948,8 @@ export declare const BlockConfig: {
35493
35948
  [x: string]: any;
35494
35949
  } | undefined;
35495
35950
  }[] | undefined;
35951
+ id?: string | undefined;
35952
+ key?: string | undefined;
35496
35953
  }[]>]: never; }) | undefined;
35497
35954
  height?: number | undefined;
35498
35955
  } & { [K_297 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -35633,6 +36090,8 @@ export declare const BlockConfig: {
35633
36090
  [x: string]: any;
35634
36091
  } | undefined;
35635
36092
  }[] | undefined;
36093
+ id?: string | undefined;
36094
+ key?: string | undefined;
35636
36095
  }[] | undefined;
35637
36096
  reverse?: boolean | undefined;
35638
36097
  alignment?: {
@@ -35816,6 +36275,8 @@ export declare const BlockConfig: {
35816
36275
  [x: string]: any;
35817
36276
  } | undefined;
35818
36277
  }[] | undefined;
36278
+ id?: string | undefined;
36279
+ key?: string | undefined;
35819
36280
  }[] & ({
35820
36281
  type?: BlockType | undefined;
35821
36282
  size?: {
@@ -35975,6 +36436,8 @@ export declare const BlockConfig: {
35975
36436
  [x: string]: any;
35976
36437
  } | undefined;
35977
36438
  }[] | undefined;
36439
+ id?: string | undefined;
36440
+ key?: string | undefined;
35978
36441
  } & any & { [K_298 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_299 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
35979
36442
  type?: BlockType | undefined;
35980
36443
  size?: {
@@ -36134,6 +36597,8 @@ export declare const BlockConfig: {
36134
36597
  [x: string]: any;
36135
36598
  } | undefined;
36136
36599
  }[] | undefined;
36600
+ id?: string | undefined;
36601
+ key?: string | undefined;
36137
36602
  }[]>]: never; }) | undefined;
36138
36603
  reverse?: boolean | undefined;
36139
36604
  alignment?: ({
@@ -36338,6 +36803,8 @@ export declare const BlockConfig: {
36338
36803
  [x: string]: any;
36339
36804
  } | undefined;
36340
36805
  }[]>]: never; }) | undefined;
36806
+ id?: string | undefined;
36807
+ key?: string | undefined;
36341
36808
  } & { [K_322 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_323 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
36342
36809
  type?: BlockType | undefined;
36343
36810
  size?: {
@@ -36497,6 +36964,8 @@ export declare const BlockConfig: {
36497
36964
  [x: string]: any;
36498
36965
  } | undefined;
36499
36966
  }[] | undefined;
36967
+ id?: string | undefined;
36968
+ key?: string | undefined;
36500
36969
  }[]>]: never; }) | undefined;
36501
36970
  height?: number | undefined;
36502
36971
  } & { [K_324 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -36637,6 +37106,8 @@ export declare const BlockConfig: {
36637
37106
  [x: string]: any;
36638
37107
  } | undefined;
36639
37108
  }[] | undefined;
37109
+ id?: string | undefined;
37110
+ key?: string | undefined;
36640
37111
  }[] | undefined;
36641
37112
  reverse?: boolean | undefined;
36642
37113
  alignment?: {
@@ -36820,6 +37291,8 @@ export declare const BlockConfig: {
36820
37291
  [x: string]: any;
36821
37292
  } | undefined;
36822
37293
  }[] | undefined;
37294
+ id?: string | undefined;
37295
+ key?: string | undefined;
36823
37296
  }[] & ({
36824
37297
  type?: BlockType | undefined;
36825
37298
  size?: {
@@ -36979,6 +37452,8 @@ export declare const BlockConfig: {
36979
37452
  [x: string]: any;
36980
37453
  } | undefined;
36981
37454
  }[] | undefined;
37455
+ id?: string | undefined;
37456
+ key?: string | undefined;
36982
37457
  } & {
36983
37458
  type?: BlockType | undefined;
36984
37459
  size?: ({
@@ -37131,6 +37606,8 @@ export declare const BlockConfig: {
37131
37606
  [x: string]: any;
37132
37607
  } | undefined;
37133
37608
  }[] | undefined;
37609
+ id?: string | undefined;
37610
+ key?: string | undefined;
37134
37611
  }[] | undefined;
37135
37612
  height?: number | undefined;
37136
37613
  } | undefined;
@@ -37184,6 +37661,8 @@ export declare const BlockConfig: {
37184
37661
  [x: string]: any;
37185
37662
  } | undefined;
37186
37663
  }[] | undefined;
37664
+ id?: string | undefined;
37665
+ key?: string | undefined;
37187
37666
  }[] | undefined;
37188
37667
  reverse?: boolean | undefined;
37189
37668
  alignment?: {
@@ -37446,6 +37925,8 @@ export declare const BlockConfig: {
37446
37925
  [x: string]: any;
37447
37926
  } | undefined;
37448
37927
  }[] | undefined;
37928
+ id?: string | undefined;
37929
+ key?: string | undefined;
37449
37930
  }[] | undefined;
37450
37931
  height?: number | undefined;
37451
37932
  } & {
@@ -37608,6 +38089,8 @@ export declare const BlockConfig: {
37608
38089
  [x: string]: any;
37609
38090
  } | undefined;
37610
38091
  }[] | undefined;
38092
+ id?: string | undefined;
38093
+ key?: string | undefined;
37611
38094
  }[] & ({
37612
38095
  type?: BlockType | undefined;
37613
38096
  size?: {
@@ -37767,6 +38250,8 @@ export declare const BlockConfig: {
37767
38250
  [x: string]: any;
37768
38251
  } | undefined;
37769
38252
  }[] | undefined;
38253
+ id?: string | undefined;
38254
+ key?: string | undefined;
37770
38255
  } & any & { [K_335 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_336 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
37771
38256
  type?: BlockType | undefined;
37772
38257
  size?: {
@@ -37926,6 +38411,8 @@ export declare const BlockConfig: {
37926
38411
  [x: string]: any;
37927
38412
  } | undefined;
37928
38413
  }[] | undefined;
38414
+ id?: string | undefined;
38415
+ key?: string | undefined;
37929
38416
  }[]>]: never; }) | undefined;
37930
38417
  height?: number | undefined;
37931
38418
  } & { [K_337 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -38066,6 +38553,8 @@ export declare const BlockConfig: {
38066
38553
  [x: string]: any;
38067
38554
  } | undefined;
38068
38555
  }[] | undefined;
38556
+ id?: string | undefined;
38557
+ key?: string | undefined;
38069
38558
  }[] | undefined;
38070
38559
  reverse?: boolean | undefined;
38071
38560
  alignment?: {
@@ -38249,6 +38738,8 @@ export declare const BlockConfig: {
38249
38738
  [x: string]: any;
38250
38739
  } | undefined;
38251
38740
  }[] | undefined;
38741
+ id?: string | undefined;
38742
+ key?: string | undefined;
38252
38743
  }[] & ({
38253
38744
  type?: BlockType | undefined;
38254
38745
  size?: {
@@ -38408,6 +38899,8 @@ export declare const BlockConfig: {
38408
38899
  [x: string]: any;
38409
38900
  } | undefined;
38410
38901
  }[] | undefined;
38902
+ id?: string | undefined;
38903
+ key?: string | undefined;
38411
38904
  } & any & { [K_338 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_339 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
38412
38905
  type?: BlockType | undefined;
38413
38906
  size?: {
@@ -38567,6 +39060,8 @@ export declare const BlockConfig: {
38567
39060
  [x: string]: any;
38568
39061
  } | undefined;
38569
39062
  }[] | undefined;
39063
+ id?: string | undefined;
39064
+ key?: string | undefined;
38570
39065
  }[]>]: never; }) | undefined;
38571
39066
  reverse?: boolean | undefined;
38572
39067
  alignment?: ({
@@ -38771,6 +39266,8 @@ export declare const BlockConfig: {
38771
39266
  [x: string]: any;
38772
39267
  } | undefined;
38773
39268
  }[]>]: never; }) | undefined;
39269
+ id?: string | undefined;
39270
+ key?: string | undefined;
38774
39271
  } & { [K_362 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_363 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
38775
39272
  type?: BlockType | undefined;
38776
39273
  size?: {
@@ -38930,6 +39427,8 @@ export declare const BlockConfig: {
38930
39427
  [x: string]: any;
38931
39428
  } | undefined;
38932
39429
  }[] | undefined;
39430
+ id?: string | undefined;
39431
+ key?: string | undefined;
38933
39432
  }[]>]: never; }) | undefined;
38934
39433
  reverse?: boolean | undefined;
38935
39434
  alignment?: ({
@@ -39165,6 +39664,8 @@ export declare const BlockConfig: {
39165
39664
  [x: string]: any;
39166
39665
  } | undefined;
39167
39666
  }[]>]: never; }) | undefined;
39667
+ id?: string | undefined;
39668
+ key?: string | undefined;
39168
39669
  } & { [K_387 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_388 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
39169
39670
  type?: BlockType | undefined;
39170
39671
  size?: {
@@ -39324,6 +39825,8 @@ export declare const BlockConfig: {
39324
39825
  [x: string]: any;
39325
39826
  } | undefined;
39326
39827
  }[] | undefined;
39828
+ id?: string | undefined;
39829
+ key?: string | undefined;
39327
39830
  }[]>]: never; }) | undefined;
39328
39831
  height?: number | undefined;
39329
39832
  } & { [K_389 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -39464,6 +39967,8 @@ export declare const BlockConfig: {
39464
39967
  [x: string]: any;
39465
39968
  } | undefined;
39466
39969
  }[] | undefined;
39970
+ id?: string | undefined;
39971
+ key?: string | undefined;
39467
39972
  }[] | undefined;
39468
39973
  reverse?: boolean | undefined;
39469
39974
  alignment?: {
@@ -39647,6 +40152,8 @@ export declare const BlockConfig: {
39647
40152
  [x: string]: any;
39648
40153
  } | undefined;
39649
40154
  }[] | undefined;
40155
+ id?: string | undefined;
40156
+ key?: string | undefined;
39650
40157
  }[] & ({
39651
40158
  type?: BlockType | undefined;
39652
40159
  size?: {
@@ -39806,6 +40313,8 @@ export declare const BlockConfig: {
39806
40313
  [x: string]: any;
39807
40314
  } | undefined;
39808
40315
  }[] | undefined;
40316
+ id?: string | undefined;
40317
+ key?: string | undefined;
39809
40318
  } & {
39810
40319
  type?: BlockType | undefined;
39811
40320
  size?: ({
@@ -39976,6 +40485,8 @@ export declare const BlockConfig: {
39976
40485
  [x: string]: any;
39977
40486
  } | undefined;
39978
40487
  }[] | undefined;
40488
+ id?: string | undefined;
40489
+ key?: string | undefined;
39979
40490
  }[] | undefined;
39980
40491
  height?: number | undefined;
39981
40492
  } | undefined;
@@ -40029,6 +40540,8 @@ export declare const BlockConfig: {
40029
40540
  [x: string]: any;
40030
40541
  } | undefined;
40031
40542
  }[] | undefined;
40543
+ id?: string | undefined;
40544
+ key?: string | undefined;
40032
40545
  }[] | undefined;
40033
40546
  reverse?: boolean | undefined;
40034
40547
  alignment?: {
@@ -40291,6 +40804,8 @@ export declare const BlockConfig: {
40291
40804
  [x: string]: any;
40292
40805
  } | undefined;
40293
40806
  }[] | undefined;
40807
+ id?: string | undefined;
40808
+ key?: string | undefined;
40294
40809
  }[] | undefined;
40295
40810
  height?: number | undefined;
40296
40811
  } & {
@@ -40453,6 +40968,8 @@ export declare const BlockConfig: {
40453
40968
  [x: string]: any;
40454
40969
  } | undefined;
40455
40970
  }[] | undefined;
40971
+ id?: string | undefined;
40972
+ key?: string | undefined;
40456
40973
  }[] & ({
40457
40974
  type?: BlockType | undefined;
40458
40975
  size?: {
@@ -40612,6 +41129,8 @@ export declare const BlockConfig: {
40612
41129
  [x: string]: any;
40613
41130
  } | undefined;
40614
41131
  }[] | undefined;
41132
+ id?: string | undefined;
41133
+ key?: string | undefined;
40615
41134
  } & {
40616
41135
  type?: BlockType | undefined;
40617
41136
  size?: ({
@@ -40764,6 +41283,8 @@ export declare const BlockConfig: {
40764
41283
  [x: string]: any;
40765
41284
  } | undefined;
40766
41285
  }[] | undefined;
41286
+ id?: string | undefined;
41287
+ key?: string | undefined;
40767
41288
  }[] | undefined;
40768
41289
  height?: number | undefined;
40769
41290
  } | undefined;
@@ -40817,6 +41338,8 @@ export declare const BlockConfig: {
40817
41338
  [x: string]: any;
40818
41339
  } | undefined;
40819
41340
  }[] | undefined;
41341
+ id?: string | undefined;
41342
+ key?: string | undefined;
40820
41343
  }[] | undefined;
40821
41344
  reverse?: boolean | undefined;
40822
41345
  alignment?: {
@@ -41079,6 +41602,8 @@ export declare const BlockConfig: {
41079
41602
  [x: string]: any;
41080
41603
  } | undefined;
41081
41604
  }[] | undefined;
41605
+ id?: string | undefined;
41606
+ key?: string | undefined;
41082
41607
  }[] | undefined;
41083
41608
  height?: number | undefined;
41084
41609
  } & {
@@ -41241,6 +41766,8 @@ export declare const BlockConfig: {
41241
41766
  [x: string]: any;
41242
41767
  } | undefined;
41243
41768
  }[] | undefined;
41769
+ id?: string | undefined;
41770
+ key?: string | undefined;
41244
41771
  }[] & ({
41245
41772
  type?: BlockType | undefined;
41246
41773
  size?: {
@@ -41400,6 +41927,8 @@ export declare const BlockConfig: {
41400
41927
  [x: string]: any;
41401
41928
  } | undefined;
41402
41929
  }[] | undefined;
41930
+ id?: string | undefined;
41931
+ key?: string | undefined;
41403
41932
  } & any & { [K_410 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_411 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
41404
41933
  type?: BlockType | undefined;
41405
41934
  size?: {
@@ -41559,6 +42088,8 @@ export declare const BlockConfig: {
41559
42088
  [x: string]: any;
41560
42089
  } | undefined;
41561
42090
  }[] | undefined;
42091
+ id?: string | undefined;
42092
+ key?: string | undefined;
41562
42093
  }[]>]: never; }) | undefined;
41563
42094
  height?: number | undefined;
41564
42095
  } & { [K_412 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -41699,6 +42230,8 @@ export declare const BlockConfig: {
41699
42230
  [x: string]: any;
41700
42231
  } | undefined;
41701
42232
  }[] | undefined;
42233
+ id?: string | undefined;
42234
+ key?: string | undefined;
41702
42235
  }[] | undefined;
41703
42236
  reverse?: boolean | undefined;
41704
42237
  alignment?: {
@@ -41882,6 +42415,8 @@ export declare const BlockConfig: {
41882
42415
  [x: string]: any;
41883
42416
  } | undefined;
41884
42417
  }[] | undefined;
42418
+ id?: string | undefined;
42419
+ key?: string | undefined;
41885
42420
  }[] & ({
41886
42421
  type?: BlockType | undefined;
41887
42422
  size?: {
@@ -42041,6 +42576,8 @@ export declare const BlockConfig: {
42041
42576
  [x: string]: any;
42042
42577
  } | undefined;
42043
42578
  }[] | undefined;
42579
+ id?: string | undefined;
42580
+ key?: string | undefined;
42044
42581
  } & any & { [K_413 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_414 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
42045
42582
  type?: BlockType | undefined;
42046
42583
  size?: {
@@ -42200,6 +42737,8 @@ export declare const BlockConfig: {
42200
42737
  [x: string]: any;
42201
42738
  } | undefined;
42202
42739
  }[] | undefined;
42740
+ id?: string | undefined;
42741
+ key?: string | undefined;
42203
42742
  }[]>]: never; }) | undefined;
42204
42743
  reverse?: boolean | undefined;
42205
42744
  alignment?: ({
@@ -42404,6 +42943,8 @@ export declare const BlockConfig: {
42404
42943
  [x: string]: any;
42405
42944
  } | undefined;
42406
42945
  }[]>]: never; }) | undefined;
42946
+ id?: string | undefined;
42947
+ key?: string | undefined;
42407
42948
  } & { [K_437 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_438 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
42408
42949
  type?: BlockType | undefined;
42409
42950
  size?: {
@@ -42563,6 +43104,8 @@ export declare const BlockConfig: {
42563
43104
  [x: string]: any;
42564
43105
  } | undefined;
42565
43106
  }[] | undefined;
43107
+ id?: string | undefined;
43108
+ key?: string | undefined;
42566
43109
  }[]>]: never; }) | undefined;
42567
43110
  height?: number | undefined;
42568
43111
  } & { [K_439 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -42703,6 +43246,8 @@ export declare const BlockConfig: {
42703
43246
  [x: string]: any;
42704
43247
  } | undefined;
42705
43248
  }[] | undefined;
43249
+ id?: string | undefined;
43250
+ key?: string | undefined;
42706
43251
  }[] | undefined;
42707
43252
  reverse?: boolean | undefined;
42708
43253
  alignment?: {
@@ -42886,6 +43431,8 @@ export declare const BlockConfig: {
42886
43431
  [x: string]: any;
42887
43432
  } | undefined;
42888
43433
  }[] | undefined;
43434
+ id?: string | undefined;
43435
+ key?: string | undefined;
42889
43436
  }[] & ({
42890
43437
  type?: BlockType | undefined;
42891
43438
  size?: {
@@ -43045,6 +43592,8 @@ export declare const BlockConfig: {
43045
43592
  [x: string]: any;
43046
43593
  } | undefined;
43047
43594
  }[] | undefined;
43595
+ id?: string | undefined;
43596
+ key?: string | undefined;
43048
43597
  } & {
43049
43598
  type?: BlockType | undefined;
43050
43599
  size?: ({
@@ -43197,6 +43746,8 @@ export declare const BlockConfig: {
43197
43746
  [x: string]: any;
43198
43747
  } | undefined;
43199
43748
  }[] | undefined;
43749
+ id?: string | undefined;
43750
+ key?: string | undefined;
43200
43751
  }[] | undefined;
43201
43752
  height?: number | undefined;
43202
43753
  } | undefined;
@@ -43250,6 +43801,8 @@ export declare const BlockConfig: {
43250
43801
  [x: string]: any;
43251
43802
  } | undefined;
43252
43803
  }[] | undefined;
43804
+ id?: string | undefined;
43805
+ key?: string | undefined;
43253
43806
  }[] | undefined;
43254
43807
  reverse?: boolean | undefined;
43255
43808
  alignment?: {
@@ -43512,6 +44065,8 @@ export declare const BlockConfig: {
43512
44065
  [x: string]: any;
43513
44066
  } | undefined;
43514
44067
  }[] | undefined;
44068
+ id?: string | undefined;
44069
+ key?: string | undefined;
43515
44070
  }[] | undefined;
43516
44071
  height?: number | undefined;
43517
44072
  } & {
@@ -43674,6 +44229,8 @@ export declare const BlockConfig: {
43674
44229
  [x: string]: any;
43675
44230
  } | undefined;
43676
44231
  }[] | undefined;
44232
+ id?: string | undefined;
44233
+ key?: string | undefined;
43677
44234
  }[] & ({
43678
44235
  type?: BlockType | undefined;
43679
44236
  size?: {
@@ -43833,6 +44390,8 @@ export declare const BlockConfig: {
43833
44390
  [x: string]: any;
43834
44391
  } | undefined;
43835
44392
  }[] | undefined;
44393
+ id?: string | undefined;
44394
+ key?: string | undefined;
43836
44395
  } & any & { [K_450 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_451 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
43837
44396
  type?: BlockType | undefined;
43838
44397
  size?: {
@@ -43992,6 +44551,8 @@ export declare const BlockConfig: {
43992
44551
  [x: string]: any;
43993
44552
  } | undefined;
43994
44553
  }[] | undefined;
44554
+ id?: string | undefined;
44555
+ key?: string | undefined;
43995
44556
  }[]>]: never; }) | undefined;
43996
44557
  height?: number | undefined;
43997
44558
  } & { [K_452 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -44132,6 +44693,8 @@ export declare const BlockConfig: {
44132
44693
  [x: string]: any;
44133
44694
  } | undefined;
44134
44695
  }[] | undefined;
44696
+ id?: string | undefined;
44697
+ key?: string | undefined;
44135
44698
  }[] | undefined;
44136
44699
  reverse?: boolean | undefined;
44137
44700
  alignment?: {
@@ -44315,6 +44878,8 @@ export declare const BlockConfig: {
44315
44878
  [x: string]: any;
44316
44879
  } | undefined;
44317
44880
  }[] | undefined;
44881
+ id?: string | undefined;
44882
+ key?: string | undefined;
44318
44883
  }[] & ({
44319
44884
  type?: BlockType | undefined;
44320
44885
  size?: {
@@ -44474,6 +45039,8 @@ export declare const BlockConfig: {
44474
45039
  [x: string]: any;
44475
45040
  } | undefined;
44476
45041
  }[] | undefined;
45042
+ id?: string | undefined;
45043
+ key?: string | undefined;
44477
45044
  } & any & { [K_453 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_454 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
44478
45045
  type?: BlockType | undefined;
44479
45046
  size?: {
@@ -44633,6 +45200,8 @@ export declare const BlockConfig: {
44633
45200
  [x: string]: any;
44634
45201
  } | undefined;
44635
45202
  }[] | undefined;
45203
+ id?: string | undefined;
45204
+ key?: string | undefined;
44636
45205
  }[]>]: never; }) | undefined;
44637
45206
  reverse?: boolean | undefined;
44638
45207
  alignment?: ({
@@ -44837,6 +45406,8 @@ export declare const BlockConfig: {
44837
45406
  [x: string]: any;
44838
45407
  } | undefined;
44839
45408
  }[]>]: never; }) | undefined;
45409
+ id?: string | undefined;
45410
+ key?: string | undefined;
44840
45411
  } & { [K_477 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_478 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
44841
45412
  type?: BlockType | undefined;
44842
45413
  size?: {
@@ -44996,6 +45567,8 @@ export declare const BlockConfig: {
44996
45567
  [x: string]: any;
44997
45568
  } | undefined;
44998
45569
  }[] | undefined;
45570
+ id?: string | undefined;
45571
+ key?: string | undefined;
44999
45572
  }[]>]: never; }) | undefined;
45000
45573
  reverse?: boolean | undefined;
45001
45574
  alignment?: ({
@@ -45231,6 +45804,8 @@ export declare const BlockConfig: {
45231
45804
  [x: string]: any;
45232
45805
  } | undefined;
45233
45806
  }[]>]: never; }) | undefined;
45807
+ id?: string | undefined;
45808
+ key?: string | undefined;
45234
45809
  } & { [K_502 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_503 in Exclude<keyof I["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
45235
45810
  type?: BlockType | undefined;
45236
45811
  size?: {
@@ -45390,6 +45965,8 @@ export declare const BlockConfig: {
45390
45965
  [x: string]: any;
45391
45966
  } | undefined;
45392
45967
  }[] | undefined;
45968
+ id?: string | undefined;
45969
+ key?: string | undefined;
45393
45970
  }[]>]: never; }) | undefined;
45394
45971
  reverse?: boolean | undefined;
45395
45972
  alignment?: ({
@@ -45625,6 +46202,8 @@ export declare const BlockConfig: {
45625
46202
  [x: string]: any;
45626
46203
  } | undefined;
45627
46204
  }[]>]: never; }) | undefined;
46205
+ id?: string | undefined;
46206
+ key?: string | undefined;
45628
46207
  } & { [K_527 in Exclude<keyof I["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_528 in Exclude<keyof I["stackConfig"]["children"], "$type" | keyof {
45629
46208
  type?: BlockType | undefined;
45630
46209
  size?: {
@@ -45784,6 +46363,8 @@ export declare const BlockConfig: {
45784
46363
  [x: string]: any;
45785
46364
  } | undefined;
45786
46365
  }[] | undefined;
46366
+ id?: string | undefined;
46367
+ key?: string | undefined;
45787
46368
  }[]>]: never; }) | undefined;
45788
46369
  reverse?: boolean | undefined;
45789
46370
  alignment?: ({
@@ -46156,6 +46737,8 @@ export declare const BlockConfig_Root: {
46156
46737
  [x: string]: any;
46157
46738
  } | undefined;
46158
46739
  }[] | undefined;
46740
+ id?: string | undefined;
46741
+ key?: string | undefined;
46159
46742
  }[] | undefined;
46160
46743
  height?: number | undefined;
46161
46744
  } & {
@@ -46318,6 +46901,8 @@ export declare const BlockConfig_Root: {
46318
46901
  [x: string]: any;
46319
46902
  } | undefined;
46320
46903
  }[] | undefined;
46904
+ id?: string | undefined;
46905
+ key?: string | undefined;
46321
46906
  }[] & ({
46322
46907
  type?: BlockType | undefined;
46323
46908
  size?: {
@@ -46477,6 +47062,8 @@ export declare const BlockConfig_Root: {
46477
47062
  [x: string]: any;
46478
47063
  } | undefined;
46479
47064
  }[] | undefined;
47065
+ id?: string | undefined;
47066
+ key?: string | undefined;
46480
47067
  } & {
46481
47068
  type?: BlockType | undefined;
46482
47069
  size?: ({
@@ -46647,6 +47234,8 @@ export declare const BlockConfig_Root: {
46647
47234
  [x: string]: any;
46648
47235
  } | undefined;
46649
47236
  }[] | undefined;
47237
+ id?: string | undefined;
47238
+ key?: string | undefined;
46650
47239
  }[] | undefined;
46651
47240
  height?: number | undefined;
46652
47241
  } | undefined;
@@ -46700,6 +47289,8 @@ export declare const BlockConfig_Root: {
46700
47289
  [x: string]: any;
46701
47290
  } | undefined;
46702
47291
  }[] | undefined;
47292
+ id?: string | undefined;
47293
+ key?: string | undefined;
46703
47294
  }[] | undefined;
46704
47295
  reverse?: boolean | undefined;
46705
47296
  alignment?: {
@@ -46962,6 +47553,8 @@ export declare const BlockConfig_Root: {
46962
47553
  [x: string]: any;
46963
47554
  } | undefined;
46964
47555
  }[] | undefined;
47556
+ id?: string | undefined;
47557
+ key?: string | undefined;
46965
47558
  }[] | undefined;
46966
47559
  height?: number | undefined;
46967
47560
  } & {
@@ -47124,6 +47717,8 @@ export declare const BlockConfig_Root: {
47124
47717
  [x: string]: any;
47125
47718
  } | undefined;
47126
47719
  }[] | undefined;
47720
+ id?: string | undefined;
47721
+ key?: string | undefined;
47127
47722
  }[] & ({
47128
47723
  type?: BlockType | undefined;
47129
47724
  size?: {
@@ -47283,6 +47878,8 @@ export declare const BlockConfig_Root: {
47283
47878
  [x: string]: any;
47284
47879
  } | undefined;
47285
47880
  }[] | undefined;
47881
+ id?: string | undefined;
47882
+ key?: string | undefined;
47286
47883
  } & {
47287
47884
  type?: BlockType | undefined;
47288
47885
  size?: ({
@@ -47453,6 +48050,8 @@ export declare const BlockConfig_Root: {
47453
48050
  [x: string]: any;
47454
48051
  } | undefined;
47455
48052
  }[] | undefined;
48053
+ id?: string | undefined;
48054
+ key?: string | undefined;
47456
48055
  }[] | undefined;
47457
48056
  height?: number | undefined;
47458
48057
  } | undefined;
@@ -47506,6 +48105,8 @@ export declare const BlockConfig_Root: {
47506
48105
  [x: string]: any;
47507
48106
  } | undefined;
47508
48107
  }[] | undefined;
48108
+ id?: string | undefined;
48109
+ key?: string | undefined;
47509
48110
  }[] | undefined;
47510
48111
  reverse?: boolean | undefined;
47511
48112
  alignment?: {
@@ -47768,6 +48369,8 @@ export declare const BlockConfig_Root: {
47768
48369
  [x: string]: any;
47769
48370
  } | undefined;
47770
48371
  }[] | undefined;
48372
+ id?: string | undefined;
48373
+ key?: string | undefined;
47771
48374
  }[] | undefined;
47772
48375
  height?: number | undefined;
47773
48376
  } & {
@@ -47930,6 +48533,8 @@ export declare const BlockConfig_Root: {
47930
48533
  [x: string]: any;
47931
48534
  } | undefined;
47932
48535
  }[] | undefined;
48536
+ id?: string | undefined;
48537
+ key?: string | undefined;
47933
48538
  }[] & ({
47934
48539
  type?: BlockType | undefined;
47935
48540
  size?: {
@@ -48089,6 +48694,8 @@ export declare const BlockConfig_Root: {
48089
48694
  [x: string]: any;
48090
48695
  } | undefined;
48091
48696
  }[] | undefined;
48697
+ id?: string | undefined;
48698
+ key?: string | undefined;
48092
48699
  } & {
48093
48700
  type?: BlockType | undefined;
48094
48701
  size?: ({
@@ -48259,6 +48866,8 @@ export declare const BlockConfig_Root: {
48259
48866
  [x: string]: any;
48260
48867
  } | undefined;
48261
48868
  }[] | undefined;
48869
+ id?: string | undefined;
48870
+ key?: string | undefined;
48262
48871
  }[] | undefined;
48263
48872
  height?: number | undefined;
48264
48873
  } | undefined;
@@ -48312,6 +48921,8 @@ export declare const BlockConfig_Root: {
48312
48921
  [x: string]: any;
48313
48922
  } | undefined;
48314
48923
  }[] | undefined;
48924
+ id?: string | undefined;
48925
+ key?: string | undefined;
48315
48926
  }[] | undefined;
48316
48927
  reverse?: boolean | undefined;
48317
48928
  alignment?: {
@@ -48574,6 +49185,8 @@ export declare const BlockConfig_Root: {
48574
49185
  [x: string]: any;
48575
49186
  } | undefined;
48576
49187
  }[] | undefined;
49188
+ id?: string | undefined;
49189
+ key?: string | undefined;
48577
49190
  }[] | undefined;
48578
49191
  height?: number | undefined;
48579
49192
  } & {
@@ -48736,6 +49349,8 @@ export declare const BlockConfig_Root: {
48736
49349
  [x: string]: any;
48737
49350
  } | undefined;
48738
49351
  }[] | undefined;
49352
+ id?: string | undefined;
49353
+ key?: string | undefined;
48739
49354
  }[] & ({
48740
49355
  type?: BlockType | undefined;
48741
49356
  size?: {
@@ -48895,6 +49510,8 @@ export declare const BlockConfig_Root: {
48895
49510
  [x: string]: any;
48896
49511
  } | undefined;
48897
49512
  }[] | undefined;
49513
+ id?: string | undefined;
49514
+ key?: string | undefined;
48898
49515
  } & {
48899
49516
  type?: BlockType | undefined;
48900
49517
  size?: ({
@@ -48985,6 +49602,8 @@ export declare const BlockConfig_Root: {
48985
49602
  [x: string]: any;
48986
49603
  } | undefined;
48987
49604
  }[] | undefined;
49605
+ id?: string | undefined;
49606
+ key?: string | undefined;
48988
49607
  }[] | undefined;
48989
49608
  height?: number | undefined;
48990
49609
  } | undefined;
@@ -49038,6 +49657,8 @@ export declare const BlockConfig_Root: {
49038
49657
  [x: string]: any;
49039
49658
  } | undefined;
49040
49659
  }[] | undefined;
49660
+ id?: string | undefined;
49661
+ key?: string | undefined;
49041
49662
  }[] | undefined;
49042
49663
  reverse?: boolean | undefined;
49043
49664
  alignment?: {
@@ -49162,6 +49783,8 @@ export declare const BlockConfig_Root: {
49162
49783
  [x: string]: any;
49163
49784
  } | undefined;
49164
49785
  }[]>]: never; }) | undefined;
49786
+ id?: string | undefined;
49787
+ key?: string | undefined;
49165
49788
  } & { [K_35 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_36 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
49166
49789
  type?: BlockType | undefined;
49167
49790
  size?: {
@@ -49321,6 +49944,8 @@ export declare const BlockConfig_Root: {
49321
49944
  [x: string]: any;
49322
49945
  } | undefined;
49323
49946
  }[] | undefined;
49947
+ id?: string | undefined;
49948
+ key?: string | undefined;
49324
49949
  }[]>]: never; }) | undefined;
49325
49950
  height?: number | undefined;
49326
49951
  } & { [K_37 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -49461,6 +50086,8 @@ export declare const BlockConfig_Root: {
49461
50086
  [x: string]: any;
49462
50087
  } | undefined;
49463
50088
  }[] | undefined;
50089
+ id?: string | undefined;
50090
+ key?: string | undefined;
49464
50091
  }[] | undefined;
49465
50092
  reverse?: boolean | undefined;
49466
50093
  alignment?: {
@@ -49644,6 +50271,8 @@ export declare const BlockConfig_Root: {
49644
50271
  [x: string]: any;
49645
50272
  } | undefined;
49646
50273
  }[] | undefined;
50274
+ id?: string | undefined;
50275
+ key?: string | undefined;
49647
50276
  }[] & ({
49648
50277
  type?: BlockType | undefined;
49649
50278
  size?: {
@@ -49803,6 +50432,8 @@ export declare const BlockConfig_Root: {
49803
50432
  [x: string]: any;
49804
50433
  } | undefined;
49805
50434
  }[] | undefined;
50435
+ id?: string | undefined;
50436
+ key?: string | undefined;
49806
50437
  } & {
49807
50438
  type?: BlockType | undefined;
49808
50439
  size?: ({
@@ -49893,6 +50524,8 @@ export declare const BlockConfig_Root: {
49893
50524
  [x: string]: any;
49894
50525
  } | undefined;
49895
50526
  }[] | undefined;
50527
+ id?: string | undefined;
50528
+ key?: string | undefined;
49896
50529
  }[] | undefined;
49897
50530
  height?: number | undefined;
49898
50531
  } | undefined;
@@ -49946,6 +50579,8 @@ export declare const BlockConfig_Root: {
49946
50579
  [x: string]: any;
49947
50580
  } | undefined;
49948
50581
  }[] | undefined;
50582
+ id?: string | undefined;
50583
+ key?: string | undefined;
49949
50584
  }[] | undefined;
49950
50585
  reverse?: boolean | undefined;
49951
50586
  alignment?: {
@@ -50070,6 +50705,8 @@ export declare const BlockConfig_Root: {
50070
50705
  [x: string]: any;
50071
50706
  } | undefined;
50072
50707
  }[]>]: never; }) | undefined;
50708
+ id?: string | undefined;
50709
+ key?: string | undefined;
50073
50710
  } & { [K_43 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_44 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
50074
50711
  type?: BlockType | undefined;
50075
50712
  size?: {
@@ -50229,6 +50866,8 @@ export declare const BlockConfig_Root: {
50229
50866
  [x: string]: any;
50230
50867
  } | undefined;
50231
50868
  }[] | undefined;
50869
+ id?: string | undefined;
50870
+ key?: string | undefined;
50232
50871
  }[]>]: never; }) | undefined;
50233
50872
  reverse?: boolean | undefined;
50234
50873
  alignment?: ({
@@ -50461,6 +51100,8 @@ export declare const BlockConfig_Root: {
50461
51100
  [x: string]: any;
50462
51101
  } | undefined;
50463
51102
  }[]>]: never; }) | undefined;
51103
+ id?: string | undefined;
51104
+ key?: string | undefined;
50464
51105
  } & { [K_68 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_69 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
50465
51106
  type?: BlockType | undefined;
50466
51107
  size?: {
@@ -50620,6 +51261,8 @@ export declare const BlockConfig_Root: {
50620
51261
  [x: string]: any;
50621
51262
  } | undefined;
50622
51263
  }[] | undefined;
51264
+ id?: string | undefined;
51265
+ key?: string | undefined;
50623
51266
  }[]>]: never; }) | undefined;
50624
51267
  height?: number | undefined;
50625
51268
  } & { [K_70 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -50760,6 +51403,8 @@ export declare const BlockConfig_Root: {
50760
51403
  [x: string]: any;
50761
51404
  } | undefined;
50762
51405
  }[] | undefined;
51406
+ id?: string | undefined;
51407
+ key?: string | undefined;
50763
51408
  }[] | undefined;
50764
51409
  reverse?: boolean | undefined;
50765
51410
  alignment?: {
@@ -50943,6 +51588,8 @@ export declare const BlockConfig_Root: {
50943
51588
  [x: string]: any;
50944
51589
  } | undefined;
50945
51590
  }[] | undefined;
51591
+ id?: string | undefined;
51592
+ key?: string | undefined;
50946
51593
  }[] & ({
50947
51594
  type?: BlockType | undefined;
50948
51595
  size?: {
@@ -51102,6 +51749,8 @@ export declare const BlockConfig_Root: {
51102
51749
  [x: string]: any;
51103
51750
  } | undefined;
51104
51751
  }[] | undefined;
51752
+ id?: string | undefined;
51753
+ key?: string | undefined;
51105
51754
  } & {
51106
51755
  type?: BlockType | undefined;
51107
51756
  size?: ({
@@ -51272,6 +51921,8 @@ export declare const BlockConfig_Root: {
51272
51921
  [x: string]: any;
51273
51922
  } | undefined;
51274
51923
  }[] | undefined;
51924
+ id?: string | undefined;
51925
+ key?: string | undefined;
51275
51926
  }[] | undefined;
51276
51927
  height?: number | undefined;
51277
51928
  } | undefined;
@@ -51325,6 +51976,8 @@ export declare const BlockConfig_Root: {
51325
51976
  [x: string]: any;
51326
51977
  } | undefined;
51327
51978
  }[] | undefined;
51979
+ id?: string | undefined;
51980
+ key?: string | undefined;
51328
51981
  }[] | undefined;
51329
51982
  reverse?: boolean | undefined;
51330
51983
  alignment?: {
@@ -51587,6 +52240,8 @@ export declare const BlockConfig_Root: {
51587
52240
  [x: string]: any;
51588
52241
  } | undefined;
51589
52242
  }[] | undefined;
52243
+ id?: string | undefined;
52244
+ key?: string | undefined;
51590
52245
  }[] | undefined;
51591
52246
  height?: number | undefined;
51592
52247
  } & {
@@ -51749,6 +52404,8 @@ export declare const BlockConfig_Root: {
51749
52404
  [x: string]: any;
51750
52405
  } | undefined;
51751
52406
  }[] | undefined;
52407
+ id?: string | undefined;
52408
+ key?: string | undefined;
51752
52409
  }[] & ({
51753
52410
  type?: BlockType | undefined;
51754
52411
  size?: {
@@ -51908,6 +52565,8 @@ export declare const BlockConfig_Root: {
51908
52565
  [x: string]: any;
51909
52566
  } | undefined;
51910
52567
  }[] | undefined;
52568
+ id?: string | undefined;
52569
+ key?: string | undefined;
51911
52570
  } & {
51912
52571
  type?: BlockType | undefined;
51913
52572
  size?: ({
@@ -51998,6 +52657,8 @@ export declare const BlockConfig_Root: {
51998
52657
  [x: string]: any;
51999
52658
  } | undefined;
52000
52659
  }[] | undefined;
52660
+ id?: string | undefined;
52661
+ key?: string | undefined;
52001
52662
  }[] | undefined;
52002
52663
  height?: number | undefined;
52003
52664
  } | undefined;
@@ -52051,6 +52712,8 @@ export declare const BlockConfig_Root: {
52051
52712
  [x: string]: any;
52052
52713
  } | undefined;
52053
52714
  }[] | undefined;
52715
+ id?: string | undefined;
52716
+ key?: string | undefined;
52054
52717
  }[] | undefined;
52055
52718
  reverse?: boolean | undefined;
52056
52719
  alignment?: {
@@ -52175,6 +52838,8 @@ export declare const BlockConfig_Root: {
52175
52838
  [x: string]: any;
52176
52839
  } | undefined;
52177
52840
  }[]>]: never; }) | undefined;
52841
+ id?: string | undefined;
52842
+ key?: string | undefined;
52178
52843
  } & { [K_86 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_87 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
52179
52844
  type?: BlockType | undefined;
52180
52845
  size?: {
@@ -52334,6 +52999,8 @@ export declare const BlockConfig_Root: {
52334
52999
  [x: string]: any;
52335
53000
  } | undefined;
52336
53001
  }[] | undefined;
53002
+ id?: string | undefined;
53003
+ key?: string | undefined;
52337
53004
  }[]>]: never; }) | undefined;
52338
53005
  height?: number | undefined;
52339
53006
  } & { [K_88 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -52474,6 +53141,8 @@ export declare const BlockConfig_Root: {
52474
53141
  [x: string]: any;
52475
53142
  } | undefined;
52476
53143
  }[] | undefined;
53144
+ id?: string | undefined;
53145
+ key?: string | undefined;
52477
53146
  }[] | undefined;
52478
53147
  reverse?: boolean | undefined;
52479
53148
  alignment?: {
@@ -52657,6 +53326,8 @@ export declare const BlockConfig_Root: {
52657
53326
  [x: string]: any;
52658
53327
  } | undefined;
52659
53328
  }[] | undefined;
53329
+ id?: string | undefined;
53330
+ key?: string | undefined;
52660
53331
  }[] & ({
52661
53332
  type?: BlockType | undefined;
52662
53333
  size?: {
@@ -52816,6 +53487,8 @@ export declare const BlockConfig_Root: {
52816
53487
  [x: string]: any;
52817
53488
  } | undefined;
52818
53489
  }[] | undefined;
53490
+ id?: string | undefined;
53491
+ key?: string | undefined;
52819
53492
  } & {
52820
53493
  type?: BlockType | undefined;
52821
53494
  size?: ({
@@ -52906,6 +53579,8 @@ export declare const BlockConfig_Root: {
52906
53579
  [x: string]: any;
52907
53580
  } | undefined;
52908
53581
  }[] | undefined;
53582
+ id?: string | undefined;
53583
+ key?: string | undefined;
52909
53584
  }[] | undefined;
52910
53585
  height?: number | undefined;
52911
53586
  } | undefined;
@@ -52959,6 +53634,8 @@ export declare const BlockConfig_Root: {
52959
53634
  [x: string]: any;
52960
53635
  } | undefined;
52961
53636
  }[] | undefined;
53637
+ id?: string | undefined;
53638
+ key?: string | undefined;
52962
53639
  }[] | undefined;
52963
53640
  reverse?: boolean | undefined;
52964
53641
  alignment?: {
@@ -53083,6 +53760,8 @@ export declare const BlockConfig_Root: {
53083
53760
  [x: string]: any;
53084
53761
  } | undefined;
53085
53762
  }[]>]: never; }) | undefined;
53763
+ id?: string | undefined;
53764
+ key?: string | undefined;
53086
53765
  } & { [K_94 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_95 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
53087
53766
  type?: BlockType | undefined;
53088
53767
  size?: {
@@ -53242,6 +53921,8 @@ export declare const BlockConfig_Root: {
53242
53921
  [x: string]: any;
53243
53922
  } | undefined;
53244
53923
  }[] | undefined;
53924
+ id?: string | undefined;
53925
+ key?: string | undefined;
53245
53926
  }[]>]: never; }) | undefined;
53246
53927
  reverse?: boolean | undefined;
53247
53928
  alignment?: ({
@@ -53474,6 +54155,8 @@ export declare const BlockConfig_Root: {
53474
54155
  [x: string]: any;
53475
54156
  } | undefined;
53476
54157
  }[]>]: never; }) | undefined;
54158
+ id?: string | undefined;
54159
+ key?: string | undefined;
53477
54160
  } & { [K_119 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_120 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
53478
54161
  type?: BlockType | undefined;
53479
54162
  size?: {
@@ -53633,6 +54316,8 @@ export declare const BlockConfig_Root: {
53633
54316
  [x: string]: any;
53634
54317
  } | undefined;
53635
54318
  }[] | undefined;
54319
+ id?: string | undefined;
54320
+ key?: string | undefined;
53636
54321
  }[]>]: never; }) | undefined;
53637
54322
  reverse?: boolean | undefined;
53638
54323
  alignment?: ({
@@ -53868,6 +54553,8 @@ export declare const BlockConfig_Root: {
53868
54553
  [x: string]: any;
53869
54554
  } | undefined;
53870
54555
  }[]>]: never; }) | undefined;
54556
+ id?: string | undefined;
54557
+ key?: string | undefined;
53871
54558
  } & { [K_144 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_145 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
53872
54559
  type?: BlockType | undefined;
53873
54560
  size?: {
@@ -54027,6 +54714,8 @@ export declare const BlockConfig_Root: {
54027
54714
  [x: string]: any;
54028
54715
  } | undefined;
54029
54716
  }[] | undefined;
54717
+ id?: string | undefined;
54718
+ key?: string | undefined;
54030
54719
  }[]>]: never; }) | undefined;
54031
54720
  height?: number | undefined;
54032
54721
  } & { [K_146 in Exclude<keyof I["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -54167,6 +54856,8 @@ export declare const BlockConfig_Root: {
54167
54856
  [x: string]: any;
54168
54857
  } | undefined;
54169
54858
  }[] | undefined;
54859
+ id?: string | undefined;
54860
+ key?: string | undefined;
54170
54861
  }[] | undefined;
54171
54862
  reverse?: boolean | undefined;
54172
54863
  alignment?: {
@@ -54350,6 +55041,8 @@ export declare const BlockConfig_Root: {
54350
55041
  [x: string]: any;
54351
55042
  } | undefined;
54352
55043
  }[] | undefined;
55044
+ id?: string | undefined;
55045
+ key?: string | undefined;
54353
55046
  }[] & ({
54354
55047
  type?: BlockType | undefined;
54355
55048
  size?: {
@@ -54509,6 +55202,8 @@ export declare const BlockConfig_Root: {
54509
55202
  [x: string]: any;
54510
55203
  } | undefined;
54511
55204
  }[] | undefined;
55205
+ id?: string | undefined;
55206
+ key?: string | undefined;
54512
55207
  } & {
54513
55208
  type?: BlockType | undefined;
54514
55209
  size?: ({
@@ -54679,6 +55374,8 @@ export declare const BlockConfig_Root: {
54679
55374
  [x: string]: any;
54680
55375
  } | undefined;
54681
55376
  }[] | undefined;
55377
+ id?: string | undefined;
55378
+ key?: string | undefined;
54682
55379
  }[] | undefined;
54683
55380
  height?: number | undefined;
54684
55381
  } | undefined;
@@ -54732,6 +55429,8 @@ export declare const BlockConfig_Root: {
54732
55429
  [x: string]: any;
54733
55430
  } | undefined;
54734
55431
  }[] | undefined;
55432
+ id?: string | undefined;
55433
+ key?: string | undefined;
54735
55434
  }[] | undefined;
54736
55435
  reverse?: boolean | undefined;
54737
55436
  alignment?: {
@@ -54994,6 +55693,8 @@ export declare const BlockConfig_Root: {
54994
55693
  [x: string]: any;
54995
55694
  } | undefined;
54996
55695
  }[] | undefined;
55696
+ id?: string | undefined;
55697
+ key?: string | undefined;
54997
55698
  }[] | undefined;
54998
55699
  height?: number | undefined;
54999
55700
  } & {
@@ -55156,6 +55857,8 @@ export declare const BlockConfig_Root: {
55156
55857
  [x: string]: any;
55157
55858
  } | undefined;
55158
55859
  }[] | undefined;
55860
+ id?: string | undefined;
55861
+ key?: string | undefined;
55159
55862
  }[] & ({
55160
55863
  type?: BlockType | undefined;
55161
55864
  size?: {
@@ -55315,6 +56018,8 @@ export declare const BlockConfig_Root: {
55315
56018
  [x: string]: any;
55316
56019
  } | undefined;
55317
56020
  }[] | undefined;
56021
+ id?: string | undefined;
56022
+ key?: string | undefined;
55318
56023
  } & {
55319
56024
  type?: BlockType | undefined;
55320
56025
  size?: ({
@@ -55485,6 +56190,8 @@ export declare const BlockConfig_Root: {
55485
56190
  [x: string]: any;
55486
56191
  } | undefined;
55487
56192
  }[] | undefined;
56193
+ id?: string | undefined;
56194
+ key?: string | undefined;
55488
56195
  }[] | undefined;
55489
56196
  height?: number | undefined;
55490
56197
  } | undefined;
@@ -55538,6 +56245,8 @@ export declare const BlockConfig_Root: {
55538
56245
  [x: string]: any;
55539
56246
  } | undefined;
55540
56247
  }[] | undefined;
56248
+ id?: string | undefined;
56249
+ key?: string | undefined;
55541
56250
  }[] | undefined;
55542
56251
  reverse?: boolean | undefined;
55543
56252
  alignment?: {
@@ -55800,6 +56509,8 @@ export declare const BlockConfig_Root: {
55800
56509
  [x: string]: any;
55801
56510
  } | undefined;
55802
56511
  }[] | undefined;
56512
+ id?: string | undefined;
56513
+ key?: string | undefined;
55803
56514
  }[] | undefined;
55804
56515
  height?: number | undefined;
55805
56516
  } & {
@@ -55962,6 +56673,8 @@ export declare const BlockConfig_Root: {
55962
56673
  [x: string]: any;
55963
56674
  } | undefined;
55964
56675
  }[] | undefined;
56676
+ id?: string | undefined;
56677
+ key?: string | undefined;
55965
56678
  }[] & ({
55966
56679
  type?: BlockType | undefined;
55967
56680
  size?: {
@@ -56121,6 +56834,8 @@ export declare const BlockConfig_Root: {
56121
56834
  [x: string]: any;
56122
56835
  } | undefined;
56123
56836
  }[] | undefined;
56837
+ id?: string | undefined;
56838
+ key?: string | undefined;
56124
56839
  } & {
56125
56840
  type?: BlockType | undefined;
56126
56841
  size?: ({
@@ -56211,6 +56926,8 @@ export declare const BlockConfig_Root: {
56211
56926
  [x: string]: any;
56212
56927
  } | undefined;
56213
56928
  }[] | undefined;
56929
+ id?: string | undefined;
56930
+ key?: string | undefined;
56214
56931
  }[] | undefined;
56215
56932
  height?: number | undefined;
56216
56933
  } | undefined;
@@ -56264,6 +56981,8 @@ export declare const BlockConfig_Root: {
56264
56981
  [x: string]: any;
56265
56982
  } | undefined;
56266
56983
  }[] | undefined;
56984
+ id?: string | undefined;
56985
+ key?: string | undefined;
56267
56986
  }[] | undefined;
56268
56987
  reverse?: boolean | undefined;
56269
56988
  alignment?: {
@@ -56388,6 +57107,8 @@ export declare const BlockConfig_Root: {
56388
57107
  [x: string]: any;
56389
57108
  } | undefined;
56390
57109
  }[]>]: never; }) | undefined;
57110
+ id?: string | undefined;
57111
+ key?: string | undefined;
56391
57112
  } & { [K_172 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_173 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
56392
57113
  type?: BlockType | undefined;
56393
57114
  size?: {
@@ -56547,6 +57268,8 @@ export declare const BlockConfig_Root: {
56547
57268
  [x: string]: any;
56548
57269
  } | undefined;
56549
57270
  }[] | undefined;
57271
+ id?: string | undefined;
57272
+ key?: string | undefined;
56550
57273
  }[]>]: never; }) | undefined;
56551
57274
  height?: number | undefined;
56552
57275
  } & { [K_174 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -56687,6 +57410,8 @@ export declare const BlockConfig_Root: {
56687
57410
  [x: string]: any;
56688
57411
  } | undefined;
56689
57412
  }[] | undefined;
57413
+ id?: string | undefined;
57414
+ key?: string | undefined;
56690
57415
  }[] | undefined;
56691
57416
  reverse?: boolean | undefined;
56692
57417
  alignment?: {
@@ -56870,6 +57595,8 @@ export declare const BlockConfig_Root: {
56870
57595
  [x: string]: any;
56871
57596
  } | undefined;
56872
57597
  }[] | undefined;
57598
+ id?: string | undefined;
57599
+ key?: string | undefined;
56873
57600
  }[] & ({
56874
57601
  type?: BlockType | undefined;
56875
57602
  size?: {
@@ -57029,6 +57756,8 @@ export declare const BlockConfig_Root: {
57029
57756
  [x: string]: any;
57030
57757
  } | undefined;
57031
57758
  }[] | undefined;
57759
+ id?: string | undefined;
57760
+ key?: string | undefined;
57032
57761
  } & {
57033
57762
  type?: BlockType | undefined;
57034
57763
  size?: ({
@@ -57119,6 +57848,8 @@ export declare const BlockConfig_Root: {
57119
57848
  [x: string]: any;
57120
57849
  } | undefined;
57121
57850
  }[] | undefined;
57851
+ id?: string | undefined;
57852
+ key?: string | undefined;
57122
57853
  }[] | undefined;
57123
57854
  height?: number | undefined;
57124
57855
  } | undefined;
@@ -57172,6 +57903,8 @@ export declare const BlockConfig_Root: {
57172
57903
  [x: string]: any;
57173
57904
  } | undefined;
57174
57905
  }[] | undefined;
57906
+ id?: string | undefined;
57907
+ key?: string | undefined;
57175
57908
  }[] | undefined;
57176
57909
  reverse?: boolean | undefined;
57177
57910
  alignment?: {
@@ -57296,6 +58029,8 @@ export declare const BlockConfig_Root: {
57296
58029
  [x: string]: any;
57297
58030
  } | undefined;
57298
58031
  }[]>]: never; }) | undefined;
58032
+ id?: string | undefined;
58033
+ key?: string | undefined;
57299
58034
  } & { [K_180 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_181 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
57300
58035
  type?: BlockType | undefined;
57301
58036
  size?: {
@@ -57455,6 +58190,8 @@ export declare const BlockConfig_Root: {
57455
58190
  [x: string]: any;
57456
58191
  } | undefined;
57457
58192
  }[] | undefined;
58193
+ id?: string | undefined;
58194
+ key?: string | undefined;
57458
58195
  }[]>]: never; }) | undefined;
57459
58196
  reverse?: boolean | undefined;
57460
58197
  alignment?: ({
@@ -57687,6 +58424,8 @@ export declare const BlockConfig_Root: {
57687
58424
  [x: string]: any;
57688
58425
  } | undefined;
57689
58426
  }[]>]: never; }) | undefined;
58427
+ id?: string | undefined;
58428
+ key?: string | undefined;
57690
58429
  } & { [K_205 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_206 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
57691
58430
  type?: BlockType | undefined;
57692
58431
  size?: {
@@ -57846,6 +58585,8 @@ export declare const BlockConfig_Root: {
57846
58585
  [x: string]: any;
57847
58586
  } | undefined;
57848
58587
  }[] | undefined;
58588
+ id?: string | undefined;
58589
+ key?: string | undefined;
57849
58590
  }[]>]: never; }) | undefined;
57850
58591
  height?: number | undefined;
57851
58592
  } & { [K_207 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -57986,6 +58727,8 @@ export declare const BlockConfig_Root: {
57986
58727
  [x: string]: any;
57987
58728
  } | undefined;
57988
58729
  }[] | undefined;
58730
+ id?: string | undefined;
58731
+ key?: string | undefined;
57989
58732
  }[] | undefined;
57990
58733
  reverse?: boolean | undefined;
57991
58734
  alignment?: {
@@ -58169,6 +58912,8 @@ export declare const BlockConfig_Root: {
58169
58912
  [x: string]: any;
58170
58913
  } | undefined;
58171
58914
  }[] | undefined;
58915
+ id?: string | undefined;
58916
+ key?: string | undefined;
58172
58917
  }[] & ({
58173
58918
  type?: BlockType | undefined;
58174
58919
  size?: {
@@ -58328,6 +59073,8 @@ export declare const BlockConfig_Root: {
58328
59073
  [x: string]: any;
58329
59074
  } | undefined;
58330
59075
  }[] | undefined;
59076
+ id?: string | undefined;
59077
+ key?: string | undefined;
58331
59078
  } & {
58332
59079
  type?: BlockType | undefined;
58333
59080
  size?: ({
@@ -58498,6 +59245,8 @@ export declare const BlockConfig_Root: {
58498
59245
  [x: string]: any;
58499
59246
  } | undefined;
58500
59247
  }[] | undefined;
59248
+ id?: string | undefined;
59249
+ key?: string | undefined;
58501
59250
  }[] | undefined;
58502
59251
  height?: number | undefined;
58503
59252
  } | undefined;
@@ -58551,6 +59300,8 @@ export declare const BlockConfig_Root: {
58551
59300
  [x: string]: any;
58552
59301
  } | undefined;
58553
59302
  }[] | undefined;
59303
+ id?: string | undefined;
59304
+ key?: string | undefined;
58554
59305
  }[] | undefined;
58555
59306
  reverse?: boolean | undefined;
58556
59307
  alignment?: {
@@ -58813,6 +59564,8 @@ export declare const BlockConfig_Root: {
58813
59564
  [x: string]: any;
58814
59565
  } | undefined;
58815
59566
  }[] | undefined;
59567
+ id?: string | undefined;
59568
+ key?: string | undefined;
58816
59569
  }[] | undefined;
58817
59570
  height?: number | undefined;
58818
59571
  } & {
@@ -58975,6 +59728,8 @@ export declare const BlockConfig_Root: {
58975
59728
  [x: string]: any;
58976
59729
  } | undefined;
58977
59730
  }[] | undefined;
59731
+ id?: string | undefined;
59732
+ key?: string | undefined;
58978
59733
  }[] & ({
58979
59734
  type?: BlockType | undefined;
58980
59735
  size?: {
@@ -59134,6 +59889,8 @@ export declare const BlockConfig_Root: {
59134
59889
  [x: string]: any;
59135
59890
  } | undefined;
59136
59891
  }[] | undefined;
59892
+ id?: string | undefined;
59893
+ key?: string | undefined;
59137
59894
  } & {
59138
59895
  type?: BlockType | undefined;
59139
59896
  size?: ({
@@ -59224,6 +59981,8 @@ export declare const BlockConfig_Root: {
59224
59981
  [x: string]: any;
59225
59982
  } | undefined;
59226
59983
  }[] | undefined;
59984
+ id?: string | undefined;
59985
+ key?: string | undefined;
59227
59986
  }[] | undefined;
59228
59987
  height?: number | undefined;
59229
59988
  } | undefined;
@@ -59277,6 +60036,8 @@ export declare const BlockConfig_Root: {
59277
60036
  [x: string]: any;
59278
60037
  } | undefined;
59279
60038
  }[] | undefined;
60039
+ id?: string | undefined;
60040
+ key?: string | undefined;
59280
60041
  }[] | undefined;
59281
60042
  reverse?: boolean | undefined;
59282
60043
  alignment?: {
@@ -59401,6 +60162,8 @@ export declare const BlockConfig_Root: {
59401
60162
  [x: string]: any;
59402
60163
  } | undefined;
59403
60164
  }[]>]: never; }) | undefined;
60165
+ id?: string | undefined;
60166
+ key?: string | undefined;
59404
60167
  } & { [K_223 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_224 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
59405
60168
  type?: BlockType | undefined;
59406
60169
  size?: {
@@ -59560,6 +60323,8 @@ export declare const BlockConfig_Root: {
59560
60323
  [x: string]: any;
59561
60324
  } | undefined;
59562
60325
  }[] | undefined;
60326
+ id?: string | undefined;
60327
+ key?: string | undefined;
59563
60328
  }[]>]: never; }) | undefined;
59564
60329
  height?: number | undefined;
59565
60330
  } & { [K_225 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -59700,6 +60465,8 @@ export declare const BlockConfig_Root: {
59700
60465
  [x: string]: any;
59701
60466
  } | undefined;
59702
60467
  }[] | undefined;
60468
+ id?: string | undefined;
60469
+ key?: string | undefined;
59703
60470
  }[] | undefined;
59704
60471
  reverse?: boolean | undefined;
59705
60472
  alignment?: {
@@ -59883,6 +60650,8 @@ export declare const BlockConfig_Root: {
59883
60650
  [x: string]: any;
59884
60651
  } | undefined;
59885
60652
  }[] | undefined;
60653
+ id?: string | undefined;
60654
+ key?: string | undefined;
59886
60655
  }[] & ({
59887
60656
  type?: BlockType | undefined;
59888
60657
  size?: {
@@ -60042,6 +60811,8 @@ export declare const BlockConfig_Root: {
60042
60811
  [x: string]: any;
60043
60812
  } | undefined;
60044
60813
  }[] | undefined;
60814
+ id?: string | undefined;
60815
+ key?: string | undefined;
60045
60816
  } & {
60046
60817
  type?: BlockType | undefined;
60047
60818
  size?: ({
@@ -60132,6 +60903,8 @@ export declare const BlockConfig_Root: {
60132
60903
  [x: string]: any;
60133
60904
  } | undefined;
60134
60905
  }[] | undefined;
60906
+ id?: string | undefined;
60907
+ key?: string | undefined;
60135
60908
  }[] | undefined;
60136
60909
  height?: number | undefined;
60137
60910
  } | undefined;
@@ -60185,6 +60958,8 @@ export declare const BlockConfig_Root: {
60185
60958
  [x: string]: any;
60186
60959
  } | undefined;
60187
60960
  }[] | undefined;
60961
+ id?: string | undefined;
60962
+ key?: string | undefined;
60188
60963
  }[] | undefined;
60189
60964
  reverse?: boolean | undefined;
60190
60965
  alignment?: {
@@ -60309,6 +61084,8 @@ export declare const BlockConfig_Root: {
60309
61084
  [x: string]: any;
60310
61085
  } | undefined;
60311
61086
  }[]>]: never; }) | undefined;
61087
+ id?: string | undefined;
61088
+ key?: string | undefined;
60312
61089
  } & { [K_231 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_232 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
60313
61090
  type?: BlockType | undefined;
60314
61091
  size?: {
@@ -60468,6 +61245,8 @@ export declare const BlockConfig_Root: {
60468
61245
  [x: string]: any;
60469
61246
  } | undefined;
60470
61247
  }[] | undefined;
61248
+ id?: string | undefined;
61249
+ key?: string | undefined;
60471
61250
  }[]>]: never; }) | undefined;
60472
61251
  reverse?: boolean | undefined;
60473
61252
  alignment?: ({
@@ -60700,6 +61479,8 @@ export declare const BlockConfig_Root: {
60700
61479
  [x: string]: any;
60701
61480
  } | undefined;
60702
61481
  }[]>]: never; }) | undefined;
61482
+ id?: string | undefined;
61483
+ key?: string | undefined;
60703
61484
  } & { [K_256 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_257 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
60704
61485
  type?: BlockType | undefined;
60705
61486
  size?: {
@@ -60859,6 +61640,8 @@ export declare const BlockConfig_Root: {
60859
61640
  [x: string]: any;
60860
61641
  } | undefined;
60861
61642
  }[] | undefined;
61643
+ id?: string | undefined;
61644
+ key?: string | undefined;
60862
61645
  }[]>]: never; }) | undefined;
60863
61646
  reverse?: boolean | undefined;
60864
61647
  alignment?: ({
@@ -61094,6 +61877,8 @@ export declare const BlockConfig_Root: {
61094
61877
  [x: string]: any;
61095
61878
  } | undefined;
61096
61879
  }[]>]: never; }) | undefined;
61880
+ id?: string | undefined;
61881
+ key?: string | undefined;
61097
61882
  } & { [K_281 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_282 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
61098
61883
  type?: BlockType | undefined;
61099
61884
  size?: {
@@ -61253,6 +62038,8 @@ export declare const BlockConfig_Root: {
61253
62038
  [x: string]: any;
61254
62039
  } | undefined;
61255
62040
  }[] | undefined;
62041
+ id?: string | undefined;
62042
+ key?: string | undefined;
61256
62043
  }[]>]: never; }) | undefined;
61257
62044
  reverse?: boolean | undefined;
61258
62045
  alignment?: ({
@@ -61488,6 +62275,8 @@ export declare const BlockConfig_Root: {
61488
62275
  [x: string]: any;
61489
62276
  } | undefined;
61490
62277
  }[]>]: never; }) | undefined;
62278
+ id?: string | undefined;
62279
+ key?: string | undefined;
61491
62280
  } & { [K_306 in Exclude<keyof I["children"][number], "$type" | keyof Block>]: never; })[] & { [K_307 in Exclude<keyof I["children"], "$type" | keyof {
61492
62281
  type?: BlockType | undefined;
61493
62282
  size?: {
@@ -61647,6 +62436,8 @@ export declare const BlockConfig_Root: {
61647
62436
  [x: string]: any;
61648
62437
  } | undefined;
61649
62438
  }[] | undefined;
62439
+ id?: string | undefined;
62440
+ key?: string | undefined;
61650
62441
  }[]>]: never; }) | undefined;
61651
62442
  height?: number | undefined;
61652
62443
  } & { [K_308 in Exclude<keyof I, "$type" | keyof BlockConfig_Root>]: never; }>(object: I): BlockConfig_Root;
@@ -61794,6 +62585,8 @@ export declare const BlockConfig_Stack: {
61794
62585
  [x: string]: any;
61795
62586
  } | undefined;
61796
62587
  }[] | undefined;
62588
+ id?: string | undefined;
62589
+ key?: string | undefined;
61797
62590
  }[] | undefined;
61798
62591
  reverse?: boolean | undefined;
61799
62592
  alignment?: {
@@ -61977,6 +62770,8 @@ export declare const BlockConfig_Stack: {
61977
62770
  [x: string]: any;
61978
62771
  } | undefined;
61979
62772
  }[] | undefined;
62773
+ id?: string | undefined;
62774
+ key?: string | undefined;
61980
62775
  }[] & ({
61981
62776
  type?: BlockType | undefined;
61982
62777
  size?: {
@@ -62136,6 +62931,8 @@ export declare const BlockConfig_Stack: {
62136
62931
  [x: string]: any;
62137
62932
  } | undefined;
62138
62933
  }[] | undefined;
62934
+ id?: string | undefined;
62935
+ key?: string | undefined;
62139
62936
  } & {
62140
62937
  type?: BlockType | undefined;
62141
62938
  size?: ({
@@ -62306,6 +63103,8 @@ export declare const BlockConfig_Stack: {
62306
63103
  [x: string]: any;
62307
63104
  } | undefined;
62308
63105
  }[] | undefined;
63106
+ id?: string | undefined;
63107
+ key?: string | undefined;
62309
63108
  }[] | undefined;
62310
63109
  height?: number | undefined;
62311
63110
  } | undefined;
@@ -62359,6 +63158,8 @@ export declare const BlockConfig_Stack: {
62359
63158
  [x: string]: any;
62360
63159
  } | undefined;
62361
63160
  }[] | undefined;
63161
+ id?: string | undefined;
63162
+ key?: string | undefined;
62362
63163
  }[] | undefined;
62363
63164
  reverse?: boolean | undefined;
62364
63165
  alignment?: {
@@ -62621,6 +63422,8 @@ export declare const BlockConfig_Stack: {
62621
63422
  [x: string]: any;
62622
63423
  } | undefined;
62623
63424
  }[] | undefined;
63425
+ id?: string | undefined;
63426
+ key?: string | undefined;
62624
63427
  }[] | undefined;
62625
63428
  height?: number | undefined;
62626
63429
  } & {
@@ -62783,6 +63586,8 @@ export declare const BlockConfig_Stack: {
62783
63586
  [x: string]: any;
62784
63587
  } | undefined;
62785
63588
  }[] | undefined;
63589
+ id?: string | undefined;
63590
+ key?: string | undefined;
62786
63591
  }[] & ({
62787
63592
  type?: BlockType | undefined;
62788
63593
  size?: {
@@ -62942,6 +63747,8 @@ export declare const BlockConfig_Stack: {
62942
63747
  [x: string]: any;
62943
63748
  } | undefined;
62944
63749
  }[] | undefined;
63750
+ id?: string | undefined;
63751
+ key?: string | undefined;
62945
63752
  } & {
62946
63753
  type?: BlockType | undefined;
62947
63754
  size?: ({
@@ -63112,6 +63919,8 @@ export declare const BlockConfig_Stack: {
63112
63919
  [x: string]: any;
63113
63920
  } | undefined;
63114
63921
  }[] | undefined;
63922
+ id?: string | undefined;
63923
+ key?: string | undefined;
63115
63924
  }[] | undefined;
63116
63925
  height?: number | undefined;
63117
63926
  } | undefined;
@@ -63165,6 +63974,8 @@ export declare const BlockConfig_Stack: {
63165
63974
  [x: string]: any;
63166
63975
  } | undefined;
63167
63976
  }[] | undefined;
63977
+ id?: string | undefined;
63978
+ key?: string | undefined;
63168
63979
  }[] | undefined;
63169
63980
  reverse?: boolean | undefined;
63170
63981
  alignment?: {
@@ -63427,6 +64238,8 @@ export declare const BlockConfig_Stack: {
63427
64238
  [x: string]: any;
63428
64239
  } | undefined;
63429
64240
  }[] | undefined;
64241
+ id?: string | undefined;
64242
+ key?: string | undefined;
63430
64243
  }[] | undefined;
63431
64244
  height?: number | undefined;
63432
64245
  } & {
@@ -63589,6 +64402,8 @@ export declare const BlockConfig_Stack: {
63589
64402
  [x: string]: any;
63590
64403
  } | undefined;
63591
64404
  }[] | undefined;
64405
+ id?: string | undefined;
64406
+ key?: string | undefined;
63592
64407
  }[] & ({
63593
64408
  type?: BlockType | undefined;
63594
64409
  size?: {
@@ -63748,6 +64563,8 @@ export declare const BlockConfig_Stack: {
63748
64563
  [x: string]: any;
63749
64564
  } | undefined;
63750
64565
  }[] | undefined;
64566
+ id?: string | undefined;
64567
+ key?: string | undefined;
63751
64568
  } & {
63752
64569
  type?: BlockType | undefined;
63753
64570
  size?: ({
@@ -63918,6 +64735,8 @@ export declare const BlockConfig_Stack: {
63918
64735
  [x: string]: any;
63919
64736
  } | undefined;
63920
64737
  }[] | undefined;
64738
+ id?: string | undefined;
64739
+ key?: string | undefined;
63921
64740
  }[] | undefined;
63922
64741
  height?: number | undefined;
63923
64742
  } | undefined;
@@ -63971,6 +64790,8 @@ export declare const BlockConfig_Stack: {
63971
64790
  [x: string]: any;
63972
64791
  } | undefined;
63973
64792
  }[] | undefined;
64793
+ id?: string | undefined;
64794
+ key?: string | undefined;
63974
64795
  }[] | undefined;
63975
64796
  reverse?: boolean | undefined;
63976
64797
  alignment?: {
@@ -64233,6 +65054,8 @@ export declare const BlockConfig_Stack: {
64233
65054
  [x: string]: any;
64234
65055
  } | undefined;
64235
65056
  }[] | undefined;
65057
+ id?: string | undefined;
65058
+ key?: string | undefined;
64236
65059
  }[] | undefined;
64237
65060
  height?: number | undefined;
64238
65061
  } & {
@@ -64395,6 +65218,8 @@ export declare const BlockConfig_Stack: {
64395
65218
  [x: string]: any;
64396
65219
  } | undefined;
64397
65220
  }[] | undefined;
65221
+ id?: string | undefined;
65222
+ key?: string | undefined;
64398
65223
  }[] & ({
64399
65224
  type?: BlockType | undefined;
64400
65225
  size?: {
@@ -64554,6 +65379,8 @@ export declare const BlockConfig_Stack: {
64554
65379
  [x: string]: any;
64555
65380
  } | undefined;
64556
65381
  }[] | undefined;
65382
+ id?: string | undefined;
65383
+ key?: string | undefined;
64557
65384
  } & {
64558
65385
  type?: BlockType | undefined;
64559
65386
  size?: ({
@@ -64644,6 +65471,8 @@ export declare const BlockConfig_Stack: {
64644
65471
  [x: string]: any;
64645
65472
  } | undefined;
64646
65473
  }[] | undefined;
65474
+ id?: string | undefined;
65475
+ key?: string | undefined;
64647
65476
  }[] | undefined;
64648
65477
  height?: number | undefined;
64649
65478
  } | undefined;
@@ -64697,6 +65526,8 @@ export declare const BlockConfig_Stack: {
64697
65526
  [x: string]: any;
64698
65527
  } | undefined;
64699
65528
  }[] | undefined;
65529
+ id?: string | undefined;
65530
+ key?: string | undefined;
64700
65531
  }[] | undefined;
64701
65532
  reverse?: boolean | undefined;
64702
65533
  alignment?: {
@@ -64821,6 +65652,8 @@ export declare const BlockConfig_Stack: {
64821
65652
  [x: string]: any;
64822
65653
  } | undefined;
64823
65654
  }[]>]: never; }) | undefined;
65655
+ id?: string | undefined;
65656
+ key?: string | undefined;
64824
65657
  } & { [K_35 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_36 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
64825
65658
  type?: BlockType | undefined;
64826
65659
  size?: {
@@ -64980,6 +65813,8 @@ export declare const BlockConfig_Stack: {
64980
65813
  [x: string]: any;
64981
65814
  } | undefined;
64982
65815
  }[] | undefined;
65816
+ id?: string | undefined;
65817
+ key?: string | undefined;
64983
65818
  }[]>]: never; }) | undefined;
64984
65819
  height?: number | undefined;
64985
65820
  } & { [K_37 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -65120,6 +65955,8 @@ export declare const BlockConfig_Stack: {
65120
65955
  [x: string]: any;
65121
65956
  } | undefined;
65122
65957
  }[] | undefined;
65958
+ id?: string | undefined;
65959
+ key?: string | undefined;
65123
65960
  }[] | undefined;
65124
65961
  reverse?: boolean | undefined;
65125
65962
  alignment?: {
@@ -65303,6 +66140,8 @@ export declare const BlockConfig_Stack: {
65303
66140
  [x: string]: any;
65304
66141
  } | undefined;
65305
66142
  }[] | undefined;
66143
+ id?: string | undefined;
66144
+ key?: string | undefined;
65306
66145
  }[] & ({
65307
66146
  type?: BlockType | undefined;
65308
66147
  size?: {
@@ -65462,6 +66301,8 @@ export declare const BlockConfig_Stack: {
65462
66301
  [x: string]: any;
65463
66302
  } | undefined;
65464
66303
  }[] | undefined;
66304
+ id?: string | undefined;
66305
+ key?: string | undefined;
65465
66306
  } & {
65466
66307
  type?: BlockType | undefined;
65467
66308
  size?: ({
@@ -65552,6 +66393,8 @@ export declare const BlockConfig_Stack: {
65552
66393
  [x: string]: any;
65553
66394
  } | undefined;
65554
66395
  }[] | undefined;
66396
+ id?: string | undefined;
66397
+ key?: string | undefined;
65555
66398
  }[] | undefined;
65556
66399
  height?: number | undefined;
65557
66400
  } | undefined;
@@ -65605,6 +66448,8 @@ export declare const BlockConfig_Stack: {
65605
66448
  [x: string]: any;
65606
66449
  } | undefined;
65607
66450
  }[] | undefined;
66451
+ id?: string | undefined;
66452
+ key?: string | undefined;
65608
66453
  }[] | undefined;
65609
66454
  reverse?: boolean | undefined;
65610
66455
  alignment?: {
@@ -65729,6 +66574,8 @@ export declare const BlockConfig_Stack: {
65729
66574
  [x: string]: any;
65730
66575
  } | undefined;
65731
66576
  }[]>]: never; }) | undefined;
66577
+ id?: string | undefined;
66578
+ key?: string | undefined;
65732
66579
  } & { [K_43 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_44 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
65733
66580
  type?: BlockType | undefined;
65734
66581
  size?: {
@@ -65888,6 +66735,8 @@ export declare const BlockConfig_Stack: {
65888
66735
  [x: string]: any;
65889
66736
  } | undefined;
65890
66737
  }[] | undefined;
66738
+ id?: string | undefined;
66739
+ key?: string | undefined;
65891
66740
  }[]>]: never; }) | undefined;
65892
66741
  reverse?: boolean | undefined;
65893
66742
  alignment?: ({
@@ -66120,6 +66969,8 @@ export declare const BlockConfig_Stack: {
66120
66969
  [x: string]: any;
66121
66970
  } | undefined;
66122
66971
  }[]>]: never; }) | undefined;
66972
+ id?: string | undefined;
66973
+ key?: string | undefined;
66123
66974
  } & { [K_68 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_69 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
66124
66975
  type?: BlockType | undefined;
66125
66976
  size?: {
@@ -66279,6 +67130,8 @@ export declare const BlockConfig_Stack: {
66279
67130
  [x: string]: any;
66280
67131
  } | undefined;
66281
67132
  }[] | undefined;
67133
+ id?: string | undefined;
67134
+ key?: string | undefined;
66282
67135
  }[]>]: never; }) | undefined;
66283
67136
  height?: number | undefined;
66284
67137
  } & { [K_70 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -66419,6 +67272,8 @@ export declare const BlockConfig_Stack: {
66419
67272
  [x: string]: any;
66420
67273
  } | undefined;
66421
67274
  }[] | undefined;
67275
+ id?: string | undefined;
67276
+ key?: string | undefined;
66422
67277
  }[] | undefined;
66423
67278
  reverse?: boolean | undefined;
66424
67279
  alignment?: {
@@ -66602,6 +67457,8 @@ export declare const BlockConfig_Stack: {
66602
67457
  [x: string]: any;
66603
67458
  } | undefined;
66604
67459
  }[] | undefined;
67460
+ id?: string | undefined;
67461
+ key?: string | undefined;
66605
67462
  }[] & ({
66606
67463
  type?: BlockType | undefined;
66607
67464
  size?: {
@@ -66761,6 +67618,8 @@ export declare const BlockConfig_Stack: {
66761
67618
  [x: string]: any;
66762
67619
  } | undefined;
66763
67620
  }[] | undefined;
67621
+ id?: string | undefined;
67622
+ key?: string | undefined;
66764
67623
  } & {
66765
67624
  type?: BlockType | undefined;
66766
67625
  size?: ({
@@ -66931,6 +67790,8 @@ export declare const BlockConfig_Stack: {
66931
67790
  [x: string]: any;
66932
67791
  } | undefined;
66933
67792
  }[] | undefined;
67793
+ id?: string | undefined;
67794
+ key?: string | undefined;
66934
67795
  }[] | undefined;
66935
67796
  height?: number | undefined;
66936
67797
  } | undefined;
@@ -66984,6 +67845,8 @@ export declare const BlockConfig_Stack: {
66984
67845
  [x: string]: any;
66985
67846
  } | undefined;
66986
67847
  }[] | undefined;
67848
+ id?: string | undefined;
67849
+ key?: string | undefined;
66987
67850
  }[] | undefined;
66988
67851
  reverse?: boolean | undefined;
66989
67852
  alignment?: {
@@ -67246,6 +68109,8 @@ export declare const BlockConfig_Stack: {
67246
68109
  [x: string]: any;
67247
68110
  } | undefined;
67248
68111
  }[] | undefined;
68112
+ id?: string | undefined;
68113
+ key?: string | undefined;
67249
68114
  }[] | undefined;
67250
68115
  height?: number | undefined;
67251
68116
  } & {
@@ -67408,6 +68273,8 @@ export declare const BlockConfig_Stack: {
67408
68273
  [x: string]: any;
67409
68274
  } | undefined;
67410
68275
  }[] | undefined;
68276
+ id?: string | undefined;
68277
+ key?: string | undefined;
67411
68278
  }[] & ({
67412
68279
  type?: BlockType | undefined;
67413
68280
  size?: {
@@ -67567,6 +68434,8 @@ export declare const BlockConfig_Stack: {
67567
68434
  [x: string]: any;
67568
68435
  } | undefined;
67569
68436
  }[] | undefined;
68437
+ id?: string | undefined;
68438
+ key?: string | undefined;
67570
68439
  } & {
67571
68440
  type?: BlockType | undefined;
67572
68441
  size?: ({
@@ -67657,6 +68526,8 @@ export declare const BlockConfig_Stack: {
67657
68526
  [x: string]: any;
67658
68527
  } | undefined;
67659
68528
  }[] | undefined;
68529
+ id?: string | undefined;
68530
+ key?: string | undefined;
67660
68531
  }[] | undefined;
67661
68532
  height?: number | undefined;
67662
68533
  } | undefined;
@@ -67710,6 +68581,8 @@ export declare const BlockConfig_Stack: {
67710
68581
  [x: string]: any;
67711
68582
  } | undefined;
67712
68583
  }[] | undefined;
68584
+ id?: string | undefined;
68585
+ key?: string | undefined;
67713
68586
  }[] | undefined;
67714
68587
  reverse?: boolean | undefined;
67715
68588
  alignment?: {
@@ -67834,6 +68707,8 @@ export declare const BlockConfig_Stack: {
67834
68707
  [x: string]: any;
67835
68708
  } | undefined;
67836
68709
  }[]>]: never; }) | undefined;
68710
+ id?: string | undefined;
68711
+ key?: string | undefined;
67837
68712
  } & { [K_86 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_87 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
67838
68713
  type?: BlockType | undefined;
67839
68714
  size?: {
@@ -67993,6 +68868,8 @@ export declare const BlockConfig_Stack: {
67993
68868
  [x: string]: any;
67994
68869
  } | undefined;
67995
68870
  }[] | undefined;
68871
+ id?: string | undefined;
68872
+ key?: string | undefined;
67996
68873
  }[]>]: never; }) | undefined;
67997
68874
  height?: number | undefined;
67998
68875
  } & { [K_88 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -68133,6 +69010,8 @@ export declare const BlockConfig_Stack: {
68133
69010
  [x: string]: any;
68134
69011
  } | undefined;
68135
69012
  }[] | undefined;
69013
+ id?: string | undefined;
69014
+ key?: string | undefined;
68136
69015
  }[] | undefined;
68137
69016
  reverse?: boolean | undefined;
68138
69017
  alignment?: {
@@ -68316,6 +69195,8 @@ export declare const BlockConfig_Stack: {
68316
69195
  [x: string]: any;
68317
69196
  } | undefined;
68318
69197
  }[] | undefined;
69198
+ id?: string | undefined;
69199
+ key?: string | undefined;
68319
69200
  }[] & ({
68320
69201
  type?: BlockType | undefined;
68321
69202
  size?: {
@@ -68475,6 +69356,8 @@ export declare const BlockConfig_Stack: {
68475
69356
  [x: string]: any;
68476
69357
  } | undefined;
68477
69358
  }[] | undefined;
69359
+ id?: string | undefined;
69360
+ key?: string | undefined;
68478
69361
  } & {
68479
69362
  type?: BlockType | undefined;
68480
69363
  size?: ({
@@ -68565,6 +69448,8 @@ export declare const BlockConfig_Stack: {
68565
69448
  [x: string]: any;
68566
69449
  } | undefined;
68567
69450
  }[] | undefined;
69451
+ id?: string | undefined;
69452
+ key?: string | undefined;
68568
69453
  }[] | undefined;
68569
69454
  height?: number | undefined;
68570
69455
  } | undefined;
@@ -68618,6 +69503,8 @@ export declare const BlockConfig_Stack: {
68618
69503
  [x: string]: any;
68619
69504
  } | undefined;
68620
69505
  }[] | undefined;
69506
+ id?: string | undefined;
69507
+ key?: string | undefined;
68621
69508
  }[] | undefined;
68622
69509
  reverse?: boolean | undefined;
68623
69510
  alignment?: {
@@ -68742,6 +69629,8 @@ export declare const BlockConfig_Stack: {
68742
69629
  [x: string]: any;
68743
69630
  } | undefined;
68744
69631
  }[]>]: never; }) | undefined;
69632
+ id?: string | undefined;
69633
+ key?: string | undefined;
68745
69634
  } & { [K_94 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_95 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
68746
69635
  type?: BlockType | undefined;
68747
69636
  size?: {
@@ -68901,6 +69790,8 @@ export declare const BlockConfig_Stack: {
68901
69790
  [x: string]: any;
68902
69791
  } | undefined;
68903
69792
  }[] | undefined;
69793
+ id?: string | undefined;
69794
+ key?: string | undefined;
68904
69795
  }[]>]: never; }) | undefined;
68905
69796
  reverse?: boolean | undefined;
68906
69797
  alignment?: ({
@@ -69133,6 +70024,8 @@ export declare const BlockConfig_Stack: {
69133
70024
  [x: string]: any;
69134
70025
  } | undefined;
69135
70026
  }[]>]: never; }) | undefined;
70027
+ id?: string | undefined;
70028
+ key?: string | undefined;
69136
70029
  } & { [K_119 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_120 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
69137
70030
  type?: BlockType | undefined;
69138
70031
  size?: {
@@ -69292,6 +70185,8 @@ export declare const BlockConfig_Stack: {
69292
70185
  [x: string]: any;
69293
70186
  } | undefined;
69294
70187
  }[] | undefined;
70188
+ id?: string | undefined;
70189
+ key?: string | undefined;
69295
70190
  }[]>]: never; }) | undefined;
69296
70191
  reverse?: boolean | undefined;
69297
70192
  alignment?: ({
@@ -69527,6 +70422,8 @@ export declare const BlockConfig_Stack: {
69527
70422
  [x: string]: any;
69528
70423
  } | undefined;
69529
70424
  }[]>]: never; }) | undefined;
70425
+ id?: string | undefined;
70426
+ key?: string | undefined;
69530
70427
  } & { [K_144 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_145 in Exclude<keyof I["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
69531
70428
  type?: BlockType | undefined;
69532
70429
  size?: {
@@ -69686,6 +70583,8 @@ export declare const BlockConfig_Stack: {
69686
70583
  [x: string]: any;
69687
70584
  } | undefined;
69688
70585
  }[] | undefined;
70586
+ id?: string | undefined;
70587
+ key?: string | undefined;
69689
70588
  }[]>]: never; }) | undefined;
69690
70589
  height?: number | undefined;
69691
70590
  } & { [K_146 in Exclude<keyof I["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -69826,6 +70725,8 @@ export declare const BlockConfig_Stack: {
69826
70725
  [x: string]: any;
69827
70726
  } | undefined;
69828
70727
  }[] | undefined;
70728
+ id?: string | undefined;
70729
+ key?: string | undefined;
69829
70730
  }[] | undefined;
69830
70731
  reverse?: boolean | undefined;
69831
70732
  alignment?: {
@@ -70009,6 +70910,8 @@ export declare const BlockConfig_Stack: {
70009
70910
  [x: string]: any;
70010
70911
  } | undefined;
70011
70912
  }[] | undefined;
70913
+ id?: string | undefined;
70914
+ key?: string | undefined;
70012
70915
  }[] & ({
70013
70916
  type?: BlockType | undefined;
70014
70917
  size?: {
@@ -70168,6 +71071,8 @@ export declare const BlockConfig_Stack: {
70168
71071
  [x: string]: any;
70169
71072
  } | undefined;
70170
71073
  }[] | undefined;
71074
+ id?: string | undefined;
71075
+ key?: string | undefined;
70171
71076
  } & {
70172
71077
  type?: BlockType | undefined;
70173
71078
  size?: ({
@@ -70338,6 +71243,8 @@ export declare const BlockConfig_Stack: {
70338
71243
  [x: string]: any;
70339
71244
  } | undefined;
70340
71245
  }[] | undefined;
71246
+ id?: string | undefined;
71247
+ key?: string | undefined;
70341
71248
  }[] | undefined;
70342
71249
  height?: number | undefined;
70343
71250
  } | undefined;
@@ -70391,6 +71298,8 @@ export declare const BlockConfig_Stack: {
70391
71298
  [x: string]: any;
70392
71299
  } | undefined;
70393
71300
  }[] | undefined;
71301
+ id?: string | undefined;
71302
+ key?: string | undefined;
70394
71303
  }[] | undefined;
70395
71304
  reverse?: boolean | undefined;
70396
71305
  alignment?: {
@@ -70653,6 +71562,8 @@ export declare const BlockConfig_Stack: {
70653
71562
  [x: string]: any;
70654
71563
  } | undefined;
70655
71564
  }[] | undefined;
71565
+ id?: string | undefined;
71566
+ key?: string | undefined;
70656
71567
  }[] | undefined;
70657
71568
  height?: number | undefined;
70658
71569
  } & {
@@ -70815,6 +71726,8 @@ export declare const BlockConfig_Stack: {
70815
71726
  [x: string]: any;
70816
71727
  } | undefined;
70817
71728
  }[] | undefined;
71729
+ id?: string | undefined;
71730
+ key?: string | undefined;
70818
71731
  }[] & ({
70819
71732
  type?: BlockType | undefined;
70820
71733
  size?: {
@@ -70974,6 +71887,8 @@ export declare const BlockConfig_Stack: {
70974
71887
  [x: string]: any;
70975
71888
  } | undefined;
70976
71889
  }[] | undefined;
71890
+ id?: string | undefined;
71891
+ key?: string | undefined;
70977
71892
  } & {
70978
71893
  type?: BlockType | undefined;
70979
71894
  size?: ({
@@ -71144,6 +72059,8 @@ export declare const BlockConfig_Stack: {
71144
72059
  [x: string]: any;
71145
72060
  } | undefined;
71146
72061
  }[] | undefined;
72062
+ id?: string | undefined;
72063
+ key?: string | undefined;
71147
72064
  }[] | undefined;
71148
72065
  height?: number | undefined;
71149
72066
  } | undefined;
@@ -71197,6 +72114,8 @@ export declare const BlockConfig_Stack: {
71197
72114
  [x: string]: any;
71198
72115
  } | undefined;
71199
72116
  }[] | undefined;
72117
+ id?: string | undefined;
72118
+ key?: string | undefined;
71200
72119
  }[] | undefined;
71201
72120
  reverse?: boolean | undefined;
71202
72121
  alignment?: {
@@ -71459,6 +72378,8 @@ export declare const BlockConfig_Stack: {
71459
72378
  [x: string]: any;
71460
72379
  } | undefined;
71461
72380
  }[] | undefined;
72381
+ id?: string | undefined;
72382
+ key?: string | undefined;
71462
72383
  }[] | undefined;
71463
72384
  height?: number | undefined;
71464
72385
  } & {
@@ -71621,6 +72542,8 @@ export declare const BlockConfig_Stack: {
71621
72542
  [x: string]: any;
71622
72543
  } | undefined;
71623
72544
  }[] | undefined;
72545
+ id?: string | undefined;
72546
+ key?: string | undefined;
71624
72547
  }[] & ({
71625
72548
  type?: BlockType | undefined;
71626
72549
  size?: {
@@ -71780,6 +72703,8 @@ export declare const BlockConfig_Stack: {
71780
72703
  [x: string]: any;
71781
72704
  } | undefined;
71782
72705
  }[] | undefined;
72706
+ id?: string | undefined;
72707
+ key?: string | undefined;
71783
72708
  } & {
71784
72709
  type?: BlockType | undefined;
71785
72710
  size?: ({
@@ -71870,6 +72795,8 @@ export declare const BlockConfig_Stack: {
71870
72795
  [x: string]: any;
71871
72796
  } | undefined;
71872
72797
  }[] | undefined;
72798
+ id?: string | undefined;
72799
+ key?: string | undefined;
71873
72800
  }[] | undefined;
71874
72801
  height?: number | undefined;
71875
72802
  } | undefined;
@@ -71923,6 +72850,8 @@ export declare const BlockConfig_Stack: {
71923
72850
  [x: string]: any;
71924
72851
  } | undefined;
71925
72852
  }[] | undefined;
72853
+ id?: string | undefined;
72854
+ key?: string | undefined;
71926
72855
  }[] | undefined;
71927
72856
  reverse?: boolean | undefined;
71928
72857
  alignment?: {
@@ -72047,6 +72976,8 @@ export declare const BlockConfig_Stack: {
72047
72976
  [x: string]: any;
72048
72977
  } | undefined;
72049
72978
  }[]>]: never; }) | undefined;
72979
+ id?: string | undefined;
72980
+ key?: string | undefined;
72050
72981
  } & { [K_172 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_173 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
72051
72982
  type?: BlockType | undefined;
72052
72983
  size?: {
@@ -72206,6 +73137,8 @@ export declare const BlockConfig_Stack: {
72206
73137
  [x: string]: any;
72207
73138
  } | undefined;
72208
73139
  }[] | undefined;
73140
+ id?: string | undefined;
73141
+ key?: string | undefined;
72209
73142
  }[]>]: never; }) | undefined;
72210
73143
  height?: number | undefined;
72211
73144
  } & { [K_174 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -72346,6 +73279,8 @@ export declare const BlockConfig_Stack: {
72346
73279
  [x: string]: any;
72347
73280
  } | undefined;
72348
73281
  }[] | undefined;
73282
+ id?: string | undefined;
73283
+ key?: string | undefined;
72349
73284
  }[] | undefined;
72350
73285
  reverse?: boolean | undefined;
72351
73286
  alignment?: {
@@ -72529,6 +73464,8 @@ export declare const BlockConfig_Stack: {
72529
73464
  [x: string]: any;
72530
73465
  } | undefined;
72531
73466
  }[] | undefined;
73467
+ id?: string | undefined;
73468
+ key?: string | undefined;
72532
73469
  }[] & ({
72533
73470
  type?: BlockType | undefined;
72534
73471
  size?: {
@@ -72688,6 +73625,8 @@ export declare const BlockConfig_Stack: {
72688
73625
  [x: string]: any;
72689
73626
  } | undefined;
72690
73627
  }[] | undefined;
73628
+ id?: string | undefined;
73629
+ key?: string | undefined;
72691
73630
  } & {
72692
73631
  type?: BlockType | undefined;
72693
73632
  size?: ({
@@ -72778,6 +73717,8 @@ export declare const BlockConfig_Stack: {
72778
73717
  [x: string]: any;
72779
73718
  } | undefined;
72780
73719
  }[] | undefined;
73720
+ id?: string | undefined;
73721
+ key?: string | undefined;
72781
73722
  }[] | undefined;
72782
73723
  height?: number | undefined;
72783
73724
  } | undefined;
@@ -72831,6 +73772,8 @@ export declare const BlockConfig_Stack: {
72831
73772
  [x: string]: any;
72832
73773
  } | undefined;
72833
73774
  }[] | undefined;
73775
+ id?: string | undefined;
73776
+ key?: string | undefined;
72834
73777
  }[] | undefined;
72835
73778
  reverse?: boolean | undefined;
72836
73779
  alignment?: {
@@ -72955,6 +73898,8 @@ export declare const BlockConfig_Stack: {
72955
73898
  [x: string]: any;
72956
73899
  } | undefined;
72957
73900
  }[]>]: never; }) | undefined;
73901
+ id?: string | undefined;
73902
+ key?: string | undefined;
72958
73903
  } & { [K_180 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_181 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
72959
73904
  type?: BlockType | undefined;
72960
73905
  size?: {
@@ -73114,6 +74059,8 @@ export declare const BlockConfig_Stack: {
73114
74059
  [x: string]: any;
73115
74060
  } | undefined;
73116
74061
  }[] | undefined;
74062
+ id?: string | undefined;
74063
+ key?: string | undefined;
73117
74064
  }[]>]: never; }) | undefined;
73118
74065
  reverse?: boolean | undefined;
73119
74066
  alignment?: ({
@@ -73346,6 +74293,8 @@ export declare const BlockConfig_Stack: {
73346
74293
  [x: string]: any;
73347
74294
  } | undefined;
73348
74295
  }[]>]: never; }) | undefined;
74296
+ id?: string | undefined;
74297
+ key?: string | undefined;
73349
74298
  } & { [K_205 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_206 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
73350
74299
  type?: BlockType | undefined;
73351
74300
  size?: {
@@ -73505,6 +74454,8 @@ export declare const BlockConfig_Stack: {
73505
74454
  [x: string]: any;
73506
74455
  } | undefined;
73507
74456
  }[] | undefined;
74457
+ id?: string | undefined;
74458
+ key?: string | undefined;
73508
74459
  }[]>]: never; }) | undefined;
73509
74460
  height?: number | undefined;
73510
74461
  } & { [K_207 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -73645,6 +74596,8 @@ export declare const BlockConfig_Stack: {
73645
74596
  [x: string]: any;
73646
74597
  } | undefined;
73647
74598
  }[] | undefined;
74599
+ id?: string | undefined;
74600
+ key?: string | undefined;
73648
74601
  }[] | undefined;
73649
74602
  reverse?: boolean | undefined;
73650
74603
  alignment?: {
@@ -73828,6 +74781,8 @@ export declare const BlockConfig_Stack: {
73828
74781
  [x: string]: any;
73829
74782
  } | undefined;
73830
74783
  }[] | undefined;
74784
+ id?: string | undefined;
74785
+ key?: string | undefined;
73831
74786
  }[] & ({
73832
74787
  type?: BlockType | undefined;
73833
74788
  size?: {
@@ -73987,6 +74942,8 @@ export declare const BlockConfig_Stack: {
73987
74942
  [x: string]: any;
73988
74943
  } | undefined;
73989
74944
  }[] | undefined;
74945
+ id?: string | undefined;
74946
+ key?: string | undefined;
73990
74947
  } & {
73991
74948
  type?: BlockType | undefined;
73992
74949
  size?: ({
@@ -74157,6 +75114,8 @@ export declare const BlockConfig_Stack: {
74157
75114
  [x: string]: any;
74158
75115
  } | undefined;
74159
75116
  }[] | undefined;
75117
+ id?: string | undefined;
75118
+ key?: string | undefined;
74160
75119
  }[] | undefined;
74161
75120
  height?: number | undefined;
74162
75121
  } | undefined;
@@ -74210,6 +75169,8 @@ export declare const BlockConfig_Stack: {
74210
75169
  [x: string]: any;
74211
75170
  } | undefined;
74212
75171
  }[] | undefined;
75172
+ id?: string | undefined;
75173
+ key?: string | undefined;
74213
75174
  }[] | undefined;
74214
75175
  reverse?: boolean | undefined;
74215
75176
  alignment?: {
@@ -74472,6 +75433,8 @@ export declare const BlockConfig_Stack: {
74472
75433
  [x: string]: any;
74473
75434
  } | undefined;
74474
75435
  }[] | undefined;
75436
+ id?: string | undefined;
75437
+ key?: string | undefined;
74475
75438
  }[] | undefined;
74476
75439
  height?: number | undefined;
74477
75440
  } & {
@@ -74634,6 +75597,8 @@ export declare const BlockConfig_Stack: {
74634
75597
  [x: string]: any;
74635
75598
  } | undefined;
74636
75599
  }[] | undefined;
75600
+ id?: string | undefined;
75601
+ key?: string | undefined;
74637
75602
  }[] & ({
74638
75603
  type?: BlockType | undefined;
74639
75604
  size?: {
@@ -74793,6 +75758,8 @@ export declare const BlockConfig_Stack: {
74793
75758
  [x: string]: any;
74794
75759
  } | undefined;
74795
75760
  }[] | undefined;
75761
+ id?: string | undefined;
75762
+ key?: string | undefined;
74796
75763
  } & {
74797
75764
  type?: BlockType | undefined;
74798
75765
  size?: ({
@@ -74883,6 +75850,8 @@ export declare const BlockConfig_Stack: {
74883
75850
  [x: string]: any;
74884
75851
  } | undefined;
74885
75852
  }[] | undefined;
75853
+ id?: string | undefined;
75854
+ key?: string | undefined;
74886
75855
  }[] | undefined;
74887
75856
  height?: number | undefined;
74888
75857
  } | undefined;
@@ -74936,6 +75905,8 @@ export declare const BlockConfig_Stack: {
74936
75905
  [x: string]: any;
74937
75906
  } | undefined;
74938
75907
  }[] | undefined;
75908
+ id?: string | undefined;
75909
+ key?: string | undefined;
74939
75910
  }[] | undefined;
74940
75911
  reverse?: boolean | undefined;
74941
75912
  alignment?: {
@@ -75060,6 +76031,8 @@ export declare const BlockConfig_Stack: {
75060
76031
  [x: string]: any;
75061
76032
  } | undefined;
75062
76033
  }[]>]: never; }) | undefined;
76034
+ id?: string | undefined;
76035
+ key?: string | undefined;
75063
76036
  } & { [K_223 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_224 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"]["children"], "$type" | keyof {
75064
76037
  type?: BlockType | undefined;
75065
76038
  size?: {
@@ -75219,6 +76192,8 @@ export declare const BlockConfig_Stack: {
75219
76192
  [x: string]: any;
75220
76193
  } | undefined;
75221
76194
  }[] | undefined;
76195
+ id?: string | undefined;
76196
+ key?: string | undefined;
75222
76197
  }[]>]: never; }) | undefined;
75223
76198
  height?: number | undefined;
75224
76199
  } & { [K_225 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["rootConfig"], "$type" | keyof BlockConfig_Root>]: never; }) | undefined;
@@ -75359,6 +76334,8 @@ export declare const BlockConfig_Stack: {
75359
76334
  [x: string]: any;
75360
76335
  } | undefined;
75361
76336
  }[] | undefined;
76337
+ id?: string | undefined;
76338
+ key?: string | undefined;
75362
76339
  }[] | undefined;
75363
76340
  reverse?: boolean | undefined;
75364
76341
  alignment?: {
@@ -75542,6 +76519,8 @@ export declare const BlockConfig_Stack: {
75542
76519
  [x: string]: any;
75543
76520
  } | undefined;
75544
76521
  }[] | undefined;
76522
+ id?: string | undefined;
76523
+ key?: string | undefined;
75545
76524
  }[] & ({
75546
76525
  type?: BlockType | undefined;
75547
76526
  size?: {
@@ -75701,6 +76680,8 @@ export declare const BlockConfig_Stack: {
75701
76680
  [x: string]: any;
75702
76681
  } | undefined;
75703
76682
  }[] | undefined;
76683
+ id?: string | undefined;
76684
+ key?: string | undefined;
75704
76685
  } & {
75705
76686
  type?: BlockType | undefined;
75706
76687
  size?: ({
@@ -75791,6 +76772,8 @@ export declare const BlockConfig_Stack: {
75791
76772
  [x: string]: any;
75792
76773
  } | undefined;
75793
76774
  }[] | undefined;
76775
+ id?: string | undefined;
76776
+ key?: string | undefined;
75794
76777
  }[] | undefined;
75795
76778
  height?: number | undefined;
75796
76779
  } | undefined;
@@ -75844,6 +76827,8 @@ export declare const BlockConfig_Stack: {
75844
76827
  [x: string]: any;
75845
76828
  } | undefined;
75846
76829
  }[] | undefined;
76830
+ id?: string | undefined;
76831
+ key?: string | undefined;
75847
76832
  }[] | undefined;
75848
76833
  reverse?: boolean | undefined;
75849
76834
  alignment?: {
@@ -75968,6 +76953,8 @@ export declare const BlockConfig_Stack: {
75968
76953
  [x: string]: any;
75969
76954
  } | undefined;
75970
76955
  }[]>]: never; }) | undefined;
76956
+ id?: string | undefined;
76957
+ key?: string | undefined;
75971
76958
  } & { [K_231 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_232 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
75972
76959
  type?: BlockType | undefined;
75973
76960
  size?: {
@@ -76127,6 +77114,8 @@ export declare const BlockConfig_Stack: {
76127
77114
  [x: string]: any;
76128
77115
  } | undefined;
76129
77116
  }[] | undefined;
77117
+ id?: string | undefined;
77118
+ key?: string | undefined;
76130
77119
  }[]>]: never; }) | undefined;
76131
77120
  reverse?: boolean | undefined;
76132
77121
  alignment?: ({
@@ -76359,6 +77348,8 @@ export declare const BlockConfig_Stack: {
76359
77348
  [x: string]: any;
76360
77349
  } | undefined;
76361
77350
  }[]>]: never; }) | undefined;
77351
+ id?: string | undefined;
77352
+ key?: string | undefined;
76362
77353
  } & { [K_256 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_257 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
76363
77354
  type?: BlockType | undefined;
76364
77355
  size?: {
@@ -76518,6 +77509,8 @@ export declare const BlockConfig_Stack: {
76518
77509
  [x: string]: any;
76519
77510
  } | undefined;
76520
77511
  }[] | undefined;
77512
+ id?: string | undefined;
77513
+ key?: string | undefined;
76521
77514
  }[]>]: never; }) | undefined;
76522
77515
  reverse?: boolean | undefined;
76523
77516
  alignment?: ({
@@ -76753,6 +77746,8 @@ export declare const BlockConfig_Stack: {
76753
77746
  [x: string]: any;
76754
77747
  } | undefined;
76755
77748
  }[]>]: never; }) | undefined;
77749
+ id?: string | undefined;
77750
+ key?: string | undefined;
76756
77751
  } & { [K_281 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"][number], "$type" | keyof Block>]: never; })[] & { [K_282 in Exclude<keyof I["children"][number]["config"]["stackConfig"]["children"], "$type" | keyof {
76757
77752
  type?: BlockType | undefined;
76758
77753
  size?: {
@@ -76912,6 +77907,8 @@ export declare const BlockConfig_Stack: {
76912
77907
  [x: string]: any;
76913
77908
  } | undefined;
76914
77909
  }[] | undefined;
77910
+ id?: string | undefined;
77911
+ key?: string | undefined;
76915
77912
  }[]>]: never; }) | undefined;
76916
77913
  reverse?: boolean | undefined;
76917
77914
  alignment?: ({
@@ -77147,6 +78144,8 @@ export declare const BlockConfig_Stack: {
77147
78144
  [x: string]: any;
77148
78145
  } | undefined;
77149
78146
  }[]>]: never; }) | undefined;
78147
+ id?: string | undefined;
78148
+ key?: string | undefined;
77150
78149
  } & { [K_306 in Exclude<keyof I["children"][number], "$type" | keyof Block>]: never; })[] & { [K_307 in Exclude<keyof I["children"], "$type" | keyof {
77151
78150
  type?: BlockType | undefined;
77152
78151
  size?: {
@@ -77306,6 +78305,8 @@ export declare const BlockConfig_Stack: {
77306
78305
  [x: string]: any;
77307
78306
  } | undefined;
77308
78307
  }[] | undefined;
78308
+ id?: string | undefined;
78309
+ key?: string | undefined;
77309
78310
  }[]>]: never; }) | undefined;
77310
78311
  reverse?: boolean | undefined;
77311
78312
  alignment?: ({