@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
@@ -141,6 +141,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
141
141
  kind: "image";
142
142
  }) & {
143
143
  text?: string;
144
+ variant?: string;
144
145
  })) | ({
145
146
  __TYPE__: "FileLink";
146
147
  } & ((({
@@ -155,12 +156,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
155
156
  kind: "file";
156
157
  }) & {
157
158
  text?: string;
159
+ variant?: string;
158
160
  })) | ({
159
161
  __TYPE__: "MediaLink";
160
162
  } & {
161
163
  kind: "media";
162
164
  } & {
163
165
  text?: string;
166
+ variant?: string;
164
167
  }) | ({
165
168
  __TYPE__: "DocumentLink";
166
169
  } & (({
@@ -169,6 +172,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
169
172
  kind: "document";
170
173
  }) & {
171
174
  text?: string;
175
+ variant?: string;
172
176
  })) | ({
173
177
  __TYPE__: "ExternalLink";
174
178
  } & ((({
@@ -183,12 +187,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
183
187
  kind: "web";
184
188
  }) & {
185
189
  text?: string;
190
+ variant?: string;
186
191
  })) | ({
187
192
  __TYPE__: "AnyLink";
188
193
  } & {
189
194
  kind: "any";
190
195
  } & {
191
196
  text?: string;
197
+ variant?: string;
192
198
  });
193
199
  }) | {
194
200
  __TYPE__: "RepeatableContent";
@@ -213,6 +219,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
213
219
  kind: "image";
214
220
  }) & {
215
221
  text?: string;
222
+ variant?: string;
216
223
  })) | ({
217
224
  __TYPE__: "FileLink";
218
225
  } & ((({
@@ -227,12 +234,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
227
234
  kind: "file";
228
235
  }) & {
229
236
  text?: string;
237
+ variant?: string;
230
238
  })) | ({
231
239
  __TYPE__: "MediaLink";
232
240
  } & {
233
241
  kind: "media";
234
242
  } & {
235
243
  text?: string;
244
+ variant?: string;
236
245
  }) | ({
237
246
  __TYPE__: "DocumentLink";
238
247
  } & (({
@@ -241,6 +250,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
241
250
  kind: "document";
242
251
  }) & {
243
252
  text?: string;
253
+ variant?: string;
244
254
  })) | ({
245
255
  __TYPE__: "ExternalLink";
246
256
  } & ((({
@@ -255,12 +265,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
255
265
  kind: "web";
256
266
  }) & {
257
267
  text?: string;
268
+ variant?: string;
258
269
  })) | ({
259
270
  __TYPE__: "AnyLink";
260
271
  } & {
261
272
  kind: "any";
262
273
  } & {
263
274
  text?: string;
275
+ variant?: string;
264
276
  });
265
277
  })[];
266
278
  } | import("..").GroupContent | {
@@ -553,6 +565,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
553
565
  kind: "image";
554
566
  }) & {
555
567
  text?: string;
568
+ variant?: string;
556
569
  })) | ({
557
570
  __TYPE__: "FileLink";
558
571
  } & ((({
@@ -567,12 +580,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
567
580
  kind: "file";
568
581
  }) & {
569
582
  text?: string;
583
+ variant?: string;
570
584
  })) | ({
571
585
  __TYPE__: "MediaLink";
572
586
  } & {
573
587
  kind: "media";
574
588
  } & {
575
589
  text?: string;
590
+ variant?: string;
576
591
  }) | ({
577
592
  __TYPE__: "DocumentLink";
578
593
  } & (({
@@ -581,6 +596,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
581
596
  kind: "document";
582
597
  }) & {
583
598
  text?: string;
599
+ variant?: string;
584
600
  })) | ({
585
601
  __TYPE__: "ExternalLink";
586
602
  } & ((({
@@ -595,12 +611,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
595
611
  kind: "web";
596
612
  }) & {
597
613
  text?: string;
614
+ variant?: string;
598
615
  })) | ({
599
616
  __TYPE__: "AnyLink";
600
617
  } & {
601
618
  kind: "any";
602
619
  } & {
603
620
  text?: string;
621
+ variant?: string;
604
622
  });
605
623
  }) | {
606
624
  __TYPE__: "RepeatableContent";
@@ -625,6 +643,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
625
643
  kind: "image";
626
644
  }) & {
627
645
  text?: string;
646
+ variant?: string;
628
647
  })) | ({
629
648
  __TYPE__: "FileLink";
630
649
  } & ((({
@@ -639,12 +658,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
639
658
  kind: "file";
640
659
  }) & {
641
660
  text?: string;
661
+ variant?: string;
642
662
  })) | ({
643
663
  __TYPE__: "MediaLink";
644
664
  } & {
645
665
  kind: "media";
646
666
  } & {
647
667
  text?: string;
668
+ variant?: string;
648
669
  }) | ({
649
670
  __TYPE__: "DocumentLink";
650
671
  } & (({
@@ -653,6 +674,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
653
674
  kind: "document";
654
675
  }) & {
655
676
  text?: string;
677
+ variant?: string;
656
678
  })) | ({
657
679
  __TYPE__: "ExternalLink";
658
680
  } & ((({
@@ -667,12 +689,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
667
689
  kind: "web";
668
690
  }) & {
669
691
  text?: string;
692
+ variant?: string;
670
693
  })) | ({
671
694
  __TYPE__: "AnyLink";
672
695
  } & {
673
696
  kind: "any";
674
697
  } & {
675
698
  text?: string;
699
+ variant?: string;
676
700
  });
677
701
  })[];
