@prismicio/types-internal 3.2.0-alpha.3 → 3.3.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/lib/content/Document.d.ts +216 -0
  2. package/lib/content/fields/WidgetContent.d.ts +216 -0
  3. package/lib/content/fields/nestable/LinkContent.d.ts +48 -0
  4. package/lib/content/fields/nestable/LinkContent.js +6 -0
  5. package/lib/content/fields/nestable/NestableContent.d.ts +36 -0
  6. package/lib/content/fields/nestable/RepeatableContent.d.ts +12 -0
  7. package/lib/content/fields/nestable/RepeatableContent.js +1 -8
  8. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +72 -0
  9. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +12 -0
  10. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +72 -0
  11. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +36 -0
  12. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +36 -0
  13. package/lib/content/fields/slices/Slice/index.d.ts +120 -0
  14. package/lib/content/fields/slices/SliceItem.d.ts +120 -0
  15. package/lib/content/fields/slices/SlicesContent.d.ts +180 -0
  16. package/lib/customtypes/CustomType.d.ts +72 -0
  17. package/lib/customtypes/Section.d.ts +72 -0
  18. package/lib/customtypes/diff/SharedSlice.d.ts +32 -0
  19. package/lib/customtypes/diff/Variation.d.ts +32 -0
  20. package/lib/customtypes/widgets/Group.d.ts +24 -0
  21. package/lib/customtypes/widgets/Widget.d.ts +84 -0
  22. package/lib/customtypes/widgets/nestable/Link.d.ts +8 -0
  23. package/lib/customtypes/widgets/nestable/Link.js +4 -0
  24. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +4 -0
  25. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +8 -0
  26. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +8 -0
  27. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +32 -0
  28. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +24 -0
  29. package/lib/customtypes/widgets/slices/Slices.d.ts +112 -0
  30. package/package.json +1 -1
  31. package/src/content/fields/nestable/LinkContent.ts +6 -0
  32. package/src/content/fields/nestable/RepeatableContent.ts +1 -10
  33. package/src/customtypes/widgets/nestable/Link.ts +5 -0
@@ -142,6 +142,7 @@ export declare const SliceItemContent: t.TypeC<{
142
142
  kind: t.LiteralC<"image">;
143
143
  }>>]>, t.ExactC<t.PartialC<{
144
144
  text: t.StringC;
145
+ variant: t.StringC;
145
146
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
146
147
  __TYPE__: t.LiteralC<"FileLink">;
147
148
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -156,6 +157,7 @@ export declare const SliceItemContent: t.TypeC<{
156
157
  kind: t.LiteralC<"file">;
157
158
  }>>]>, t.ExactC<t.PartialC<{
158
159
  text: t.StringC;
160
+ variant: t.StringC;
159
161
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
160
162
  __TYPE__: t.LiteralC<"DocumentLink">;
161
163
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -164,6 +166,7 @@ export declare const SliceItemContent: t.TypeC<{
164
166
  kind: t.LiteralC<"document">;
165
167
  }>>]>, t.ExactC<t.PartialC<{
166
168
  text: t.StringC;
169
+ variant: t.StringC;
167
170
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
168
171
  __TYPE__: t.LiteralC<"ExternalLink">;
169
172
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -180,18 +183,21 @@ export declare const SliceItemContent: t.TypeC<{
180
183
  kind: t.LiteralC<"web">;
181
184
  }>>]>, t.ExactC<t.PartialC<{
182
185
  text: t.StringC;
186
+ variant: t.StringC;
183
187
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
184
188
  __TYPE__: t.LiteralC<"MediaLink">;
185
189
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
186
190
  kind: t.LiteralC<"media">;
187
191
  }>>, t.ExactC<t.PartialC<{
188
192
  text: t.StringC;
193
+ variant: t.StringC;
189
194
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
190
195
  __TYPE__: t.LiteralC<"AnyLink">;
191
196
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
192
197
  kind: t.LiteralC<"any">;
193
198
  }>, t.PartialC<{
194
199
  text: t.StringC;
200
+ variant: t.StringC;
195
201
  }>]>>]>]>;