678
702
  } | {
@@ -966,6 +990,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
966
990
  kind: "image";
967
991
  }) & {
968
992
  text?: string;
993
+ variant?: string;
969
994
  })) | ({
970
995
  __TYPE__: "FileLink";
971
996
  } & ((({
@@ -980,12 +1005,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
980
1005
  kind: "file";
981
1006
  }) & {
982
1007
  text?: string;
1008
+ variant?: string;
983
1009
  })) | ({
984
1010
  __TYPE__: "MediaLink";
985
1011
  } & {
986
1012
  kind: "media";
987
1013
  } & {
988
1014
  text?: string;
1015
+ variant?: string;
989
1016
  }) | ({
990
1017
  __TYPE__: "DocumentLink";
991
1018
  } & (({
@@ -994,6 +1021,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
994
1021
  kind: "document";
995
1022
  }) & {
996
1023
  text?: string;
1024
+ variant?: string;
997
1025
  })) | ({
998
1026
  __TYPE__: "ExternalLink";
999
1027
  } & ((({
@@ -1008,12 +1036,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1008
1036
  kind: "web";
1009
1037
  }) & {
1010
1038
  text?: string;
1039
+ variant?: string;
1011
1040
  })) | ({
1012
1041
  __TYPE__: "AnyLink";
1013
1042
  } & {
1014
1043
  kind: "any";
1015
1044
  } & {
1016
1045
  text?: string;
1046
+ variant?: string;
1017
1047
  });
1018
1048
  }) | {
1019
1049
  __TYPE__: "RepeatableContent";
@@ -1038,6 +1068,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1038
1068
  kind: "image";
1039
1069
  }) & {
1040
1070
  text?: string;
1071
+ variant?: string;
1041
1072
  })) | ({
1042
1073
  __TYPE__: "FileLink";
1043
1074
  } & ((({
@@ -1052,12 +1083,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1052
1083
  kind: "file";
1053
1084
  }) & {
1054
1085
  text?: string;
1086
+ variant?: string;
1055
1087
  })) | ({
1056
1088
  __TYPE__: "MediaLink";
1057
1089
  } & {
1058
1090
  kind: "media";
1059
1091
  } & {
1060
1092
  text?: string;
1093
+ variant?: string;
1061
1094
  }) | ({
1062
1095
  __TYPE__: "DocumentLink";
1063
1096
  } & (({
@@ -1066,6 +1099,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1066
1099
  kind: "document";
1067
1100
  }) & {
1068
1101
  text?: string;
1102
+ variant?: string;
1069
1103
  })) | ({
1070
1104
  __TYPE__: "ExternalLink";
1071
1105
  } & ((({
@@ -1080,12 +1114,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1080
1114
  kind: "web";
1081
1115
  }) & {
1082
1116
  text?: string;
1117
+ variant?: string;
1083
1118
  })) | ({
1084
1119
  __TYPE__: "AnyLink";
1085
1120
  } & {
1086
1121
  kind: "any";
1087
1122
  } & {
1088
1123
  text?: string;
1124
+ variant?: string;
1089
1125
  });
1090
1126
  })[];
1091
1127
  } | import("..").GroupContent | {
@@ -1381,6 +1417,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1381
1417
  kind: "image";
1382
1418
  }) & {
1383
1419
  text?: string;
1420
+ variant?: string;
1384
1421
  })) | ({
1385
1422
  __TYPE__: "FileLink";
1386
1423
  } & ((({
@@ -1395,12 +1432,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1395
1432
  kind: "file";
1396
1433
  }) & {
1397
1434
  text?: string;
1435
+ variant?: string;
1398
1436
  })) | ({
1399
1437
  __TYPE__: "MediaLink";
1400
1438
  } & {
1401
1439
  kind: "media";
1402
1440
  } & {
1403
1441
  text?: string;
1442
+ variant?: string;
1404
1443
  }) | ({
1405
1444
  __TYPE__: "DocumentLink";
1406
1445
  } & (({
@@ -1409,6 +1448,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1409
1448
  kind: "document";
1410
1449
  }) & {
1411
1450
  text?: string;
1451
+ variant?: string;
1412
1452
  })) | ({
1413
1453
  __TYPE__: "ExternalLink";
1414
1454
  } & ((({
@@ -1423,12 +1463,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1423
1463
  kind: "web";
1424
1464
  }) & {
1425
1465
  text?: string;
1466
+ variant?: string;
1426
1467
  })) | ({
1427
1468
  __TYPE__: "AnyLink";
1428
1469
  } & {
1429
1470
  kind: "any";
1430
1471
  } & {
1431
1472
  text?: string;
1473
+ variant?: string;
1432
1474
  });
1433
1475
  }) | {
1434
1476
  __TYPE__: "RepeatableContent";
@@ -1453,6 +1495,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1453
1495
  kind: "image";
1454
1496
  }) & {
1455
1497
  text?: string;
1498
+ variant?: string;
1456
1499
  })) | ({
1457
1500
  __TYPE__: "FileLink";
1458
1501
  } & ((({
@@ -1467,12 +1510,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1467
1510
  kind: "file";
1468
1511
  }) & {
1469
1512
  text?: string;
1513
+ variant?: string;
1470
1514
  })) | ({
1471
1515
  __TYPE__: "MediaLink";
1472
1516
  } & {
1473
1517
  kind: "media";
1474
1518
  } & {
1475
1519
  text?: string;
1520
+ variant?: string;
1476
1521
  }) | ({
1477
1522
  __TYPE__: "DocumentLink";
1478
1523
  } & (({
@@ -1481,6 +1526,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1481
1526
  kind: "document";
1482
1527
  }) & {
1483
1528
  text?: string;
1529
+ variant?: string;
1484
1530
  })) | ({
1485
1531
  __TYPE__: "ExternalLink";
1486
1532
  } & ((({
@@ -1495,12 +1541,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1495
1541
  kind: "web";
1496
1542
  }) & {
1497
1543
  text?: string;
1544
+ variant?: string;
1498
1545
  })) | ({
1499
1546
  __TYPE__: "AnyLink";
1500
1547
  } & {
1501
1548
  kind: "any";
1502
1549
  } & {
1503
1550
  text?: string;
1551
+ variant?: string;
1504
1552
  });
1505
1553
  })[];
1506
1554
  } | import("..").GroupContent | {
@@ -1794,6 +1842,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1794
1842
  kind: "image";
1795
1843
  }) & {
1796
1844
  text?: string;
1845
+ variant?: string;
1797
1846
  })) | ({
1798
1847
  __TYPE__: "FileLink";
1799
1848
  } & ((({
@@ -1808,12 +1857,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1808
1857
  kind: "file";
1809
1858
  }) & {
1810
1859
  text?: string;
1860
+ variant?: string;
1811
1861
  })) | ({
1812
1862
  __TYPE__: "MediaLink";
1813
1863
  } & {
1814
1864
  kind: "media";
1815
1865
  } & {
1816
1866
  text?: string;
1867
+ variant?: string;
1817
1868
  }) | ({
1818
1869
  __TYPE__: "DocumentLink";
1819
1870
  } & (({
@@ -1822,6 +1873,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1822
1873
  kind: "document";
1823
1874
  }) & {
1824
1875
  text?: string;
1876
+ variant?: string;
1825
1877
  })) | ({
1826
1878
  __TYPE__: "ExternalLink";
1827
1879
  } & ((({
@@ -1836,12 +1888,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1836
1888
  kind: "web";
1837
1889
  }) & {
1838
1890
  text?: string;
1891
+ variant?: string;
1839
1892
  })) | ({
1840
1893
  __TYPE__: "AnyLink";
1841
1894
  } & {
1842
1895
  kind: "any";
1843
1896
  } & {
1844
1897
  text?: string;
1898
+ variant?: string;
1845
1899
  });
1846
1900
  }) | {
1847
1901
  __TYPE__: "RepeatableContent";
@@ -1866,6 +1920,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1866
1920
  kind: "image";
1867
1921
  }) & {
1868
1922
  text?: string;
1923
+ variant?: string;
1869
1924
  })) | ({
1870
1925
  __TYPE__: "FileLink";
1871
1926
  } & ((({
@@ -1880,12 +1935,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1880
1935
  kind: "file";
1881
1936
  }) & {
1882
1937
  text?: string;
1938
+ variant?: string;
1883
1939
  })) | ({
1884
1940
  __TYPE__: "MediaLink";
1885
1941
  } & {
1886
1942
  kind: "media";
1887
1943
  } & {
1888
1944
  text?: string;
1945
+ variant?: string;
1889
1946
  }) | ({
1890
1947
  __TYPE__: "DocumentLink";
1891
1948
  } & (({
@@ -1894,6 +1951,7 @@ export declare const isSlicesContent: (u: unknown) => u is {
1894
1951
  kind: "document";
1895
1952
  }) & {
1896
1953
  text?: string;
1954
+ variant?: string;
1897
1955
  })) | ({
1898
1956
  __TYPE__: "ExternalLink";
1899
1957
  } & ((({
@@ -1908,12 +1966,14 @@ export declare const isSlicesContent: (u: unknown) => u is {
1908
1966
  kind: "web";
1909
1967
  }) & {
1910
1968
  text?: string;
1969
+ variant?: string;
1911
1970
  })) | ({
1912
1971
  __TYPE__: "AnyLink";
1913
1972
  } & {
1914
1973
  kind: "any";
1915
1974
  } & {
1916
1975
  text?: string;
1976
+ variant?: string;
1917
1977
  });
1918
1978
  })[];
1919
1979
  } | import("..").GroupContent | {
@@ -2215,6 +2275,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2215
2275
  kind: "image";
2216
2276
  }) & {
2217
2277
  text?: string;
2278
+ variant?: string;
2218
2279
  })) | ({
2219
2280
  __TYPE__: "FileLink";
2220
2281
  } & ((({
@@ -2229,12 +2290,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2229
2290
  kind: "file";
2230
2291
  }) & {
2231
2292
  text?: string;
2293
+ variant?: string;
2232
2294
  })) | ({
2233
2295
  __TYPE__: "MediaLink";
2234
2296
  } & {
2235
2297
  kind: "media";
2236
2298
  } & {
2237
2299
  text?: string;
2300
+ variant?: string;
2238
2301
  }) | ({
2239
2302
  __TYPE__: "DocumentLink";
2240
2303
  } & (({
@@ -2243,6 +2306,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2243
2306
  kind: "document";
2244
2307
  }) & {
2245
2308
  text?: string;
2309
+ variant?: string;
2246
2310
  })) | ({
2247
2311
  __TYPE__: "ExternalLink";
2248
2312
  } & ((({
@@ -2257,12 +2321,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2257
2321
  kind: "web";
2258
2322
  }) & {
2259
2323
  text?: string;
2324
+ variant?: string;
2260
2325
  })) | ({
2261
2326
  __TYPE__: "AnyLink";
2262
2327
  } & {
2263
2328
  kind: "any";
2264
2329
  } & {
2265
2330
  text?: string;
2331
+ variant?: string;
2266
2332
  });
2267
2333
  }) | {
2268
2334
  __TYPE__: "RepeatableContent";
@@ -2287,6 +2353,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2287
2353
  kind: "image";
2288
2354
  }) & {
2289
2355
  text?: string;
2356
+ variant?: string;
2290
2357
  })) | ({
2291
2358
  __TYPE__: "FileLink";
2292
2359
  } & ((({
@@ -2301,12 +2368,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2301
2368
  kind: "file";
2302
2369
  }) & {
2303
2370
  text?: string;
2371
+ variant?: string;
2304
2372
  })) | ({
2305
2373
  __TYPE__: "MediaLink";
2306
2374
  } & {
2307
2375
  kind: "media";
2308
2376
  } & {
2309
2377
  text?: string;
2378
+ variant?: string;
2310
2379
  }) | ({
2311
2380
  __TYPE__: "DocumentLink";
2312
2381
  } & (({
@@ -2315,6 +2384,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2315
2384
  kind: "document";
2316
2385
  }) & {
2317
2386
  text?: string;
2387
+ variant?: string;
2318
2388
  })) | ({
2319
2389
  __TYPE__: "ExternalLink";
2320
2390
  } & ((({
@@ -2329,12 +2399,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2329
2399
  kind: "web";
2330
2400
  }) & {
2331
2401
  text?: string;
2402
+ variant?: string;
2332
2403
  })) | ({
2333
2404
  __TYPE__: "AnyLink";
2334
2405
  } & {
2335
2406
  kind: "any";
2336
2407
  } & {
2337
2408
  text?: string;
2409
+ variant?: string;
2338
2410
  });
2339
2411
  })[];
2340
2412
  } | import("..").GroupContent | {
@@ -2627,6 +2699,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2627
2699
  kind: "image";
2628
2700
  }) & {
2629
2701
  text?: string;
2702
+ variant?: string;
2630
2703
  })) | ({
2631
2704
  __TYPE__: "FileLink";
2632
2705
  } & ((({
@@ -2641,12 +2714,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2641
2714
  kind: "file";
2642
2715
  }) & {
2643
2716
  text?: string;
2717
+ variant?: string;
2644
2718
  })) | ({
2645
2719
  __TYPE__: "MediaLink";
2646
2720
  } & {
2647
2721
  kind: "media";
2648
2722
  } & {
2649
2723
  text?: string;
2724
+ variant?: string;
2650
2725
  }) | ({
2651
2726
  __TYPE__: "DocumentLink";
2652
2727
  } & (({
@@ -2655,6 +2730,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2655
2730
  kind: "document";
2656
2731
  }) & {
2657
2732
  text?: string;
2733
+ variant?: string;
2658
2734
  })) | ({
2659
2735
  __TYPE__: "ExternalLink";
2660
2736
  } & ((({
@@ -2669,12 +2745,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2669
2745
  kind: "web";
2670
2746
  }) & {
2671
2747
  text?: string;
2748
+ variant?: string;
2672
2749
  })) | ({
2673
2750
  __TYPE__: "AnyLink";
2674
2751
  } & {
2675
2752
  kind: "any";
2676
2753
  } & {
2677
2754
  text?: string;
2755
+ variant?: string;
2678
2756
  });
2679
2757
  }) | {
2680
2758
  __TYPE__: "RepeatableContent";
@@ -2699,6 +2777,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2699
2777
  kind: "image";
2700
2778
  }) & {
2701
2779
  text?: string;
2780
+ variant?: string;
2702
2781
  })) | ({
2703
2782
  __TYPE__: "FileLink";
2704
2783
  } & ((({
@@ -2713,12 +2792,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2713
2792
  kind: "file";
2714
2793
  }) & {
2715
2794
  text?: string;
2795
+ variant?: string;
2716
2796
  })) | ({
2717
2797
  __TYPE__: "MediaLink";
2718
2798
  } & {
2719
2799
  kind: "media";
2720
2800
  } & {
2721
2801
  text?: string;
2802
+ variant?: string;
2722
2803
  }) | ({
2723
2804
  __TYPE__: "DocumentLink";
2724
2805
  } & (({
@@ -2727,6 +2808,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2727
2808
  kind: "document";
2728
2809
  }) & {
2729
2810
  text?: string;
2811
+ variant?: string;
2730
2812
  })) | ({
2731
2813
  __TYPE__: "ExternalLink";
2732
2814
  } & ((({
@@ -2741,12 +2823,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
2741
2823
  kind: "web";
2742
2824
  }) & {
2743
2825
  text?: string;
2826
+ variant?: string;
2744
2827
  })) | ({
2745
2828
  __TYPE__: "AnyLink";
2746
2829
  } & {
2747
2830
  kind: "any";
2748
2831
  } & {
2749
2832
  text?: string;
2833
+ variant?: string;
2750
2834
  });
2751
2835
  })[];