196
202
  }>>]>, t.ExactC<t.TypeC<{
197
203
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -457,6 +463,7 @@ export declare const SliceItemContent: t.TypeC<{
457
463
  kind: t.LiteralC<"image">;
458
464
  }>>]>, t.ExactC<t.PartialC<{
459
465
  text: t.StringC;
466
+ variant: t.StringC;
460
467
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
461
468
  __TYPE__: t.LiteralC<"FileLink">;
462
469
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -471,6 +478,7 @@ export declare const SliceItemContent: t.TypeC<{
471
478
  kind: t.LiteralC<"file">;
472
479
  }>>]>, t.ExactC<t.PartialC<{
473
480
  text: t.StringC;
481
+ variant: t.StringC;
474
482
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
475
483
  __TYPE__: t.LiteralC<"DocumentLink">;
476
484
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -479,6 +487,7 @@ export declare const SliceItemContent: t.TypeC<{
479
487
  kind: t.LiteralC<"document">;
480
488
  }>>]>, t.ExactC<t.PartialC<{
481
489
  text: t.StringC;
490
+ variant: t.StringC;
482
491
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
483
492
  __TYPE__: t.LiteralC<"ExternalLink">;
484
493
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -495,18 +504,21 @@ export declare const SliceItemContent: t.TypeC<{
495
504
  kind: t.LiteralC<"web">;
496
505
  }>>]>, t.ExactC<t.PartialC<{
497
506
  text: t.StringC;
507
+ variant: t.StringC;
498
508
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
499
509
  __TYPE__: t.LiteralC<"MediaLink">;
500
510
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
501
511
  kind: t.LiteralC<"media">;
502
512
  }>>, t.ExactC<t.PartialC<{
503
513
  text: t.StringC;
514
+ variant: t.StringC;
504
515
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
505
516
  __TYPE__: t.LiteralC<"AnyLink">;
506
517
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
507
518
  kind: t.LiteralC<"any">;
508
519
  }>, t.PartialC<{
509
520
  text: t.StringC;
521
+ variant: t.StringC;
510
522
  }>]>>]>]>;
511
523
  }>>]>>;
512
524
  }>>]>>;
@@ -642,6 +654,7 @@ export declare const SliceItemContent: t.TypeC<{
642
654
  kind: t.LiteralC<"image">;
643
655
  }>>]>, t.ExactC<t.PartialC<{
644
656
  text: t.StringC;
657
+ variant: t.StringC;
645
658
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
646
659
  __TYPE__: t.LiteralC<"FileLink">;
647
660
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -656,6 +669,7 @@ export declare const SliceItemContent: t.TypeC<{
656
669
  kind: t.LiteralC<"file">;
657
670
  }>>]>, t.ExactC<t.PartialC<{
658
671
  text: t.StringC;
672
+ variant: t.StringC;
659
673
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
660
674
  __TYPE__: t.LiteralC<"DocumentLink">;
661
675
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -664,6 +678,7 @@ export declare const SliceItemContent: t.TypeC<{
664
678
  kind: t.LiteralC<"document">;
665
679
  }>>]>, t.ExactC<t.PartialC<{
666
680
  text: t.StringC;
681
+ variant: t.StringC;
667
682
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
668
683
  __TYPE__: t.LiteralC<"ExternalLink">;
669
684
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -680,18 +695,21 @@ export declare const SliceItemContent: t.TypeC<{
680
695
  kind: t.LiteralC<"web">;
681
696
  }>>]>, t.ExactC<t.PartialC<{
682
697
  text: t.StringC;
698
+ variant: t.StringC;
683
699
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
684
700
  __TYPE__: t.LiteralC<"MediaLink">;
685
701
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
686
702
  kind: t.LiteralC<"media">;
687
703
  }>>, t.ExactC<t.PartialC<{
688
704
  text: t.StringC;
705
+ variant: t.StringC;
689
706
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
690
707
  __TYPE__: t.LiteralC<"AnyLink">;
691
708
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
692
709
  kind: t.LiteralC<"any">;
693
710
  }>, t.PartialC<{
694
711
  text: t.StringC;
712
+ variant: t.StringC;
695
713
  }>]>>]>]>;
696
714
  }>>]>, t.ExactC<t.TypeC<{
697
715
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -957,6 +975,7 @@ export declare const SliceItemContent: t.TypeC<{
957
975
  kind: t.LiteralC<"image">;
958
976
  }>>]>, t.ExactC<t.PartialC<{
959
977
  text: t.StringC;
978
+ variant: t.StringC;
960
979
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
961
980
  __TYPE__: t.LiteralC<"FileLink">;
962
981
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -971,6 +990,7 @@ export declare const SliceItemContent: t.TypeC<{
971
990
  kind: t.LiteralC<"file">;
972
991
  }>>]>, t.ExactC<t.PartialC<{
973
992
  text: t.StringC;
993
+ variant: t.StringC;
974
994
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
975
995
  __TYPE__: t.LiteralC<"DocumentLink">;
976
996
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -979,6 +999,7 @@ export declare const SliceItemContent: t.TypeC<{
979
999
  kind: t.LiteralC<"document">;
980
1000
  }>>]>, t.ExactC<t.PartialC<{
981
1001
  text: t.StringC;
1002
+ variant: t.StringC;
982
1003
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
983
1004
  __TYPE__: t.LiteralC<"ExternalLink">;
984
1005
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -995,18 +1016,21 @@ export declare const SliceItemContent: t.TypeC<{
995
1016
  kind: t.LiteralC<"web">;
996
1017
  }>>]>, t.ExactC<t.PartialC<{
997
1018
  text: t.StringC;
1019
+ variant: t.StringC;
998
1020
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
999
1021
  __TYPE__: t.LiteralC<"MediaLink">;
1000
1022
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
1001
1023
  kind: t.LiteralC<"media">;
1002
1024
  }>>, t.ExactC<t.PartialC<{
1003
1025
  text: t.StringC;
1026
+ variant: t.StringC;
1004
1027
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1005
1028
  __TYPE__: t.LiteralC<"AnyLink">;
1006
1029
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1007
1030
  kind: t.LiteralC<"any">;
1008
1031
  }>, t.PartialC<{
1009
1032
  text: t.StringC;
1033
+ variant: t.StringC;
1010
1034
  }>]>>]>]>;
1011
1035
  }>>]>>;
1012
1036
  }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
@@ -1144,6 +1168,7 @@ export declare const SliceItemContent: t.TypeC<{
1144
1168
  kind: t.LiteralC<"image">;
1145
1169
  }>>]>, t.ExactC<t.PartialC<{
1146
1170
  text: t.StringC;
1171
+ variant: t.StringC;
1147
1172
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1148
1173
  __TYPE__: t.LiteralC<"FileLink">;
1149
1174
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1158,6 +1183,7 @@ export declare const SliceItemContent: t.TypeC<{
1158
1183
  kind: t.LiteralC<"file">;
1159
1184
  }>>]>, t.ExactC<t.PartialC<{
1160
1185
  text: t.StringC;
1186
+ variant: t.StringC;
1161
1187
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1162
1188
  __TYPE__: t.LiteralC<"DocumentLink">;
1163
1189
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -1166,6 +1192,7 @@ export declare const SliceItemContent: t.TypeC<{
1166
1192
  kind: t.LiteralC<"document">;
1167
1193
  }>>]>, t.ExactC<t.PartialC<{
1168
1194
  text: t.StringC;
1195
+ variant: t.StringC;
1169
1196
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1170
1197
  __TYPE__: t.LiteralC<"ExternalLink">;
1171
1198
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1182,18 +1209,21 @@ export declare const SliceItemContent: t.TypeC<{
1182
1209
  kind: t.LiteralC<"web">;
1183
1210
  }>>]>, t.ExactC<t.PartialC<{
1184
1211
  text: t.StringC;
1212
+ variant: t.StringC;
1185
1213
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1186
1214
  __TYPE__: t.LiteralC<"MediaLink">;
1187
1215
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
1188
1216
  kind: t.LiteralC<"media">;
1189
1217
  }>>, t.ExactC<t.PartialC<{
1190
1218
  text: t.StringC;
1219
+ variant: t.StringC;
1191
1220
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1192
1221
  __TYPE__: t.LiteralC<"AnyLink">;
1193
1222
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1194
1223
  kind: t.LiteralC<"any">;
1195
1224
  }>, t.PartialC<{
1196
1225
  text: t.StringC;
1226
+ variant: t.StringC;
1197
1227
  }>]>>]>]>;
1198
1228
  }>>]>, t.ExactC<t.TypeC<{
1199
1229
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -1459,6 +1489,7 @@ export declare const SliceItemContent: t.TypeC<{
1459
1489
  kind: t.LiteralC<"image">;
1460
1490
  }>>]>, t.ExactC<t.PartialC<{
1461
1491
  text: t.StringC;
1492
+ variant: t.StringC;
1462
1493
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1463
1494
  __TYPE__: t.LiteralC<"FileLink">;
1464
1495
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1473,6 +1504,7 @@ export declare const SliceItemContent: t.TypeC<{
1473
1504
  kind: t.LiteralC<"file">;
1474
1505
  }>>]>, t.ExactC<t.PartialC<{
1475
1506
  text: t.StringC;
1507
+ variant: t.StringC;
1476
1508
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1477
1509
  __TYPE__: t.LiteralC<"DocumentLink">;
1478
1510
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -1481,6 +1513,7 @@ export declare const SliceItemContent: t.TypeC<{
1481
1513
  kind: t.LiteralC<"document">;
1482
1514
  }>>]>, t.ExactC<t.PartialC<{
1483
1515
  text: t.StringC;
1516
+ variant: t.StringC;
1484
1517
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1485
1518
  __TYPE__: t.LiteralC<"ExternalLink">;
1486
1519
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1497,18 +1530,21 @@ export declare const SliceItemContent: t.TypeC<{
1497
1530
  kind: t.LiteralC<"web">;
1498
1531
  }>>]>, t.ExactC<t.PartialC<{
1499
1532
  text: t.StringC;
1533
+ variant: t.StringC;
1500
1534
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1501
1535
  __TYPE__: t.LiteralC<"MediaLink">;
1502
1536
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
1503
1537
  kind: t.LiteralC<"media">;
1504
1538
  }>>, t.ExactC<t.PartialC<{
1505
1539
  text: t.StringC;
1540
+ variant: t.StringC;
1506
1541
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1507
1542
  __TYPE__: t.LiteralC<"AnyLink">;
1508
1543
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1509
1544
  kind: t.LiteralC<"any">;
1510
1545
  }>, t.PartialC<{
1511
1546
  text: t.StringC;
1547
+ variant: t.StringC;
1512
1548
  }>]>>]>]>;
1513
1549
  }>>]>>;
1514
1550
  }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>>;