2752
2836
  } | {
@@ -3040,6 +3124,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3040
3124
  kind: "image";
3041
3125
  }) & {
3042
3126
  text?: string;
3127
+ variant?: string;
3043
3128
  })) | ({
3044
3129
  __TYPE__: "FileLink";
3045
3130
  } & ((({
@@ -3054,12 +3139,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3054
3139
  kind: "file";
3055
3140
  }) & {
3056
3141
  text?: string;
3142
+ variant?: string;
3057
3143
  })) | ({
3058
3144
  __TYPE__: "MediaLink";
3059
3145
  } & {
3060
3146
  kind: "media";
3061
3147
  } & {
3062
3148
  text?: string;
3149
+ variant?: string;
3063
3150
  }) | ({
3064
3151
  __TYPE__: "DocumentLink";
3065
3152
  } & (({
@@ -3068,6 +3155,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3068
3155
  kind: "document";
3069
3156
  }) & {
3070
3157
  text?: string;
3158
+ variant?: string;
3071
3159
  })) | ({
3072
3160
  __TYPE__: "ExternalLink";
3073
3161
  } & ((({
@@ -3082,12 +3170,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3082
3170
  kind: "web";
3083
3171
  }) & {
3084
3172
  text?: string;
3173
+ variant?: string;
3085
3174
  })) | ({
3086
3175
  __TYPE__: "AnyLink";
3087
3176
  } & {
3088
3177
  kind: "any";
3089
3178
  } & {
3090
3179
  text?: string;
3180
+ variant?: string;
3091
3181
  });
3092
3182
  }) | {
3093
3183
  __TYPE__: "RepeatableContent";
@@ -3112,6 +3202,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3112
3202
  kind: "image";
3113
3203
  }) & {
3114
3204
  text?: string;
3205
+ variant?: string;
3115
3206
  })) | ({
3116
3207
  __TYPE__: "FileLink";
3117
3208
  } & ((({
@@ -3126,12 +3217,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3126
3217
  kind: "file";
3127
3218
  }) & {
3128
3219
  text?: string;
3220
+ variant?: string;
3129
3221
  })) | ({
3130
3222
  __TYPE__: "MediaLink";
3131
3223
  } & {
3132
3224
  kind: "media";
3133
3225
  } & {
3134
3226
  text?: string;
3227
+ variant?: string;
3135
3228
  }) | ({
3136
3229
  __TYPE__: "DocumentLink";
3137
3230
  } & (({
@@ -3140,6 +3233,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3140
3233
  kind: "document";
3141
3234
  }) & {
3142
3235
  text?: string;
3236
+ variant?: string;
3143
3237
  })) | ({
3144
3238
  __TYPE__: "ExternalLink";
3145
3239
  } & ((({
@@ -3154,12 +3248,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3154
3248
  kind: "web";
3155
3249
  }) & {
3156
3250
  text?: string;
3251
+ variant?: string;
3157
3252
  })) | ({
3158
3253
  __TYPE__: "AnyLink";
3159
3254
  } & {
3160
3255
  kind: "any";
3161
3256
  } & {
3162
3257
  text?: string;
3258
+ variant?: string;
3163
3259
  });
3164
3260
  })[];
3165
3261
  } | import("..").GroupContent | {
@@ -3455,6 +3551,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3455
3551
  kind: "image";
3456
3552
  }) & {
3457
3553
  text?: string;
3554
+ variant?: string;
3458
3555
  })) | ({
3459
3556
  __TYPE__: "FileLink";
3460
3557
  } & ((({
@@ -3469,12 +3566,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3469
3566
  kind: "file";
3470
3567
  }) & {
3471
3568
  text?: string;
3569
+ variant?: string;
3472
3570
  })) | ({
3473
3571
  __TYPE__: "MediaLink";
3474
3572
  } & {
3475
3573
  kind: "media";
3476
3574
  } & {
3477
3575
  text?: string;
3576
+ variant?: string;
3478
3577
  }) | ({
3479
3578
  __TYPE__: "DocumentLink";
3480
3579
  } & (({
@@ -3483,6 +3582,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3483
3582
  kind: "document";
3484
3583
  }) & {
3485
3584
  text?: string;
3585
+ variant?: string;
3486
3586
  })) | ({
3487
3587
  __TYPE__: "ExternalLink";
3488
3588
  } & ((({
@@ -3497,12 +3597,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3497
3597
  kind: "web";
3498
3598
  }) & {
3499
3599
  text?: string;
3600
+ variant?: string;
3500
3601
  })) | ({
3501
3602
  __TYPE__: "AnyLink";
3502
3603
  } & {
3503
3604
  kind: "any";
3504
3605
  } & {
3505
3606
  text?: string;
3607
+ variant?: string;
3506
3608
  });
3507
3609
  }) | {
3508
3610
  __TYPE__: "RepeatableContent";
@@ -3527,6 +3629,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3527
3629
  kind: "image";
3528
3630
  }) & {
3529
3631
  text?: string;
3632
+ variant?: string;
3530
3633
  })) | ({
3531
3634
  __TYPE__: "FileLink";
3532
3635
  } & ((({
@@ -3541,12 +3644,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3541
3644
  kind: "file";
3542
3645
  }) & {
3543
3646
  text?: string;
3647
+ variant?: string;
3544
3648
  })) | ({
3545
3649
  __TYPE__: "MediaLink";
3546
3650
  } & {
3547
3651
  kind: "media";
3548
3652
  } & {
3549
3653
  text?: string;
3654
+ variant?: string;
3550
3655
  }) | ({
3551
3656
  __TYPE__: "DocumentLink";
3552
3657
  } & (({
@@ -3555,6 +3660,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3555
3660
  kind: "document";
3556
3661
  }) & {
3557
3662
  text?: string;
3663
+ variant?: string;
3558
3664
  })) | ({
3559
3665
  __TYPE__: "ExternalLink";
3560
3666
  } & ((({
@@ -3569,12 +3675,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3569
3675
  kind: "web";
3570
3676
  }) & {
3571
3677
  text?: string;
3678
+ variant?: string;
3572
3679
  })) | ({
3573
3680
  __TYPE__: "AnyLink";
3574
3681
  } & {
3575
3682
  kind: "any";
3576
3683
  } & {
3577
3684
  text?: string;
3685
+ variant?: string;
3578
3686
  });
3579
3687
  })[];
3580
3688
  } | import("..").GroupContent | {
@@ -3868,6 +3976,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3868
3976
  kind: "image";
3869
3977
  }) & {
3870
3978
  text?: string;
3979
+ variant?: string;
3871
3980
  })) | ({
3872
3981
  __TYPE__: "FileLink";
3873
3982
  } & ((({
@@ -3882,12 +3991,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3882
3991
  kind: "file";
3883
3992
  }) & {
3884
3993
  text?: string;
3994
+ variant?: string;
3885
3995
  })) | ({
3886
3996
  __TYPE__: "MediaLink";
3887
3997
  } & {
3888
3998
  kind: "media";
3889
3999
  } & {
3890
4000
  text?: string;
4001
+ variant?: string;
3891
4002
  }) | ({
3892
4003
  __TYPE__: "DocumentLink";
3893
4004
  } & (({
@@ -3896,6 +4007,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3896
4007
  kind: "document";
3897
4008
  }) & {
3898
4009
  text?: string;
4010
+ variant?: string;
3899
4011
  })) | ({
3900
4012
  __TYPE__: "ExternalLink";
3901
4013
  } & ((({
@@ -3910,12 +4022,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3910
4022
  kind: "web";
3911
4023
  }) & {
3912
4024
  text?: string;
4025
+ variant?: string;
3913
4026
  })) | ({
3914
4027
  __TYPE__: "AnyLink";
3915
4028
  } & {
3916
4029
  kind: "any";
3917
4030
  } & {
3918
4031
  text?: string;
4032
+ variant?: string;
3919
4033
  });
3920
4034
  }) | {
3921
4035
  __TYPE__: "RepeatableContent";
@@ -3940,6 +4054,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3940
4054
  kind: "image";
3941
4055
  }) & {
3942
4056
  text?: string;
4057
+ variant?: string;
3943
4058
  })) | ({
3944
4059
  __TYPE__: "FileLink";
3945
4060
  } & ((({
@@ -3954,12 +4069,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3954
4069
  kind: "file";
3955
4070
  }) & {
3956
4071
  text?: string;
4072
+ variant?: string;
3957
4073
  })) | ({
3958
4074
  __TYPE__: "MediaLink";
3959
4075
  } & {
3960
4076
  kind: "media";
3961
4077
  } & {
3962
4078
  text?: string;
4079
+ variant?: string;
3963
4080
  }) | ({
3964
4081
  __TYPE__: "DocumentLink";
3965
4082
  } & (({
@@ -3968,6 +4085,7 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3968
4085
  kind: "document";
3969
4086
  }) & {
3970
4087
  text?: string;
4088
+ variant?: string;
3971
4089
  })) | ({
3972
4090
  __TYPE__: "ExternalLink";
3973
4091
  } & ((({
@@ -3982,12 +4100,14 @@ export declare const SlicesLegacy: (ctx: LegacyContentCtx) => t.Type<{
3982
4100
  kind: "web";
3983
4101
  }) & {
3984
4102
  text?: string;
4103
+ variant?: string;
3985
4104
  })) | ({
3986
4105
  __TYPE__: "AnyLink";
3987
4106
  } & {
3988
4107
  kind: "any";
3989
4108
  } & {
3990
4109
  text?: string;
4110
+ variant?: string;
3991
4111
  });
3992
4112
  })[];
3993
4113
  } | import("..").GroupContent | {
@@ -4288,6 +4408,7 @@ export declare const SlicesContent: t.TypeC<{
4288
4408
  kind: t.LiteralC<"image">;
4289
4409
  }>>]>, t.ExactC<t.PartialC<{
4290
4410
  text: t.StringC;
4411
+ variant: t.StringC;
4291
4412
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4292
4413
  __TYPE__: t.LiteralC<"FileLink">;
4293
4414
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4302,6 +4423,7 @@ export declare const SlicesContent: t.TypeC<{
4302
4423
  kind: t.LiteralC<"file">;
4303
4424
  }>>]>, t.ExactC<t.PartialC<{
4304
4425
  text: t.StringC;
4426
+ variant: t.StringC;
4305
4427
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4306
4428
  __TYPE__: t.LiteralC<"DocumentLink">;
4307
4429
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -4310,6 +4432,7 @@ export declare const SlicesContent: t.TypeC<{
4310
4432
  kind: t.LiteralC<"document">;
4311
4433
  }>>]>, t.ExactC<t.PartialC<{
4312
4434
  text: t.StringC;
4435
+ variant: t.StringC;
4313
4436
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4314
4437
  __TYPE__: t.LiteralC<"ExternalLink">;
4315
4438
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4326,18 +4449,21 @@ export declare const SlicesContent: t.TypeC<{
4326
4449
  kind: t.LiteralC<"web">;
4327
4450
  }>>]>, t.ExactC<t.PartialC<{
4328
4451
  text: t.StringC;
4452
+ variant: t.StringC;
4329
4453
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4330
4454
  __TYPE__: t.LiteralC<"MediaLink">;
4331
4455
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4332
4456
  kind: t.LiteralC<"media">;
4333
4457
  }>>, t.ExactC<t.PartialC<{
4334
4458
  text: t.StringC;
4459
+ variant: t.StringC;
4335
4460
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4336
4461
  __TYPE__: t.LiteralC<"AnyLink">;
4337
4462
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
4338
4463
  kind: t.LiteralC<"any">;
4339
4464
  }>, t.PartialC<{
4340
4465
  text: t.StringC;
4466
+ variant: t.StringC;
4341
4467
  }>]>>]>]>;