@@ -1644,6 +1680,7 @@ export declare const SliceItemContent: t.TypeC<{
1644
1680
  kind: t.LiteralC<"image">;
1645
1681
  }>>]>, t.ExactC<t.PartialC<{
1646
1682
  text: t.StringC;
1683
+ variant: t.StringC;
1647
1684
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1648
1685
  __TYPE__: t.LiteralC<"FileLink">;
1649
1686
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1658,6 +1695,7 @@ export declare const SliceItemContent: t.TypeC<{
1658
1695
  kind: t.LiteralC<"file">;
1659
1696
  }>>]>, t.ExactC<t.PartialC<{
1660
1697
  text: t.StringC;
1698
+ variant: t.StringC;
1661
1699
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1662
1700
  __TYPE__: t.LiteralC<"DocumentLink">;
1663
1701
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -1666,6 +1704,7 @@ export declare const SliceItemContent: t.TypeC<{
1666
1704
  kind: t.LiteralC<"document">;
1667
1705
  }>>]>, t.ExactC<t.PartialC<{
1668
1706
  text: t.StringC;
1707
+ variant: t.StringC;
1669
1708
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1670
1709
  __TYPE__: t.LiteralC<"ExternalLink">;
1671
1710
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1682,18 +1721,21 @@ export declare const SliceItemContent: t.TypeC<{
1682
1721
  kind: t.LiteralC<"web">;
1683
1722
  }>>]>, t.ExactC<t.PartialC<{
1684
1723
  text: t.StringC;
1724
+ variant: t.StringC;
1685
1725
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1686
1726
  __TYPE__: t.LiteralC<"MediaLink">;
1687
1727
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
1688
1728
  kind: t.LiteralC<"media">;
1689
1729
  }>>, t.ExactC<t.PartialC<{
1690
1730
  text: t.StringC;
1731
+ variant: t.StringC;
1691
1732
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1692
1733
  __TYPE__: t.LiteralC<"AnyLink">;
1693
1734
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1694
1735
  kind: t.LiteralC<"any">;
1695
1736
  }>, t.PartialC<{
1696
1737
  text: t.StringC;
1738
+ variant: t.StringC;
1697
1739
  }>]>>]>]>;
1698
1740
  }>>]>, t.ExactC<t.TypeC<{
1699
1741
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -1959,6 +2001,7 @@ export declare const SliceItemContent: t.TypeC<{
1959
2001
  kind: t.LiteralC<"image">;
1960
2002
  }>>]>, t.ExactC<t.PartialC<{
1961
2003
  text: t.StringC;
2004
+ variant: t.StringC;
1962
2005
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1963
2006
  __TYPE__: t.LiteralC<"FileLink">;
1964
2007
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1973,6 +2016,7 @@ export declare const SliceItemContent: t.TypeC<{
1973
2016
  kind: t.LiteralC<"file">;
1974
2017
  }>>]>, t.ExactC<t.PartialC<{
1975
2018
  text: t.StringC;
2019
+ variant: t.StringC;
1976
2020
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1977
2021
  __TYPE__: t.LiteralC<"DocumentLink">;
1978
2022
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -1981,6 +2025,7 @@ export declare const SliceItemContent: t.TypeC<{
1981
2025
  kind: t.LiteralC<"document">;
1982
2026
  }>>]>, t.ExactC<t.PartialC<{
1983
2027
  text: t.StringC;
2028
+ variant: t.StringC;
1984
2029
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
1985
2030
  __TYPE__: t.LiteralC<"ExternalLink">;
1986
2031
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -1997,18 +2042,21 @@ export declare const SliceItemContent: t.TypeC<{
1997
2042
  kind: t.LiteralC<"web">;
1998
2043
  }>>]>, t.ExactC<t.PartialC<{
1999
2044
  text: t.StringC;
2045
+ variant: t.StringC;
2000
2046
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2001
2047
  __TYPE__: t.LiteralC<"MediaLink">;
2002
2048
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
2003
2049
  kind: t.LiteralC<"media">;
2004
2050
  }>>, t.ExactC<t.PartialC<{
2005
2051
  text: t.StringC;
2052
+ variant: t.StringC;
2006
2053
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2007
2054
  __TYPE__: t.LiteralC<"AnyLink">;
2008
2055
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2009
2056
  kind: t.LiteralC<"any">;
2010
2057
  }>, t.PartialC<{
2011
2058
  text: t.StringC;
2059
+ variant: t.StringC;
2012
2060
  }>]>>]>]>;
2013
2061
  }>>]>>;
2014
2062
  }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>>;