4342
4468
  }>>]>, t.ExactC<t.TypeC<{
4343
4469
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -4603,6 +4729,7 @@ export declare const SlicesContent: t.TypeC<{
4603
4729
  kind: t.LiteralC<"image">;
4604
4730
  }>>]>, t.ExactC<t.PartialC<{
4605
4731
  text: t.StringC;
4732
+ variant: t.StringC;
4606
4733
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4607
4734
  __TYPE__: t.LiteralC<"FileLink">;
4608
4735
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4617,6 +4744,7 @@ export declare const SlicesContent: t.TypeC<{
4617
4744
  kind: t.LiteralC<"file">;
4618
4745
  }>>]>, t.ExactC<t.PartialC<{
4619
4746
  text: t.StringC;
4747
+ variant: t.StringC;
4620
4748
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4621
4749
  __TYPE__: t.LiteralC<"DocumentLink">;
4622
4750
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -4625,6 +4753,7 @@ export declare const SlicesContent: t.TypeC<{
4625
4753
  kind: t.LiteralC<"document">;
4626
4754
  }>>]>, t.ExactC<t.PartialC<{
4627
4755
  text: t.StringC;
4756
+ variant: t.StringC;
4628
4757
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4629
4758
  __TYPE__: t.LiteralC<"ExternalLink">;
4630
4759
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4641,18 +4770,21 @@ export declare const SlicesContent: t.TypeC<{
4641
4770
  kind: t.LiteralC<"web">;
4642
4771
  }>>]>, t.ExactC<t.PartialC<{
4643
4772
  text: t.StringC;
4773
+ variant: t.StringC;
4644
4774
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4645
4775
  __TYPE__: t.LiteralC<"MediaLink">;
4646
4776
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4647
4777
  kind: t.LiteralC<"media">;
4648
4778
  }>>, t.ExactC<t.PartialC<{
4649
4779
  text: t.StringC;
4780
+ variant: t.StringC;
4650
4781
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4651
4782
  __TYPE__: t.LiteralC<"AnyLink">;
4652
4783
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
4653
4784
  kind: t.LiteralC<"any">;
4654
4785
  }>, t.PartialC<{
4655
4786
  text: t.StringC;
4787
+ variant: t.StringC;
4656
4788
  }>]>>]>]>;
4657
4789
  }>>]>>;
4658
4790
  }>>]>>;
@@ -4788,6 +4920,7 @@ export declare const SlicesContent: t.TypeC<{
4788
4920
  kind: t.LiteralC<"image">;
4789
4921
  }>>]>, t.ExactC<t.PartialC<{
4790
4922
  text: t.StringC;
4923
+ variant: t.StringC;
4791
4924
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4792
4925
  __TYPE__: t.LiteralC<"FileLink">;
4793
4926
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4802,6 +4935,7 @@ export declare const SlicesContent: t.TypeC<{
4802
4935
  kind: t.LiteralC<"file">;
4803
4936
  }>>]>, t.ExactC<t.PartialC<{
4804
4937
  text: t.StringC;
4938
+ variant: t.StringC;
4805
4939
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4806
4940
  __TYPE__: t.LiteralC<"DocumentLink">;
4807
4941
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -4810,6 +4944,7 @@ export declare const SlicesContent: t.TypeC<{
4810
4944
  kind: t.LiteralC<"document">;
4811
4945
  }>>]>, t.ExactC<t.PartialC<{
4812
4946
  text: t.StringC;
4947
+ variant: t.StringC;
4813
4948
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4814
4949
  __TYPE__: t.LiteralC<"ExternalLink">;
4815
4950
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -4826,18 +4961,21 @@ export declare const SlicesContent: t.TypeC<{
4826
4961
  kind: t.LiteralC<"web">;
4827
4962
  }>>]>, t.ExactC<t.PartialC<{
4828
4963
  text: t.StringC;
4964
+ variant: t.StringC;
4829
4965
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4830
4966
  __TYPE__: t.LiteralC<"MediaLink">;
4831
4967
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
4832
4968
  kind: t.LiteralC<"media">;
4833
4969
  }>>, t.ExactC<t.PartialC<{
4834
4970
  text: t.StringC;
4971
+ variant: t.StringC;
4835
4972
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
4836
4973
  __TYPE__: t.LiteralC<"AnyLink">;
4837
4974
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
4838
4975
  kind: t.LiteralC<"any">;
4839
4976
  }>, t.PartialC<{
4840
4977
  text: t.StringC;
4978
+ variant: t.StringC;
4841
4979
  }>]>>]>]>;
4842
4980
  }>>]>, t.ExactC<t.TypeC<{
4843
4981
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -5103,6 +5241,7 @@ export declare const SlicesContent: t.TypeC<{
5103
5241
  kind: t.LiteralC<"image">;
5104
5242
  }>>]>, t.ExactC<t.PartialC<{
5105
5243
  text: t.StringC;
5244
+ variant: t.StringC;
5106
5245
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5107
5246
  __TYPE__: t.LiteralC<"FileLink">;
5108
5247
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5117,6 +5256,7 @@ export declare const SlicesContent: t.TypeC<{
5117
5256
  kind: t.LiteralC<"file">;
5118
5257
  }>>]>, t.ExactC<t.PartialC<{
5119
5258
  text: t.StringC;
5259
+ variant: t.StringC;
5120
5260
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5121
5261
  __TYPE__: t.LiteralC<"DocumentLink">;
5122
5262
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5125,6 +5265,7 @@ export declare const SlicesContent: t.TypeC<{
5125
5265
  kind: t.LiteralC<"document">;
5126
5266
  }>>]>, t.ExactC<t.PartialC<{
5127
5267
  text: t.StringC;
5268
+ variant: t.StringC;
5128
5269
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5129
5270
  __TYPE__: t.LiteralC<"ExternalLink">;
5130
5271
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5141,18 +5282,21 @@ export declare const SlicesContent: t.TypeC<{
5141
5282
  kind: t.LiteralC<"web">;
5142
5283
  }>>]>, t.ExactC<t.PartialC<{
5143
5284
  text: t.StringC;
5285
+ variant: t.StringC;
5144
5286
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5145
5287
  __TYPE__: t.LiteralC<"MediaLink">;
5146
5288
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5147
5289
  kind: t.LiteralC<"media">;
5148
5290
  }>>, t.ExactC<t.PartialC<{
5149
5291
  text: t.StringC;
5292
+ variant: t.StringC;
5150
5293
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5151
5294
  __TYPE__: t.LiteralC<"AnyLink">;
5152
5295
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
5153
5296
  kind: t.LiteralC<"any">;
5154
5297
  }>, t.PartialC<{
5155
5298
  text: t.StringC;
5299
+ variant: t.StringC;
5156
5300
  }>]>>]>]>;
5157
5301
  }>>]>>;
5158
5302
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
@@ -5290,6 +5434,7 @@ export declare const SlicesContent: t.TypeC<{
5290
5434
  kind: t.LiteralC<"image">;
5291
5435
  }>>]>, t.ExactC<t.PartialC<{
5292
5436
  text: t.StringC;
5437
+ variant: t.StringC;
5293
5438
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5294
5439
  __TYPE__: t.LiteralC<"FileLink">;
5295
5440
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5304,6 +5449,7 @@ export declare const SlicesContent: t.TypeC<{
5304
5449
  kind: t.LiteralC<"file">;
5305
5450
  }>>]>, t.ExactC<t.PartialC<{
5306
5451
  text: t.StringC;
5452
+ variant: t.StringC;
5307
5453
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5308
5454
  __TYPE__: t.LiteralC<"DocumentLink">;
5309
5455
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5312,6 +5458,7 @@ export declare const SlicesContent: t.TypeC<{
5312
5458
  kind: t.LiteralC<"document">;
5313
5459
  }>>]>, t.ExactC<t.PartialC<{
5314
5460
  text: t.StringC;
5461
+ variant: t.StringC;
5315
5462
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5316
5463
  __TYPE__: t.LiteralC<"ExternalLink">;
5317
5464
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5328,18 +5475,21 @@ export declare const SlicesContent: t.TypeC<{
5328
5475
  kind: t.LiteralC<"web">;
5329
5476
  }>>]>, t.ExactC<t.PartialC<{
5330
5477
  text: t.StringC;
5478
+ variant: t.StringC;
5331
5479
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5332
5480
  __TYPE__: t.LiteralC<"MediaLink">;
5333
5481
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5334
5482
  kind: t.LiteralC<"media">;
5335
5483
  }>>, t.ExactC<t.PartialC<{
5336
5484
  text: t.StringC;
5485
+ variant: t.StringC;
5337
5486
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5338
5487
  __TYPE__: t.LiteralC<"AnyLink">;
5339
5488
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
5340
5489
  kind: t.LiteralC<"any">;
5341
5490
  }>, t.PartialC<{
5342
5491
  text: t.StringC;
5492
+ variant: t.StringC;
5343
5493
  }>]>>]>]>;
5344
5494
  }>>]>, t.ExactC<t.TypeC<{
5345
5495
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -5605,6 +5755,7 @@ export declare const SlicesContent: t.TypeC<{
5605
5755
  kind: t.LiteralC<"image">;
5606
5756
  }>>]>, t.ExactC<t.PartialC<{
5607
5757
  text: t.StringC;
5758
+ variant: t.StringC;
5608
5759
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5609
5760
  __TYPE__: t.LiteralC<"FileLink">;
5610
5761
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5619,6 +5770,7 @@ export declare const SlicesContent: t.TypeC<{
5619
5770
  kind: t.LiteralC<"file">;
5620
5771
  }>>]>, t.ExactC<t.PartialC<{
5621
5772
  text: t.StringC;
5773
+ variant: t.StringC;
5622
5774
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5623
5775
  __TYPE__: t.LiteralC<"DocumentLink">;
5624
5776
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5627,6 +5779,7 @@ export declare const SlicesContent: t.TypeC<{
5627
5779
  kind: t.LiteralC<"document">;
5628
5780
  }>>]>, t.ExactC<t.PartialC<{
5629
5781
  text: t.StringC;
5782
+ variant: t.StringC;
5630
5783
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5631
5784
  __TYPE__: t.LiteralC<"ExternalLink">;
5632
5785
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5643,18 +5796,21 @@ export declare const SlicesContent: t.TypeC<{
5643
5796
  kind: t.LiteralC<"web">;
5644
5797
  }>>]>, t.ExactC<t.PartialC<{
5645
5798
  text: t.StringC;
5799
+ variant: t.StringC;
5646
5800
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5647
5801
  __TYPE__: t.LiteralC<"MediaLink">;
5648
5802
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5649
5803
  kind: t.LiteralC<"media">;
5650
5804
  }>>, t.ExactC<t.PartialC<{
5651
5805
  text: t.StringC;
5806
+ variant: t.StringC;
5652
5807
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5653
5808
  __TYPE__: t.LiteralC<"AnyLink">;
5654
5809
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
5655
5810
  kind: t.LiteralC<"any">;
5656
5811
  }>, t.PartialC<{
5657
5812
  text: t.StringC;
5813
+ variant: t.StringC;
5658
5814
  }>]>>]>]>;
5659
5815
  }>>]>>;
5660
5816
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>>;
@@ -5790,6 +5946,7 @@ export declare const SlicesContent: t.TypeC<{
5790
5946
  kind: t.LiteralC<"image">;
5791
5947
  }>>]>, t.ExactC<t.PartialC<{
5792
5948
  text: t.StringC;
5949
+ variant: t.StringC;
5793
5950
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5794
5951
  __TYPE__: t.LiteralC<"FileLink">;
5795
5952
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5804,6 +5961,7 @@ export declare const SlicesContent: t.TypeC<{
5804
5961
  kind: t.LiteralC<"file">;
5805
5962
  }>>]>, t.ExactC<t.PartialC<{
5806
5963
  text: t.StringC;
5964
+ variant: t.StringC;
5807
5965
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5808
5966
  __TYPE__: t.LiteralC<"DocumentLink">;
5809
5967
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -5812,6 +5970,7 @@ export declare const SlicesContent: t.TypeC<{
5812
5970
  kind: t.LiteralC<"document">;
5813
5971
  }>>]>, t.ExactC<t.PartialC<{
5814
5972
  text: t.StringC;
5973
+ variant: t.StringC;
5815
5974
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5816
5975
  __TYPE__: t.LiteralC<"ExternalLink">;
5817
5976
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -5828,18 +5987,21 @@ export declare const SlicesContent: t.TypeC<{
5828
5987
  kind: t.LiteralC<"web">;
5829
5988
  }>>]>, t.ExactC<t.PartialC<{
5830
5989
  text: t.StringC;
5990
+ variant: t.StringC;
5831
5991
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5832
5992
  __TYPE__: t.LiteralC<"MediaLink">;
5833
5993
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
5834
5994
  kind: t.LiteralC<"media">;
5835
5995
  }>>, t.ExactC<t.PartialC<{
5836
5996
  text: t.StringC;
5997
+ variant: t.StringC;
5837
5998
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
5838
5999
  __TYPE__: t.LiteralC<"AnyLink">;
5839
6000
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
5840
6001
  kind: t.LiteralC<"any">;
5841
6002
  }>, t.PartialC<{
5842
6003
  text: t.StringC;
6004
+ variant: t.StringC;
5843
6005
  }>]>>]>]>;