@@ -2143,6 +2191,7 @@ export declare const SliceItemContent: t.TypeC<{
2143
2191
  kind: t.LiteralC<"image">;
2144
2192
  }>>]>, t.ExactC<t.PartialC<{
2145
2193
  text: t.StringC;
2194
+ variant: t.StringC;
2146
2195
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2147
2196
  __TYPE__: t.LiteralC<"FileLink">;
2148
2197
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -2157,6 +2206,7 @@ export declare const SliceItemContent: t.TypeC<{
2157
2206
  kind: t.LiteralC<"file">;
2158
2207
  }>>]>, t.ExactC<t.PartialC<{
2159
2208
  text: t.StringC;
2209
+ variant: t.StringC;
2160
2210
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2161
2211
  __TYPE__: t.LiteralC<"DocumentLink">;
2162
2212
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -2165,6 +2215,7 @@ export declare const SliceItemContent: t.TypeC<{
2165
2215
  kind: t.LiteralC<"document">;
2166
2216
  }>>]>, t.ExactC<t.PartialC<{
2167
2217
  text: t.StringC;
2218
+ variant: t.StringC;
2168
2219
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2169
2220
  __TYPE__: t.LiteralC<"ExternalLink">;
2170
2221
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -2181,18 +2232,21 @@ export declare const SliceItemContent: t.TypeC<{
2181
2232
  kind: t.LiteralC<"web">;
2182
2233
  }>>]>, t.ExactC<t.PartialC<{
2183
2234
  text: t.StringC;
2235
+ variant: t.StringC;
2184
2236
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2185
2237
  __TYPE__: t.LiteralC<"MediaLink">;
2186
2238
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
2187
2239
  kind: t.LiteralC<"media">;
2188
2240
  }>>, t.ExactC<t.PartialC<{
2189
2241
  text: t.StringC;
2242
+ variant: t.StringC;
2190
2243
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2191
2244
  __TYPE__: t.LiteralC<"AnyLink">;
2192
2245
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2193
2246
  kind: t.LiteralC<"any">;
2194
2247
  }>, t.PartialC<{
2195
2248
  text: t.StringC;
2249
+ variant: t.StringC;
2196
2250
  }>]>>]>]>;
2197
2251
  }>>]>, t.ExactC<t.TypeC<{
2198
2252
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -2458,6 +2512,7 @@ export declare const SliceItemContent: t.TypeC<{
2458
2512
  kind: t.LiteralC<"image">;
2459
2513
  }>>]>, t.ExactC<t.PartialC<{
2460
2514
  text: t.StringC;
2515
+ variant: t.StringC;
2461
2516
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2462
2517
  __TYPE__: t.LiteralC<"FileLink">;
2463
2518
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -2472,6 +2527,7 @@ export declare const SliceItemContent: t.TypeC<{
2472
2527
  kind: t.LiteralC<"file">;
2473
2528
  }>>]>, t.ExactC<t.PartialC<{
2474
2529
  text: t.StringC;
2530
+ variant: t.StringC;
2475
2531
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2476
2532
  __TYPE__: t.LiteralC<"DocumentLink">;
2477
2533
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -2480,6 +2536,7 @@ export declare const SliceItemContent: t.TypeC<{
2480
2536
  kind: t.LiteralC<"document">;
2481
2537
  }>>]>, t.ExactC<t.PartialC<{
2482
2538
  text: t.StringC;
2539
+ variant: t.StringC;
2483
2540
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2484
2541
  __TYPE__: t.LiteralC<"ExternalLink">;
2485
2542
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -2496,18 +2553,21 @@ export declare const SliceItemContent: t.TypeC<{
2496
2553
  kind: t.LiteralC<"web">;
2497
2554
  }>>]>, t.ExactC<t.PartialC<{
2498
2555
  text: t.StringC;
2556
+ variant: t.StringC;
2499
2557
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2500
2558
  __TYPE__: t.LiteralC<"MediaLink">;
2501
2559
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
2502
2560
  kind: t.LiteralC<"media">;
2503
2561
  }>>, t.ExactC<t.PartialC<{
2504
2562
  text: t.StringC;
2563
+ variant: t.StringC;
2505
2564
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
2506
2565
  __TYPE__: t.LiteralC<"AnyLink">;
2507
2566
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2508
2567
  kind: t.LiteralC<"any">;
2509
2568
  }>, t.PartialC<{
2510
2569
  text: t.StringC;
2570
+ variant: t.StringC;
2511
2571
  }>]>>]>]>;
2512
2572
  }>>]>>;
2513
2573
  }>>]>, t.Type<import("../GroupContent").GroupContent, import("../GroupContent").GroupContent, unknown>]>]>;
@@ -2662,6 +2722,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2662
2722
  kind: "image";