5844
6006
  }>>]>, t.ExactC<t.TypeC<{
5845
6007
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -6105,6 +6267,7 @@ export declare const SlicesContent: t.TypeC<{
6105
6267
  kind: t.LiteralC<"image">;
6106
6268
  }>>]>, t.ExactC<t.PartialC<{
6107
6269
  text: t.StringC;
6270
+ variant: t.StringC;
6108
6271
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6109
6272
  __TYPE__: t.LiteralC<"FileLink">;
6110
6273
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6119,6 +6282,7 @@ export declare const SlicesContent: t.TypeC<{
6119
6282
  kind: t.LiteralC<"file">;
6120
6283
  }>>]>, t.ExactC<t.PartialC<{
6121
6284
  text: t.StringC;
6285
+ variant: t.StringC;
6122
6286
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6123
6287
  __TYPE__: t.LiteralC<"DocumentLink">;
6124
6288
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -6127,6 +6291,7 @@ export declare const SlicesContent: t.TypeC<{
6127
6291
  kind: t.LiteralC<"document">;
6128
6292
  }>>]>, t.ExactC<t.PartialC<{
6129
6293
  text: t.StringC;
6294
+ variant: t.StringC;
6130
6295
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6131
6296
  __TYPE__: t.LiteralC<"ExternalLink">;
6132
6297
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6143,18 +6308,21 @@ export declare const SlicesContent: t.TypeC<{
6143
6308
  kind: t.LiteralC<"web">;
6144
6309
  }>>]>, t.ExactC<t.PartialC<{
6145
6310
  text: t.StringC;
6311
+ variant: t.StringC;
6146
6312
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6147
6313
  __TYPE__: t.LiteralC<"MediaLink">;
6148
6314
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
6149
6315
  kind: t.LiteralC<"media">;
6150
6316
  }>>, t.ExactC<t.PartialC<{
6151
6317
  text: t.StringC;
6318
+ variant: t.StringC;
6152
6319
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6153
6320
  __TYPE__: t.LiteralC<"AnyLink">;
6154
6321
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
6155
6322
  kind: t.LiteralC<"any">;
6156
6323
  }>, t.PartialC<{
6157
6324
  text: t.StringC;
6325
+ variant: t.StringC;
6158
6326
  }>]>>]>]>;
6159
6327
  }>>]>>;
6160
6328
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>>;
@@ -6289,6 +6457,7 @@ export declare const SlicesContent: t.TypeC<{
6289
6457
  kind: t.LiteralC<"image">;
6290
6458
  }>>]>, t.ExactC<t.PartialC<{
6291
6459
  text: t.StringC;
6460
+ variant: t.StringC;
6292
6461
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6293
6462
  __TYPE__: t.LiteralC<"FileLink">;
6294
6463
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6303,6 +6472,7 @@ export declare const SlicesContent: t.TypeC<{
6303
6472
  kind: t.LiteralC<"file">;
6304
6473
  }>>]>, t.ExactC<t.PartialC<{
6305
6474
  text: t.StringC;
6475
+ variant: t.StringC;
6306
6476
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6307
6477
  __TYPE__: t.LiteralC<"DocumentLink">;
6308
6478
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -6311,6 +6481,7 @@ export declare const SlicesContent: t.TypeC<{
6311
6481
  kind: t.LiteralC<"document">;
6312
6482
  }>>]>, t.ExactC<t.PartialC<{
6313
6483
  text: t.StringC;
6484
+ variant: t.StringC;
6314
6485
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6315
6486
  __TYPE__: t.LiteralC<"ExternalLink">;
6316
6487
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6327,18 +6498,21 @@ export declare const SlicesContent: t.TypeC<{
6327
6498
  kind: t.LiteralC<"web">;
6328
6499
  }>>]>, t.ExactC<t.PartialC<{
6329
6500
  text: t.StringC;
6501
+ variant: t.StringC;
6330
6502
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6331
6503
  __TYPE__: t.LiteralC<"MediaLink">;
6332
6504
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
6333
6505
  kind: t.LiteralC<"media">;
6334
6506
  }>>, t.ExactC<t.PartialC<{
6335
6507
  text: t.StringC;
6508
+ variant: t.StringC;
6336
6509
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6337
6510
  __TYPE__: t.LiteralC<"AnyLink">;
6338
6511
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
6339
6512
  kind: t.LiteralC<"any">;
6340
6513
  }>, t.PartialC<{
6341
6514
  text: t.StringC;
6515
+ variant: t.StringC;
6342
6516
  }>]>>]>]>;
6343
6517
  }>>]>, t.ExactC<t.TypeC<{
6344
6518
  __TYPE__: t.LiteralC<"StructuredTextContent">;
@@ -6604,6 +6778,7 @@ export declare const SlicesContent: t.TypeC<{
6604
6778
  kind: t.LiteralC<"image">;
6605
6779
  }>>]>, t.ExactC<t.PartialC<{
6606
6780
  text: t.StringC;
6781
+ variant: t.StringC;
6607
6782
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6608
6783
  __TYPE__: t.LiteralC<"FileLink">;
6609
6784
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6618,6 +6793,7 @@ export declare const SlicesContent: t.TypeC<{
6618
6793
  kind: t.LiteralC<"file">;
6619
6794
  }>>]>, t.ExactC<t.PartialC<{
6620
6795
  text: t.StringC;
6796
+ variant: t.StringC;
6621
6797
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6622
6798
  __TYPE__: t.LiteralC<"DocumentLink">;
6623
6799
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
@@ -6626,6 +6802,7 @@ export declare const SlicesContent: t.TypeC<{
6626
6802
  kind: t.LiteralC<"document">;
6627
6803
  }>>]>, t.ExactC<t.PartialC<{
6628
6804
  text: t.StringC;
6805
+ variant: t.StringC;
6629
6806
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6630
6807
  __TYPE__: t.LiteralC<"ExternalLink">;
6631
6808
  }>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
@@ -6642,18 +6819,21 @@ export declare const SlicesContent: t.TypeC<{
6642
6819
  kind: t.LiteralC<"web">;
6643
6820
  }>>]>, t.ExactC<t.PartialC<{
6644
6821
  text: t.StringC;
6822
+ variant: t.StringC;
6645
6823
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6646
6824
  __TYPE__: t.LiteralC<"MediaLink">;
6647
6825
  }>>, t.IntersectionC<[t.ExactC<t.TypeC<{
6648
6826
  kind: t.LiteralC<"media">;
6649
6827
  }>>, t.ExactC<t.PartialC<{
6650
6828
  text: t.StringC;
6829
+ variant: t.StringC;
6651
6830
  }>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
6652
6831
  __TYPE__: t.LiteralC<"AnyLink">;
6653
6832
  }>>, t.ExactC<t.IntersectionC<[t.TypeC<{
6654
6833
  kind: t.LiteralC<"any">;
6655
6834
  }>, t.PartialC<{
6656
6835
  text: t.StringC;
6836
+ variant: t.StringC;
6657
6837
  }>]>>]>]>;
6658
6838
  }>>]>>;
6659
6839
  }>>]>, t.Type<import("..").GroupContent, import("..").GroupContent, unknown>]>]>;