2663
2723
  }) & {
2664
2724
  text?: string;
2725
+ variant?: string;
2665
2726
  })) | ({
2666
2727
  __TYPE__: "FileLink";
2667
2728
  } & ((({
@@ -2676,12 +2737,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2676
2737
  kind: "file";
2677
2738
  }) & {
2678
2739
  text?: string;
2740
+ variant?: string;
2679
2741
  })) | ({
2680
2742
  __TYPE__: "MediaLink";
2681
2743
  } & {
2682
2744
  kind: "media";
2683
2745
  } & {
2684
2746
  text?: string;
2747
+ variant?: string;
2685
2748
  }) | ({
2686
2749
  __TYPE__: "DocumentLink";
2687
2750
  } & (({
@@ -2690,6 +2753,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2690
2753
  kind: "document";
2691
2754
  }) & {
2692
2755
  text?: string;
2756
+ variant?: string;
2693
2757
  })) | ({
2694
2758
  __TYPE__: "ExternalLink";
2695
2759
  } & ((({
@@ -2704,12 +2768,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2704
2768
  kind: "web";
2705
2769
  }) & {
2706
2770
  text?: string;
2771
+ variant?: string;
2707
2772
  })) | ({
2708
2773
  __TYPE__: "AnyLink";
2709
2774
  } & {
2710
2775
  kind: "any";
2711
2776
  } & {
2712
2777
  text?: string;
2778
+ variant?: string;
2713
2779
  });
2714
2780
  }) | {
2715
2781
  __TYPE__: "RepeatableContent";
@@ -2734,6 +2800,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2734
2800
  kind: "image";
2735
2801
  }) & {
2736
2802
  text?: string;
2803
+ variant?: string;
2737
2804
  })) | ({
2738
2805
  __TYPE__: "FileLink";
2739
2806
  } & ((({
@@ -2748,12 +2815,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2748
2815
  kind: "file";
2749
2816
  }) & {
2750
2817
  text?: string;
2818
+ variant?: string;
2751
2819
  })) | ({
2752
2820
  __TYPE__: "MediaLink";
2753
2821
  } & {
2754
2822
  kind: "media";
2755
2823
  } & {
2756
2824
  text?: string;
2825
+ variant?: string;
2757
2826
  }) | ({
2758
2827
  __TYPE__: "DocumentLink";
2759
2828
  } & (({
@@ -2762,6 +2831,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2762
2831
  kind: "document";
2763
2832
  }) & {
2764
2833
  text?: string;
2834
+ variant?: string;
2765
2835
  })) | ({
2766
2836
  __TYPE__: "ExternalLink";
2767
2837
  } & ((({
@@ -2776,12 +2846,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
2776
2846
  kind: "web";
2777
2847
  }) & {
2778
2848
  text?: string;
2849
+ variant?: string;
2779
2850
  })) | ({
2780
2851
  __TYPE__: "AnyLink";
2781
2852
  } & {
2782
2853
  kind: "any";
2783
2854
  } & {
2784
2855
  text?: string;
2856
+ variant?: string;
2785
2857
  });
2786
2858
  })[];
2787
2859
  } | import("../GroupContent").GroupContent | {
@@ -3074,6 +3146,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3074
3146
  kind: "image";
3075
3147
  }) & {
3076
3148
  text?: string;
3149
+ variant?: string;
3077
3150
  })) | ({
3078
3151
  __TYPE__: "FileLink";
3079
3152
  } & ((({
@@ -3088,12 +3161,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3088
3161
  kind: "file";
3089
3162
  }) & {
3090
3163
  text?: string;
3164
+ variant?: string;
3091
3165
  })) | ({
3092
3166
  __TYPE__: "MediaLink";
3093
3167
  } & {
3094
3168
  kind: "media";
3095
3169
  } & {
3096
3170
  text?: string;
3171
+ variant?: string;
3097
3172
  }) | ({
3098
3173
  __TYPE__: "DocumentLink";
3099
3174
  } & (({
@@ -3102,6 +3177,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3102
3177
  kind: "document";
3103
3178
  }) & {
3104
3179
  text?: string;
3180
+ variant?: string;
3105
3181
  })) | ({
3106
3182
  __TYPE__: "ExternalLink";
3107
3183
  } & ((({
@@ -3116,12 +3192,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3116
3192
  kind: "web";
3117
3193
  }) & {
3118
3194
  text?: string;
3195
+ variant?: string;
3119
3196
  })) | ({
3120
3197
  __TYPE__: "AnyLink";
3121
3198
  } & {
3122
3199
  kind: "any";
3123
3200
  } & {
3124
3201
  text?: string;
3202
+ variant?: string;
3125
3203
  });
3126
3204
  }) | {
3127
3205
  __TYPE__: "RepeatableContent";
@@ -3146,6 +3224,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3146
3224
  kind: "image";
3147
3225
  }) & {
3148
3226
  text?: string;
3227
+ variant?: string;
3149
3228
  })) | ({
3150
3229
  __TYPE__: "FileLink";
3151
3230
  } & ((({
@@ -3160,12 +3239,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3160
3239
  kind: "file";
3161
3240
  }) & {
3162
3241
  text?: string;
3242
+ variant?: string;
3163
3243
  })) | ({
3164
3244
  __TYPE__: "MediaLink";
3165
3245
  } & {
3166
3246
  kind: "media";
3167
3247
  } & {
3168
3248
  text?: string;
3249
+ variant?: string;
3169
3250
  }) | ({
3170
3251
  __TYPE__: "DocumentLink";
3171
3252
  } & (({
@@ -3174,6 +3255,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3174
3255
  kind: "document";
3175
3256
  }) & {
3176
3257
  text?: string;
3258
+ variant?: string;
3177
3259
  })) | ({
3178
3260
  __TYPE__: "ExternalLink";
3179
3261
  } & ((({
@@ -3188,12 +3270,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3188
3270
  kind: "web";
3189
3271
  }) & {
3190
3272
  text?: string;
3273
+ variant?: string;
3191
3274
  })) | ({
3192
3275
  __TYPE__: "AnyLink";
3193
3276
  } & {
3194
3277
  kind: "any";
3195
3278
  } & {
3196
3279
  text?: string;
3280
+ variant?: string;
3197
3281
  });
3198
3282
  })[];
3199
3283
  } | {
@@ -3487,6 +3571,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3487
3571
  kind: "image";
3488
3572
  }) & {
3489
3573
  text?: string;
3574
+ variant?: string;
3490
3575
  })) | ({
3491
3576
  __TYPE__: "FileLink";
3492
3577
  } & ((({
@@ -3501,12 +3586,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3501
3586
  kind: "file";
3502
3587
  }) & {
3503
3588
  text?: string;
3589
+ variant?: string;
3504
3590
  })) | ({
3505
3591
  __TYPE__: "MediaLink";
3506
3592
  } & {
3507
3593
  kind: "media";
3508
3594
  } & {
3509
3595
  text?: string;
3596
+ variant?: string;
3510
3597
  }) | ({
3511
3598
  __TYPE__: "DocumentLink";
3512
3599
  } & (({
@@ -3515,6 +3602,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3515
3602
  kind: "document";
3516
3603
  }) & {
3517
3604
  text?: string;
3605
+ variant?: string;
3518
3606
  })) | ({
3519
3607
  __TYPE__: "ExternalLink";
3520
3608
  } & ((({
@@ -3529,12 +3617,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3529
3617
  kind: "web";
3530
3618
  }) & {
3531
3619
  text?: string;
3620
+ variant?: string;
3532
3621
  })) | ({
3533
3622
  __TYPE__: "AnyLink";
3534
3623
  } & {
3535
3624
  kind: "any";
3536
3625
  } & {
3537
3626
  text?: string;
3627
+ variant?: string;
3538
3628
  });
3539
3629
  }) | {
3540
3630
  __TYPE__: "RepeatableContent";
@@ -3559,6 +3649,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3559
3649
  kind: "image";
3560
3650
  }) & {
3561
3651
  text?: string;
3652
+ variant?: string;
3562
3653
  })) | ({
3563
3654
  __TYPE__: "FileLink";
3564
3655
  } & ((({
@@ -3573,12 +3664,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3573
3664
  kind: "file";
3574
3665
  }) & {
3575
3666
  text?: string;
3667
+ variant?: string;
3576
3668
  })) | ({
3577
3669
  __TYPE__: "MediaLink";
3578
3670
  } & {
3579
3671
  kind: "media";
3580
3672
  } & {
3581
3673
  text?: string;
3674
+ variant?: string;
3582
3675
  }) | ({
3583
3676
  __TYPE__: "DocumentLink";
3584
3677
  } & (({
@@ -3587,6 +3680,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3587
3680
  kind: "document";
3588
3681
  }) & {
3589
3682
  text?: string;
3683
+ variant?: string;
3590
3684
  })) | ({
3591
3685
  __TYPE__: "ExternalLink";
3592
3686
  } & ((({
@@ -3601,12 +3695,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3601
3695
  kind: "web";
3602
3696
  }) & {
3603
3697
  text?: string;
3698
+ variant?: string;
3604
3699
  })) | ({
3605
3700
  __TYPE__: "AnyLink";
3606
3701
  } & {
3607
3702
  kind: "any";
3608
3703
  } & {
3609
3704
  text?: string;
3705
+ variant?: string;
3610
3706
  });
3611
3707
  })[];
3612
3708
  } | import("../GroupContent").GroupContent | {
@@ -3902,6 +3998,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3902
3998
  kind: "image";
3903
3999
  }) & {
3904
4000
  text?: string;
4001
+ variant?: string;
3905
4002
  })) | ({
3906
4003
  __TYPE__: "FileLink";
3907
4004
  } & ((({
@@ -3916,12 +4013,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3916
4013
  kind: "file";
3917
4014
  }) & {
3918
4015
  text?: string;
4016
+ variant?: string;
3919
4017
  })) | ({
3920
4018
  __TYPE__: "MediaLink";
3921
4019
  } & {
3922
4020
  kind: "media";
3923
4021
  } & {
3924
4022
  text?: string;
4023
+ variant?: string;
3925
4024
  }) | ({
3926
4025
  __TYPE__: "DocumentLink";
3927
4026
  } & (({
@@ -3930,6 +4029,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3930
4029
  kind: "document";
3931
4030
  }) & {
3932
4031
  text?: string;
4032
+ variant?: string;
3933
4033
  })) | ({
3934
4034
  __TYPE__: "ExternalLink";
3935
4035
  } & ((({
@@ -3944,12 +4044,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3944
4044
  kind: "web";
3945
4045
  }) & {
3946
4046
  text?: string;
4047
+ variant?: string;
3947
4048
  })) | ({
3948
4049
  __TYPE__: "AnyLink";
3949
4050
  } & {
3950
4051
  kind: "any";
3951
4052
  } & {
3952
4053
  text?: string;
4054
+ variant?: string;
3953
4055
  });
3954
4056
  }) | {
3955
4057
  __TYPE__: "RepeatableContent";
@@ -3974,6 +4076,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3974
4076
  kind: "image";
3975
4077
  }) & {
3976
4078
  text?: string;
4079
+ variant?: string;
3977
4080
  })) | ({
3978
4081
  __TYPE__: "FileLink";
3979
4082
  } & ((({
@@ -3988,12 +4091,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
3988
4091
  kind: "file";
3989
4092
  }) & {
3990
4093
  text?: string;
4094
+ variant?: string;
3991
4095
  })) | ({
3992
4096
  __TYPE__: "MediaLink";
3993
4097
  } & {
3994
4098
  kind: "media";
3995
4099
  } & {
3996
4100
  text?: string;
4101
+ variant?: string;
3997
4102
  }) | ({
3998
4103
  __TYPE__: "DocumentLink";
3999
4104
  } & (({
@@ -4002,6 +4107,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4002
4107
  kind: "document";
4003
4108
  }) & {
4004
4109
  text?: string;
4110
+ variant?: string;
4005
4111
  })) | ({
4006
4112
  __TYPE__: "ExternalLink";
4007
4113
  } & ((({
@@ -4016,12 +4122,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4016
4122
  kind: "web";
4017
4123
  }) & {
4018
4124
  text?: string;
4125
+ variant?: string;
4019
4126
  })) | ({
4020
4127
  __TYPE__: "AnyLink";
4021
4128
  } & {
4022
4129
  kind: "any";
4023
4130
  } & {
4024
4131
  text?: string;
4132
+ variant?: string;
4025
4133
  });
4026
4134
  })[];
4027
4135
  } | import("../GroupContent").GroupContent | {
@@ -4315,6 +4423,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4315
4423
  kind: "image";
4316
4424
  }) & {
4317
4425
  text?: string;
4426
+ variant?: string;
4318
4427
  })) | ({
4319
4428
  __TYPE__: "FileLink";
4320
4429
  } & ((({
@@ -4329,12 +4438,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4329
4438
  kind: "file";
4330
4439
  }) & {
4331
4440
  text?: string;
4441
+ variant?: string;
4332
4442
  })) | ({
4333
4443
  __TYPE__: "MediaLink";
4334
4444
  } & {
4335
4445
  kind: "media";
4336
4446
  } & {
4337
4447
  text?: string;
4448
+ variant?: string;
4338
4449
  }) | ({
4339
4450
  __TYPE__: "DocumentLink";
4340
4451
  } & (({
@@ -4343,6 +4454,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4343
4454
  kind: "document";
4344
4455
  }) & {
4345
4456
  text?: string;
4457
+ variant?: string;
4346
4458
  })) | ({
4347
4459
  __TYPE__: "ExternalLink";
4348
4460
  } & ((({
@@ -4357,12 +4469,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4357
4469
  kind: "web";
4358
4470
  }) & {
4359
4471
  text?: string;
4472
+ variant?: string;
4360
4473
  })) | ({
4361
4474
  __TYPE__: "AnyLink";
4362
4475
  } & {
4363
4476
  kind: "any";
4364
4477
  } & {
4365
4478
  text?: string;
4479
+ variant?: string;
4366
4480
  });
4367
4481
  }) | {
4368
4482
  __TYPE__: "RepeatableContent";
@@ -4387,6 +4501,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4387
4501
  kind: "image";
4388
4502
  }) & {
4389
4503
  text?: string;
4504
+ variant?: string;
4390
4505
  })) | ({
4391
4506
  __TYPE__: "FileLink";
4392
4507
  } & ((({
@@ -4401,12 +4516,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4401
4516
  kind: "file";
4402
4517
  }) & {
4403
4518
  text?: string;
4519
+ variant?: string;
4404
4520
  })) | ({
4405
4521
  __TYPE__: "MediaLink";
4406
4522
  } & {
4407
4523
  kind: "media";
4408
4524
  } & {
4409
4525
  text?: string;
4526
+ variant?: string;
4410
4527
  }) | ({
4411
4528
  __TYPE__: "DocumentLink";
4412
4529
  } & (({
@@ -4415,6 +4532,7 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4415
4532
  kind: "document";
4416
4533
  }) & {
4417
4534
  text?: string;
4535
+ variant?: string;
4418
4536
  })) | ({
4419
4537
  __TYPE__: "ExternalLink";
4420
4538
  } & ((({
@@ -4429,12 +4547,14 @@ export declare const SlicesItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
4429
4547
  kind: "web";
4430
4548
  }) & {
4431
4549
  text?: string;
4550
+ variant?: string;
4432
4551
  })) | ({
4433
4552
  __TYPE__: "AnyLink";
4434
4553
  } & {
4435
4554
  kind: "any";
4436
4555
  } & {
4437
4556
  text?: string;
4557
+ variant?: string;
4438
4558
  });
4439
4559
  })[];
4440
4560
  } | import("../GroupContent").GroupContent | {