@mintlify/validation 0.1.537 → 0.1.538

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 (27) hide show
  1. package/dist/chat-config/index.d.ts +1 -1
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.js +1 -0
  4. package/dist/mint-config/schemas/v2/index.d.ts +2130 -35
  5. package/dist/mint-config/schemas/v2/index.js +3 -0
  6. package/dist/mint-config/schemas/v2/properties/footer.d.ts +3 -3
  7. package/dist/mint-config/schemas/v2/properties/logo.d.ts +1 -1
  8. package/dist/mint-config/schemas/v2/properties/navbar.d.ts +5 -5
  9. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +1 -1
  10. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +1 -1
  11. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +1 -1
  12. package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +1 -1
  13. package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +1 -1
  14. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +1 -1
  15. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +1 -1
  16. package/dist/mint-config/schemas/v2/properties/reusable/href.d.ts +1 -1
  17. package/dist/mint-config/schemas/v2/properties/reusable/href.js +16 -1
  18. package/dist/mint-config/schemas/v2/themes/almond.d.ts +5 -5
  19. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +5 -5
  20. package/dist/mint-config/schemas/v2/themes/linden.d.ts +5 -5
  21. package/dist/mint-config/schemas/v2/themes/maple.d.ts +5 -5
  22. package/dist/mint-config/schemas/v2/themes/mint.d.ts +5 -5
  23. package/dist/mint-config/schemas/v2/themes/palm.d.ts +5 -5
  24. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +5 -5
  25. package/dist/mint-config/schemas/v2/themes/willow.d.ts +5 -5
  26. package/dist/tsconfig.build.tsbuildinfo +1 -1
  27. package/package.json +2 -2
@@ -22,7 +22,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
22
22
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
23
23
  light: z.ZodString;
24
24
  dark: z.ZodString;
25
- href: z.ZodOptional<z.ZodString>;
25
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
26
26
  }, "strip", z.ZodTypeAny, {
27
27
  light: string;
28
28
  dark: string;
@@ -244,7 +244,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
244
244
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
245
245
  library?: "fontawesome" | "lucide" | undefined;
246
246
  }>]>>;
247
- href: z.ZodString;
247
+ href: z.ZodEffects<z.ZodString, string, string>;
248
248
  }, "strip", z.ZodTypeAny, {
249
249
  href: string;
250
250
  label: string;
@@ -265,7 +265,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
265
265
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
266
266
  type: z.ZodLiteral<"button">;
267
267
  label: z.ZodString;
268
- href: z.ZodString;
268
+ href: z.ZodEffects<z.ZodString, string, string>;
269
269
  }, "strip", z.ZodTypeAny, {
270
270
  type: "button";
271
271
  href: string;
@@ -276,7 +276,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
276
276
  label: string;
277
277
  }>, z.ZodObject<{
278
278
  type: z.ZodLiteral<"github">;
279
- href: z.ZodString;
279
+ href: z.ZodEffects<z.ZodString, string, string>;
280
280
  }, "strip", z.ZodTypeAny, {
281
281
  type: "github";
282
282
  href: string;
@@ -682,7 +682,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
682
682
  header: z.ZodOptional<z.ZodString>;
683
683
  items: z.ZodArray<z.ZodObject<{
684
684
  label: z.ZodString;
685
- href: z.ZodString;
685
+ href: z.ZodEffects<z.ZodString, string, string>;
686
686
  }, "strip", z.ZodTypeAny, {
687
687
  href: string;
688
688
  label: string;
@@ -2116,7 +2116,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2116
2116
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2117
2117
  light: z.ZodString;
2118
2118
  dark: z.ZodString;
2119
- href: z.ZodOptional<z.ZodString>;
2119
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2120
2120
  }, "strip", z.ZodTypeAny, {
2121
2121
  light: string;
2122
2122
  dark: string;
@@ -2338,7 +2338,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2338
2338
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2339
2339
  library?: "fontawesome" | "lucide" | undefined;
2340
2340
  }>]>>;
2341
- href: z.ZodString;
2341
+ href: z.ZodEffects<z.ZodString, string, string>;
2342
2342
  }, "strip", z.ZodTypeAny, {
2343
2343
  href: string;
2344
2344
  label: string;
@@ -2359,7 +2359,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2359
2359
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2360
2360
  type: z.ZodLiteral<"button">;
2361
2361
  label: z.ZodString;
2362
- href: z.ZodString;
2362
+ href: z.ZodEffects<z.ZodString, string, string>;
2363
2363
  }, "strip", z.ZodTypeAny, {
2364
2364
  type: "button";
2365
2365
  href: string;
@@ -2370,7 +2370,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2370
2370
  label: string;
2371
2371
  }>, z.ZodObject<{
2372
2372
  type: z.ZodLiteral<"github">;
2373
- href: z.ZodString;
2373
+ href: z.ZodEffects<z.ZodString, string, string>;
2374
2374
  }, "strip", z.ZodTypeAny, {
2375
2375
  type: "github";
2376
2376
  href: string;
@@ -2776,7 +2776,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2776
2776
  header: z.ZodOptional<z.ZodString>;
2777
2777
  items: z.ZodArray<z.ZodObject<{
2778
2778
  label: z.ZodString;
2779
- href: z.ZodString;
2779
+ href: z.ZodEffects<z.ZodString, string, string>;
2780
2780
  }, "strip", z.ZodTypeAny, {
2781
2781
  href: string;
2782
2782
  label: string;
@@ -4210,7 +4210,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4210
4210
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
4211
4211
  light: z.ZodString;
4212
4212
  dark: z.ZodString;
4213
- href: z.ZodOptional<z.ZodString>;
4213
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
4214
4214
  }, "strip", z.ZodTypeAny, {
4215
4215
  light: string;
4216
4216
  dark: string;
@@ -4432,7 +4432,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4432
4432
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4433
4433
  library?: "fontawesome" | "lucide" | undefined;
4434
4434
  }>]>>;
4435
- href: z.ZodString;
4435
+ href: z.ZodEffects<z.ZodString, string, string>;
4436
4436
  }, "strip", z.ZodTypeAny, {
4437
4437
  href: string;
4438
4438
  label: string;
@@ -4453,7 +4453,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4453
4453
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4454
4454
  type: z.ZodLiteral<"button">;
4455
4455
  label: z.ZodString;
4456
- href: z.ZodString;
4456
+ href: z.ZodEffects<z.ZodString, string, string>;
4457
4457
  }, "strip", z.ZodTypeAny, {
4458
4458
  type: "button";
4459
4459
  href: string;
@@ -4464,7 +4464,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4464
4464
  label: string;
4465
4465
  }>, z.ZodObject<{
4466
4466
  type: z.ZodLiteral<"github">;
4467
- href: z.ZodString;
4467
+ href: z.ZodEffects<z.ZodString, string, string>;
4468
4468
  }, "strip", z.ZodTypeAny, {
4469
4469
  type: "github";
4470
4470
  href: string;
@@ -4870,7 +4870,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4870
4870
  header: z.ZodOptional<z.ZodString>;
4871
4871
  items: z.ZodArray<z.ZodObject<{
4872
4872
  label: z.ZodString;
4873
- href: z.ZodString;
4873
+ href: z.ZodEffects<z.ZodString, string, string>;
4874
4874
  }, "strip", z.ZodTypeAny, {
4875
4875
  href: string;
4876
4876
  label: string;
@@ -6304,7 +6304,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6304
6304
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
6305
6305
  light: z.ZodString;
6306
6306
  dark: z.ZodString;
6307
- href: z.ZodOptional<z.ZodString>;
6307
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
6308
6308
  }, "strip", z.ZodTypeAny, {
6309
6309
  light: string;
6310
6310
  dark: string;
@@ -6526,7 +6526,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6526
6526
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6527
6527
  library?: "fontawesome" | "lucide" | undefined;
6528
6528
  }>]>>;
6529
- href: z.ZodString;
6529
+ href: z.ZodEffects<z.ZodString, string, string>;
6530
6530
  }, "strip", z.ZodTypeAny, {
6531
6531
  href: string;
6532
6532
  label: string;
@@ -6547,7 +6547,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6547
6547
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6548
6548
  type: z.ZodLiteral<"button">;
6549
6549
  label: z.ZodString;
6550
- href: z.ZodString;
6550
+ href: z.ZodEffects<z.ZodString, string, string>;
6551
6551
  }, "strip", z.ZodTypeAny, {
6552
6552
  type: "button";
6553
6553
  href: string;
@@ -6558,7 +6558,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6558
6558
  label: string;
6559
6559
  }>, z.ZodObject<{
6560
6560
  type: z.ZodLiteral<"github">;
6561
- href: z.ZodString;
6561
+ href: z.ZodEffects<z.ZodString, string, string>;
6562
6562
  }, "strip", z.ZodTypeAny, {
6563
6563
  type: "github";
6564
6564
  href: string;
@@ -6964,7 +6964,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6964
6964
  header: z.ZodOptional<z.ZodString>;
6965
6965
  items: z.ZodArray<z.ZodObject<{
6966
6966
  label: z.ZodString;
6967
- href: z.ZodString;
6967
+ href: z.ZodEffects<z.ZodString, string, string>;
6968
6968
  }, "strip", z.ZodTypeAny, {
6969
6969
  href: string;
6970
6970
  label: string;
@@ -8398,7 +8398,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8398
8398
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
8399
8399
  light: z.ZodString;
8400
8400
  dark: z.ZodString;
8401
- href: z.ZodOptional<z.ZodString>;
8401
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
8402
8402
  }, "strip", z.ZodTypeAny, {
8403
8403
  light: string;
8404
8404
  dark: string;
@@ -8620,7 +8620,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8620
8620
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8621
8621
  library?: "fontawesome" | "lucide" | undefined;
8622
8622
  }>]>>;
8623
- href: z.ZodString;
8623
+ href: z.ZodEffects<z.ZodString, string, string>;
8624
8624
  }, "strip", z.ZodTypeAny, {
8625
8625
  href: string;
8626
8626
  label: string;
@@ -8641,7 +8641,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8641
8641
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8642
8642
  type: z.ZodLiteral<"button">;
8643
8643
  label: z.ZodString;
8644
- href: z.ZodString;
8644
+ href: z.ZodEffects<z.ZodString, string, string>;
8645
8645
  }, "strip", z.ZodTypeAny, {
8646
8646
  type: "button";
8647
8647
  href: string;
@@ -8652,7 +8652,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8652
8652
  label: string;
8653
8653
  }>, z.ZodObject<{
8654
8654
  type: z.ZodLiteral<"github">;
8655
- href: z.ZodString;
8655
+ href: z.ZodEffects<z.ZodString, string, string>;
8656
8656
  }, "strip", z.ZodTypeAny, {
8657
8657
  type: "github";
8658
8658
  href: string;
@@ -9058,7 +9058,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9058
9058
  header: z.ZodOptional<z.ZodString>;
9059
9059
  items: z.ZodArray<z.ZodObject<{
9060
9060
  label: z.ZodString;
9061
- href: z.ZodString;
9061
+ href: z.ZodEffects<z.ZodString, string, string>;
9062
9062
  }, "strip", z.ZodTypeAny, {
9063
9063
  href: string;
9064
9064
  label: string;
@@ -10492,7 +10492,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10492
10492
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
10493
10493
  light: z.ZodString;
10494
10494
  dark: z.ZodString;
10495
- href: z.ZodOptional<z.ZodString>;
10495
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10496
10496
  }, "strip", z.ZodTypeAny, {
10497
10497
  light: string;
10498
10498
  dark: string;
@@ -10714,7 +10714,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10714
10714
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10715
10715
  library?: "fontawesome" | "lucide" | undefined;
10716
10716
  }>]>>;
10717
- href: z.ZodString;
10717
+ href: z.ZodEffects<z.ZodString, string, string>;
10718
10718
  }, "strip", z.ZodTypeAny, {
10719
10719
  href: string;
10720
10720
  label: string;
@@ -10735,7 +10735,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10735
10735
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10736
10736
  type: z.ZodLiteral<"button">;
10737
10737
  label: z.ZodString;
10738
- href: z.ZodString;
10738
+ href: z.ZodEffects<z.ZodString, string, string>;
10739
10739
  }, "strip", z.ZodTypeAny, {
10740
10740
  type: "button";
10741
10741
  href: string;
@@ -10746,7 +10746,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10746
10746
  label: string;
10747
10747
  }>, z.ZodObject<{
10748
10748
  type: z.ZodLiteral<"github">;
10749
- href: z.ZodString;
10749
+ href: z.ZodEffects<z.ZodString, string, string>;
10750
10750
  }, "strip", z.ZodTypeAny, {
10751
10751
  type: "github";
10752
10752
  href: string;
@@ -11152,7 +11152,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11152
11152
  header: z.ZodOptional<z.ZodString>;
11153
11153
  items: z.ZodArray<z.ZodObject<{
11154
11154
  label: z.ZodString;
11155
- href: z.ZodString;
11155
+ href: z.ZodEffects<z.ZodString, string, string>;
11156
11156
  }, "strip", z.ZodTypeAny, {
11157
11157
  href: string;
11158
11158
  label: string;
@@ -12586,7 +12586,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12586
12586
  logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
12587
12587
  light: z.ZodString;
12588
12588
  dark: z.ZodString;
12589
- href: z.ZodOptional<z.ZodString>;
12589
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
12590
12590
  }, "strip", z.ZodTypeAny, {
12591
12591
  light: string;
12592
12592
  dark: string;
@@ -12808,7 +12808,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12808
12808
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12809
12809
  library?: "fontawesome" | "lucide" | undefined;
12810
12810
  }>]>>;
12811
- href: z.ZodString;
12811
+ href: z.ZodEffects<z.ZodString, string, string>;
12812
12812
  }, "strip", z.ZodTypeAny, {
12813
12813
  href: string;
12814
12814
  label: string;
@@ -12829,7 +12829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12829
12829
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12830
12830
  type: z.ZodLiteral<"button">;
12831
12831
  label: z.ZodString;
12832
- href: z.ZodString;
12832
+ href: z.ZodEffects<z.ZodString, string, string>;
12833
12833
  }, "strip", z.ZodTypeAny, {
12834
12834
  type: "button";
12835
12835
  href: string;
@@ -12840,7 +12840,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
12840
12840
  label: string;
12841
12841
  }>, z.ZodObject<{
12842
12842
  type: z.ZodLiteral<"github">;
12843
- href: z.ZodString;
12843
+ href: z.ZodEffects<z.ZodString, string, string>;
12844
12844
  }, "strip", z.ZodTypeAny, {
12845
12845
  type: "github";
12846
12846
  href: string;
@@ -13246,7 +13246,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
13246
13246
  header: z.ZodOptional<z.ZodString>;
13247
13247
  items: z.ZodArray<z.ZodObject<{
13248
13248
  label: z.ZodString;
13249
- href: z.ZodString;
13249
+ href: z.ZodEffects<z.ZodString, string, string>;
13250
13250
  }, "strip", z.ZodTypeAny, {
13251
13251
  href: string;
13252
13252
  label: string;
@@ -14661,3 +14661,2098 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
14661
14661
  drilldown?: boolean | undefined;
14662
14662
  } | undefined;
14663
14663
  }>]>;
14664
+ export declare const docsConfigUnifiedSchema: z.ZodObject<{
14665
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14666
+ name: z.ZodString;
14667
+ description: z.ZodOptional<z.ZodString>;
14668
+ colors: z.ZodObject<{
14669
+ primary: z.ZodString;
14670
+ light: z.ZodOptional<z.ZodString>;
14671
+ dark: z.ZodOptional<z.ZodString>;
14672
+ }, "strict", z.ZodTypeAny, {
14673
+ primary: string;
14674
+ light?: string | undefined;
14675
+ dark?: string | undefined;
14676
+ }, {
14677
+ primary: string;
14678
+ light?: string | undefined;
14679
+ dark?: string | undefined;
14680
+ }>;
14681
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
14682
+ light: z.ZodString;
14683
+ dark: z.ZodString;
14684
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
14685
+ }, "strip", z.ZodTypeAny, {
14686
+ light: string;
14687
+ dark: string;
14688
+ href?: string | undefined;
14689
+ }, {
14690
+ light: string;
14691
+ dark: string;
14692
+ href?: string | undefined;
14693
+ }>]>>;
14694
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
14695
+ light: z.ZodString;
14696
+ dark: z.ZodString;
14697
+ }, "strip", z.ZodTypeAny, {
14698
+ light: string;
14699
+ dark: string;
14700
+ }, {
14701
+ light: string;
14702
+ dark: string;
14703
+ }>]>>;
14704
+ api: z.ZodOptional<z.ZodObject<{
14705
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
14706
+ source: z.ZodEffects<z.ZodString, string, string>;
14707
+ directory: z.ZodOptional<z.ZodString>;
14708
+ }, "strict", z.ZodTypeAny, {
14709
+ source: string;
14710
+ directory?: string | undefined;
14711
+ }, {
14712
+ source: string;
14713
+ directory?: string | undefined;
14714
+ }>]>>;
14715
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
14716
+ source: z.ZodEffects<z.ZodString, string, string>;
14717
+ directory: z.ZodOptional<z.ZodString>;
14718
+ }, "strict", z.ZodTypeAny, {
14719
+ source: string;
14720
+ directory?: string | undefined;
14721
+ }, {
14722
+ source: string;
14723
+ directory?: string | undefined;
14724
+ }>]>>;
14725
+ params: z.ZodOptional<z.ZodObject<{
14726
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
14727
+ }, "strip", z.ZodTypeAny, {
14728
+ expanded?: "all" | "closed" | undefined;
14729
+ }, {
14730
+ expanded?: "all" | "closed" | undefined;
14731
+ }>>;
14732
+ playground: z.ZodOptional<z.ZodObject<{
14733
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
14734
+ proxy: z.ZodOptional<z.ZodBoolean>;
14735
+ }, "strip", z.ZodTypeAny, {
14736
+ display?: "simple" | "none" | "interactive" | undefined;
14737
+ proxy?: boolean | undefined;
14738
+ }, {
14739
+ display?: "simple" | "none" | "interactive" | undefined;
14740
+ proxy?: boolean | undefined;
14741
+ }>>;
14742
+ examples: z.ZodOptional<z.ZodObject<{
14743
+ defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
14744
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14745
+ prefill: z.ZodOptional<z.ZodBoolean>;
14746
+ }, "strip", z.ZodTypeAny, {
14747
+ languages?: string[] | undefined;
14748
+ defaults?: "all" | "required" | undefined;
14749
+ prefill?: boolean | undefined;
14750
+ }, {
14751
+ languages?: string[] | undefined;
14752
+ defaults?: "all" | "required" | undefined;
14753
+ prefill?: boolean | undefined;
14754
+ }>>;
14755
+ mdx: z.ZodOptional<z.ZodObject<{
14756
+ auth: z.ZodOptional<z.ZodObject<{
14757
+ method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
14758
+ name: z.ZodOptional<z.ZodString>;
14759
+ }, "strip", z.ZodTypeAny, {
14760
+ name?: string | undefined;
14761
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14762
+ }, {
14763
+ name?: string | undefined;
14764
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14765
+ }>>;
14766
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
14767
+ }, "strip", z.ZodTypeAny, {
14768
+ server?: string | string[] | undefined;
14769
+ auth?: {
14770
+ name?: string | undefined;
14771
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14772
+ } | undefined;
14773
+ }, {
14774
+ server?: string | string[] | undefined;
14775
+ auth?: {
14776
+ name?: string | undefined;
14777
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14778
+ } | undefined;
14779
+ }>>;
14780
+ }, "strip", z.ZodTypeAny, {
14781
+ params?: {
14782
+ expanded?: "all" | "closed" | undefined;
14783
+ } | undefined;
14784
+ openapi?: string | string[] | {
14785
+ source: string;
14786
+ directory?: string | undefined;
14787
+ } | undefined;
14788
+ playground?: {
14789
+ display?: "simple" | "none" | "interactive" | undefined;
14790
+ proxy?: boolean | undefined;
14791
+ } | undefined;
14792
+ asyncapi?: string | string[] | {
14793
+ source: string;
14794
+ directory?: string | undefined;
14795
+ } | undefined;
14796
+ examples?: {
14797
+ languages?: string[] | undefined;
14798
+ defaults?: "all" | "required" | undefined;
14799
+ prefill?: boolean | undefined;
14800
+ } | undefined;
14801
+ mdx?: {
14802
+ server?: string | string[] | undefined;
14803
+ auth?: {
14804
+ name?: string | undefined;
14805
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14806
+ } | undefined;
14807
+ } | undefined;
14808
+ }, {
14809
+ params?: {
14810
+ expanded?: "all" | "closed" | undefined;
14811
+ } | undefined;
14812
+ openapi?: string | string[] | {
14813
+ source: string;
14814
+ directory?: string | undefined;
14815
+ } | undefined;
14816
+ playground?: {
14817
+ display?: "simple" | "none" | "interactive" | undefined;
14818
+ proxy?: boolean | undefined;
14819
+ } | undefined;
14820
+ asyncapi?: string | string[] | {
14821
+ source: string;
14822
+ directory?: string | undefined;
14823
+ } | undefined;
14824
+ examples?: {
14825
+ languages?: string[] | undefined;
14826
+ defaults?: "all" | "required" | undefined;
14827
+ prefill?: boolean | undefined;
14828
+ } | undefined;
14829
+ mdx?: {
14830
+ server?: string | string[] | undefined;
14831
+ auth?: {
14832
+ name?: string | undefined;
14833
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
14834
+ } | undefined;
14835
+ } | undefined;
14836
+ }>>;
14837
+ appearance: z.ZodOptional<z.ZodObject<{
14838
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
14839
+ strict: z.ZodOptional<z.ZodBoolean>;
14840
+ }, "strip", z.ZodTypeAny, {
14841
+ strict?: boolean | undefined;
14842
+ default?: "light" | "dark" | "system" | undefined;
14843
+ }, {
14844
+ strict?: boolean | undefined;
14845
+ default?: "light" | "dark" | "system" | undefined;
14846
+ }>>;
14847
+ background: z.ZodOptional<z.ZodObject<{
14848
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
14849
+ light: z.ZodString;
14850
+ dark: z.ZodString;
14851
+ }, "strip", z.ZodTypeAny, {
14852
+ light: string;
14853
+ dark: string;
14854
+ }, {
14855
+ light: string;
14856
+ dark: string;
14857
+ }>]>>;
14858
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
14859
+ color: z.ZodOptional<z.ZodObject<{
14860
+ light: z.ZodOptional<z.ZodString>;
14861
+ dark: z.ZodOptional<z.ZodString>;
14862
+ }, "strict", z.ZodTypeAny, {
14863
+ light?: string | undefined;
14864
+ dark?: string | undefined;
14865
+ }, {
14866
+ light?: string | undefined;
14867
+ dark?: string | undefined;
14868
+ }>>;
14869
+ }, "strip", z.ZodTypeAny, {
14870
+ color?: {
14871
+ light?: string | undefined;
14872
+ dark?: string | undefined;
14873
+ } | undefined;
14874
+ image?: string | {
14875
+ light: string;
14876
+ dark: string;
14877
+ } | undefined;
14878
+ decoration?: "gradient" | "grid" | "windows" | undefined;
14879
+ }, {
14880
+ color?: {
14881
+ light?: string | undefined;
14882
+ dark?: string | undefined;
14883
+ } | undefined;
14884
+ image?: string | {
14885
+ light: string;
14886
+ dark: string;
14887
+ } | undefined;
14888
+ decoration?: "gradient" | "grid" | "windows" | undefined;
14889
+ }>>;
14890
+ navbar: z.ZodOptional<z.ZodObject<{
14891
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
14892
+ label: z.ZodString;
14893
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
14894
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
14895
+ name: z.ZodEffects<z.ZodString, string, string>;
14896
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
14897
+ }, "strip", z.ZodTypeAny, {
14898
+ name: string;
14899
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14900
+ library?: "fontawesome" | "lucide" | undefined;
14901
+ }, {
14902
+ name: string;
14903
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14904
+ library?: "fontawesome" | "lucide" | undefined;
14905
+ }>]>>;
14906
+ href: z.ZodEffects<z.ZodString, string, string>;
14907
+ }, "strip", z.ZodTypeAny, {
14908
+ href: string;
14909
+ label: string;
14910
+ icon?: string | {
14911
+ name: string;
14912
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14913
+ library?: "fontawesome" | "lucide" | undefined;
14914
+ } | undefined;
14915
+ }, {
14916
+ href: string;
14917
+ label: string;
14918
+ icon?: string | {
14919
+ name: string;
14920
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14921
+ library?: "fontawesome" | "lucide" | undefined;
14922
+ } | undefined;
14923
+ }>, "many">>;
14924
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14925
+ type: z.ZodLiteral<"button">;
14926
+ label: z.ZodString;
14927
+ href: z.ZodEffects<z.ZodString, string, string>;
14928
+ }, "strip", z.ZodTypeAny, {
14929
+ type: "button";
14930
+ href: string;
14931
+ label: string;
14932
+ }, {
14933
+ type: "button";
14934
+ href: string;
14935
+ label: string;
14936
+ }>, z.ZodObject<{
14937
+ type: z.ZodLiteral<"github">;
14938
+ href: z.ZodEffects<z.ZodString, string, string>;
14939
+ }, "strip", z.ZodTypeAny, {
14940
+ type: "github";
14941
+ href: string;
14942
+ }, {
14943
+ type: "github";
14944
+ href: string;
14945
+ }>]>>;
14946
+ }, "strip", z.ZodTypeAny, {
14947
+ primary?: {
14948
+ type: "button";
14949
+ href: string;
14950
+ label: string;
14951
+ } | {
14952
+ type: "github";
14953
+ href: string;
14954
+ } | undefined;
14955
+ links?: {
14956
+ href: string;
14957
+ label: string;
14958
+ icon?: string | {
14959
+ name: string;
14960
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14961
+ library?: "fontawesome" | "lucide" | undefined;
14962
+ } | undefined;
14963
+ }[] | undefined;
14964
+ }, {
14965
+ primary?: {
14966
+ type: "button";
14967
+ href: string;
14968
+ label: string;
14969
+ } | {
14970
+ type: "github";
14971
+ href: string;
14972
+ } | undefined;
14973
+ links?: {
14974
+ href: string;
14975
+ label: string;
14976
+ icon?: string | {
14977
+ name: string;
14978
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
14979
+ library?: "fontawesome" | "lucide" | undefined;
14980
+ } | undefined;
14981
+ }[] | undefined;
14982
+ }>>;
14983
+ navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
14984
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
14985
+ }, {
14986
+ products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
14987
+ }>, "strip", z.ZodTypeAny, {
14988
+ products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
14989
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
14990
+ }, {
14991
+ products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
14992
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
14993
+ }>, z.ZodObject<z.objectUtil.extendShape<{
14994
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
14995
+ }, {
14996
+ languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
14997
+ }>, "strip", z.ZodTypeAny, {
14998
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
14999
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15000
+ }, {
15001
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
15002
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15003
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15004
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15005
+ }, {
15006
+ versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
15007
+ }>, "strip", z.ZodTypeAny, {
15008
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
15009
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15010
+ }, {
15011
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
15012
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15013
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15014
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15015
+ }, {
15016
+ tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
15017
+ }>, "strip", z.ZodTypeAny, {
15018
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
15019
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15020
+ }, {
15021
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
15022
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15023
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15024
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15025
+ }, {
15026
+ dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
15027
+ }>, "strip", z.ZodTypeAny, {
15028
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
15029
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15030
+ }, {
15031
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
15032
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15033
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15034
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15035
+ }, {
15036
+ anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
15037
+ }>, "strip", z.ZodTypeAny, {
15038
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
15039
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15040
+ }, {
15041
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
15042
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15043
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15044
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15045
+ }, {
15046
+ groups: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
15047
+ group: z.ZodString;
15048
+ public: z.ZodOptional<z.ZodBoolean>;
15049
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
15050
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
15051
+ name: z.ZodEffects<z.ZodString, string, string>;
15052
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
15053
+ }, "strip", z.ZodTypeAny, {
15054
+ name: string;
15055
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15056
+ library?: "fontawesome" | "lucide" | undefined;
15057
+ }, {
15058
+ name: string;
15059
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15060
+ library?: "fontawesome" | "lucide" | undefined;
15061
+ }>]>>;
15062
+ hidden: z.ZodOptional<z.ZodBoolean>;
15063
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15064
+ tag: z.ZodOptional<z.ZodString>;
15065
+ expanded: z.ZodOptional<z.ZodBoolean>;
15066
+ }, {
15067
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
15068
+ source: z.ZodEffects<z.ZodString, string, string>;
15069
+ directory: z.ZodOptional<z.ZodString>;
15070
+ }, "strict", z.ZodTypeAny, {
15071
+ source: string;
15072
+ directory?: string | undefined;
15073
+ }, {
15074
+ source: string;
15075
+ directory?: string | undefined;
15076
+ }>]>;
15077
+ pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
15078
+ }>, "strip", z.ZodTypeAny, {
15079
+ openapi: string | string[] | {
15080
+ source: string;
15081
+ directory?: string | undefined;
15082
+ };
15083
+ group: string;
15084
+ pages: any[];
15085
+ icon?: string | {
15086
+ name: string;
15087
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15088
+ library?: "fontawesome" | "lucide" | undefined;
15089
+ } | undefined;
15090
+ expanded?: boolean | undefined;
15091
+ public?: boolean | undefined;
15092
+ tag?: string | undefined;
15093
+ hidden?: boolean | undefined;
15094
+ root?: string | undefined;
15095
+ }, {
15096
+ openapi: string | string[] | {
15097
+ source: string;
15098
+ directory?: string | undefined;
15099
+ };
15100
+ group: string;
15101
+ icon?: string | {
15102
+ name: string;
15103
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15104
+ library?: "fontawesome" | "lucide" | undefined;
15105
+ } | undefined;
15106
+ expanded?: boolean | undefined;
15107
+ public?: boolean | undefined;
15108
+ pages?: any[] | undefined;
15109
+ tag?: string | undefined;
15110
+ hidden?: boolean | undefined;
15111
+ root?: string | undefined;
15112
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15113
+ group: z.ZodString;
15114
+ public: z.ZodOptional<z.ZodBoolean>;
15115
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
15116
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
15117
+ name: z.ZodEffects<z.ZodString, string, string>;
15118
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
15119
+ }, "strip", z.ZodTypeAny, {
15120
+ name: string;
15121
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15122
+ library?: "fontawesome" | "lucide" | undefined;
15123
+ }, {
15124
+ name: string;
15125
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15126
+ library?: "fontawesome" | "lucide" | undefined;
15127
+ }>]>>;
15128
+ hidden: z.ZodOptional<z.ZodBoolean>;
15129
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15130
+ tag: z.ZodOptional<z.ZodString>;
15131
+ expanded: z.ZodOptional<z.ZodBoolean>;
15132
+ }, {
15133
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
15134
+ source: z.ZodEffects<z.ZodString, string, string>;
15135
+ directory: z.ZodOptional<z.ZodString>;
15136
+ }, "strict", z.ZodTypeAny, {
15137
+ source: string;
15138
+ directory?: string | undefined;
15139
+ }, {
15140
+ source: string;
15141
+ directory?: string | undefined;
15142
+ }>]>;
15143
+ pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
15144
+ }>, "strip", z.ZodTypeAny, {
15145
+ group: string;
15146
+ pages: any[];
15147
+ asyncapi: string | string[] | {
15148
+ source: string;
15149
+ directory?: string | undefined;
15150
+ };
15151
+ icon?: string | {
15152
+ name: string;
15153
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15154
+ library?: "fontawesome" | "lucide" | undefined;
15155
+ } | undefined;
15156
+ expanded?: boolean | undefined;
15157
+ public?: boolean | undefined;
15158
+ tag?: string | undefined;
15159
+ hidden?: boolean | undefined;
15160
+ root?: string | undefined;
15161
+ }, {
15162
+ group: string;
15163
+ asyncapi: string | string[] | {
15164
+ source: string;
15165
+ directory?: string | undefined;
15166
+ };
15167
+ icon?: string | {
15168
+ name: string;
15169
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15170
+ library?: "fontawesome" | "lucide" | undefined;
15171
+ } | undefined;
15172
+ expanded?: boolean | undefined;
15173
+ public?: boolean | undefined;
15174
+ pages?: any[] | undefined;
15175
+ tag?: string | undefined;
15176
+ hidden?: boolean | undefined;
15177
+ root?: string | undefined;
15178
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15179
+ group: z.ZodString;
15180
+ public: z.ZodOptional<z.ZodBoolean>;
15181
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
15182
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
15183
+ name: z.ZodEffects<z.ZodString, string, string>;
15184
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
15185
+ }, "strip", z.ZodTypeAny, {
15186
+ name: string;
15187
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15188
+ library?: "fontawesome" | "lucide" | undefined;
15189
+ }, {
15190
+ name: string;
15191
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15192
+ library?: "fontawesome" | "lucide" | undefined;
15193
+ }>]>>;
15194
+ hidden: z.ZodOptional<z.ZodBoolean>;
15195
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15196
+ tag: z.ZodOptional<z.ZodString>;
15197
+ expanded: z.ZodOptional<z.ZodBoolean>;
15198
+ }, {
15199
+ pages: z.ZodDefault<z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>>;
15200
+ }>, "strip", z.ZodTypeAny, {
15201
+ group: string;
15202
+ pages: any[];
15203
+ icon?: string | {
15204
+ name: string;
15205
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15206
+ library?: "fontawesome" | "lucide" | undefined;
15207
+ } | undefined;
15208
+ expanded?: boolean | undefined;
15209
+ public?: boolean | undefined;
15210
+ tag?: string | undefined;
15211
+ hidden?: boolean | undefined;
15212
+ root?: string | undefined;
15213
+ }, {
15214
+ group: string;
15215
+ icon?: string | {
15216
+ name: string;
15217
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15218
+ library?: "fontawesome" | "lucide" | undefined;
15219
+ } | undefined;
15220
+ expanded?: boolean | undefined;
15221
+ public?: boolean | undefined;
15222
+ pages?: any[] | undefined;
15223
+ tag?: string | undefined;
15224
+ hidden?: boolean | undefined;
15225
+ root?: string | undefined;
15226
+ }>]>, "many">;
15227
+ }>, "strip", z.ZodTypeAny, {
15228
+ groups: ({
15229
+ openapi: string | string[] | {
15230
+ source: string;
15231
+ directory?: string | undefined;
15232
+ };
15233
+ group: string;
15234
+ pages: any[];
15235
+ icon?: string | {
15236
+ name: string;
15237
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15238
+ library?: "fontawesome" | "lucide" | undefined;
15239
+ } | undefined;
15240
+ expanded?: boolean | undefined;
15241
+ public?: boolean | undefined;
15242
+ tag?: string | undefined;
15243
+ hidden?: boolean | undefined;
15244
+ root?: string | undefined;
15245
+ } | {
15246
+ group: string;
15247
+ pages: any[];
15248
+ asyncapi: string | string[] | {
15249
+ source: string;
15250
+ directory?: string | undefined;
15251
+ };
15252
+ icon?: string | {
15253
+ name: string;
15254
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15255
+ library?: "fontawesome" | "lucide" | undefined;
15256
+ } | undefined;
15257
+ expanded?: boolean | undefined;
15258
+ public?: boolean | undefined;
15259
+ tag?: string | undefined;
15260
+ hidden?: boolean | undefined;
15261
+ root?: string | undefined;
15262
+ } | {
15263
+ group: string;
15264
+ pages: any[];
15265
+ icon?: string | {
15266
+ name: string;
15267
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15268
+ library?: "fontawesome" | "lucide" | undefined;
15269
+ } | undefined;
15270
+ expanded?: boolean | undefined;
15271
+ public?: boolean | undefined;
15272
+ tag?: string | undefined;
15273
+ hidden?: boolean | undefined;
15274
+ root?: string | undefined;
15275
+ })[];
15276
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15277
+ }, {
15278
+ groups: ({
15279
+ openapi: string | string[] | {
15280
+ source: string;
15281
+ directory?: string | undefined;
15282
+ };
15283
+ group: string;
15284
+ icon?: string | {
15285
+ name: string;
15286
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15287
+ library?: "fontawesome" | "lucide" | undefined;
15288
+ } | undefined;
15289
+ expanded?: boolean | undefined;
15290
+ public?: boolean | undefined;
15291
+ pages?: any[] | undefined;
15292
+ tag?: string | undefined;
15293
+ hidden?: boolean | undefined;
15294
+ root?: string | undefined;
15295
+ } | {
15296
+ group: string;
15297
+ asyncapi: string | string[] | {
15298
+ source: string;
15299
+ directory?: string | undefined;
15300
+ };
15301
+ icon?: string | {
15302
+ name: string;
15303
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15304
+ library?: "fontawesome" | "lucide" | undefined;
15305
+ } | undefined;
15306
+ expanded?: boolean | undefined;
15307
+ public?: boolean | undefined;
15308
+ pages?: any[] | undefined;
15309
+ tag?: string | undefined;
15310
+ hidden?: boolean | undefined;
15311
+ root?: string | undefined;
15312
+ } | {
15313
+ group: string;
15314
+ icon?: string | {
15315
+ name: string;
15316
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15317
+ library?: "fontawesome" | "lucide" | undefined;
15318
+ } | undefined;
15319
+ expanded?: boolean | undefined;
15320
+ public?: boolean | undefined;
15321
+ pages?: any[] | undefined;
15322
+ tag?: string | undefined;
15323
+ hidden?: boolean | undefined;
15324
+ root?: string | undefined;
15325
+ })[];
15326
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15327
+ }>, z.ZodObject<z.objectUtil.extendShape<{
15328
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
15329
+ }, {
15330
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
15331
+ }>, "strip", z.ZodTypeAny, {
15332
+ pages: any[];
15333
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15334
+ }, {
15335
+ pages: any[];
15336
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
15337
+ }>]>;
15338
+ footer: z.ZodOptional<z.ZodObject<{
15339
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodString>>;
15340
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
15341
+ header: z.ZodOptional<z.ZodString>;
15342
+ items: z.ZodArray<z.ZodObject<{
15343
+ label: z.ZodString;
15344
+ href: z.ZodEffects<z.ZodString, string, string>;
15345
+ }, "strip", z.ZodTypeAny, {
15346
+ href: string;
15347
+ label: string;
15348
+ }, {
15349
+ href: string;
15350
+ label: string;
15351
+ }>, "many">;
15352
+ }, "strip", z.ZodTypeAny, {
15353
+ items: {
15354
+ href: string;
15355
+ label: string;
15356
+ }[];
15357
+ header?: string | undefined;
15358
+ }, {
15359
+ items: {
15360
+ href: string;
15361
+ label: string;
15362
+ }[];
15363
+ header?: string | undefined;
15364
+ }>, "many">>;
15365
+ }, "strip", z.ZodTypeAny, {
15366
+ links?: {
15367
+ items: {
15368
+ href: string;
15369
+ label: string;
15370
+ }[];
15371
+ header?: string | undefined;
15372
+ }[] | undefined;
15373
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
15374
+ }, {
15375
+ links?: {
15376
+ items: {
15377
+ href: string;
15378
+ label: string;
15379
+ }[];
15380
+ header?: string | undefined;
15381
+ }[] | undefined;
15382
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
15383
+ }>>;
15384
+ search: z.ZodOptional<z.ZodObject<{
15385
+ prompt: z.ZodOptional<z.ZodString>;
15386
+ }, "strip", z.ZodTypeAny, {
15387
+ prompt?: string | undefined;
15388
+ }, {
15389
+ prompt?: string | undefined;
15390
+ }>>;
15391
+ seo: z.ZodOptional<z.ZodObject<{
15392
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
15393
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
15394
+ }, "strip", z.ZodTypeAny, {
15395
+ metatags?: Record<string, string> | undefined;
15396
+ indexing?: "all" | "navigable" | undefined;
15397
+ }, {
15398
+ metatags?: Record<string, string> | undefined;
15399
+ indexing?: "all" | "navigable" | undefined;
15400
+ }>>;
15401
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
15402
+ family: z.ZodString;
15403
+ weight: z.ZodOptional<z.ZodNumber>;
15404
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15405
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
15406
+ }, "strip", z.ZodTypeAny, {
15407
+ family: string;
15408
+ source?: string | undefined;
15409
+ weight?: number | undefined;
15410
+ format?: "woff" | "woff2" | undefined;
15411
+ }, {
15412
+ family: string;
15413
+ source?: string | undefined;
15414
+ weight?: number | undefined;
15415
+ format?: "woff" | "woff2" | undefined;
15416
+ }>, {
15417
+ family: string;
15418
+ source?: string | undefined;
15419
+ weight?: number | undefined;
15420
+ format?: "woff" | "woff2" | undefined;
15421
+ }, {
15422
+ family: string;
15423
+ source?: string | undefined;
15424
+ weight?: number | undefined;
15425
+ format?: "woff" | "woff2" | undefined;
15426
+ }>, z.ZodObject<{
15427
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
15428
+ family: z.ZodString;
15429
+ weight: z.ZodOptional<z.ZodNumber>;
15430
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15431
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
15432
+ }, "strip", z.ZodTypeAny, {
15433
+ family: string;
15434
+ source?: string | undefined;
15435
+ weight?: number | undefined;
15436
+ format?: "woff" | "woff2" | undefined;
15437
+ }, {
15438
+ family: string;
15439
+ source?: string | undefined;
15440
+ weight?: number | undefined;
15441
+ format?: "woff" | "woff2" | undefined;
15442
+ }>, {
15443
+ family: string;
15444
+ source?: string | undefined;
15445
+ weight?: number | undefined;
15446
+ format?: "woff" | "woff2" | undefined;
15447
+ }, {
15448
+ family: string;
15449
+ source?: string | undefined;
15450
+ weight?: number | undefined;
15451
+ format?: "woff" | "woff2" | undefined;
15452
+ }>>;
15453
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
15454
+ family: z.ZodString;
15455
+ weight: z.ZodOptional<z.ZodNumber>;
15456
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15457
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
15458
+ }, "strip", z.ZodTypeAny, {
15459
+ family: string;
15460
+ source?: string | undefined;
15461
+ weight?: number | undefined;
15462
+ format?: "woff" | "woff2" | undefined;
15463
+ }, {
15464
+ family: string;
15465
+ source?: string | undefined;
15466
+ weight?: number | undefined;
15467
+ format?: "woff" | "woff2" | undefined;
15468
+ }>, {
15469
+ family: string;
15470
+ source?: string | undefined;
15471
+ weight?: number | undefined;
15472
+ format?: "woff" | "woff2" | undefined;
15473
+ }, {
15474
+ family: string;
15475
+ source?: string | undefined;
15476
+ weight?: number | undefined;
15477
+ format?: "woff" | "woff2" | undefined;
15478
+ }>>;
15479
+ }, "strict", z.ZodTypeAny, {
15480
+ body?: {
15481
+ family: string;
15482
+ source?: string | undefined;
15483
+ weight?: number | undefined;
15484
+ format?: "woff" | "woff2" | undefined;
15485
+ } | undefined;
15486
+ heading?: {
15487
+ family: string;
15488
+ source?: string | undefined;
15489
+ weight?: number | undefined;
15490
+ format?: "woff" | "woff2" | undefined;
15491
+ } | undefined;
15492
+ }, {
15493
+ body?: {
15494
+ family: string;
15495
+ source?: string | undefined;
15496
+ weight?: number | undefined;
15497
+ format?: "woff" | "woff2" | undefined;
15498
+ } | undefined;
15499
+ heading?: {
15500
+ family: string;
15501
+ source?: string | undefined;
15502
+ weight?: number | undefined;
15503
+ format?: "woff" | "woff2" | undefined;
15504
+ } | undefined;
15505
+ }>]>>;
15506
+ icons: z.ZodOptional<z.ZodObject<{
15507
+ library: z.ZodEnum<["fontawesome", "lucide"]>;
15508
+ }, "strip", z.ZodTypeAny, {
15509
+ library: "fontawesome" | "lucide";
15510
+ }, {
15511
+ library: "fontawesome" | "lucide";
15512
+ }>>;
15513
+ styling: z.ZodOptional<z.ZodObject<{
15514
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
15515
+ codeblocks: z.ZodUnion<[z.ZodOptional<z.ZodEnum<["system", "dark"]>>, z.ZodObject<{
15516
+ theme: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>, z.ZodObject<{
15517
+ light: z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>;
15518
+ dark: z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>;
15519
+ }, "strip", z.ZodTypeAny, {
15520
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15521
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15522
+ }, {
15523
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15524
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15525
+ }>]>>;
15526
+ languages: z.ZodOptional<z.ZodObject<{
15527
+ custom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15528
+ }, "strip", z.ZodTypeAny, {
15529
+ custom?: string[] | undefined;
15530
+ }, {
15531
+ custom?: string[] | undefined;
15532
+ }>>;
15533
+ }, "strip", z.ZodTypeAny, {
15534
+ languages?: {
15535
+ custom?: string[] | undefined;
15536
+ } | undefined;
15537
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
15538
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15539
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15540
+ } | undefined;
15541
+ }, {
15542
+ languages?: {
15543
+ custom?: string[] | undefined;
15544
+ } | undefined;
15545
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
15546
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15547
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15548
+ } | undefined;
15549
+ }>]>;
15550
+ latex: z.ZodOptional<z.ZodBoolean>;
15551
+ }, "strip", z.ZodTypeAny, {
15552
+ eyebrows?: "section" | "breadcrumbs" | undefined;
15553
+ codeblocks?: "dark" | "system" | {
15554
+ languages?: {
15555
+ custom?: string[] | undefined;
15556
+ } | undefined;
15557
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
15558
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15559
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15560
+ } | undefined;
15561
+ } | undefined;
15562
+ latex?: boolean | undefined;
15563
+ }, {
15564
+ eyebrows?: "section" | "breadcrumbs" | undefined;
15565
+ codeblocks?: "dark" | "system" | {
15566
+ languages?: {
15567
+ custom?: string[] | undefined;
15568
+ } | undefined;
15569
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
15570
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15571
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
15572
+ } | undefined;
15573
+ } | undefined;
15574
+ latex?: boolean | undefined;
15575
+ }>>;
15576
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
15577
+ source: z.ZodString;
15578
+ destination: z.ZodString;
15579
+ permanent: z.ZodOptional<z.ZodBoolean>;
15580
+ }, "strip", z.ZodTypeAny, {
15581
+ source: string;
15582
+ destination: string;
15583
+ permanent?: boolean | undefined;
15584
+ }, {
15585
+ source: string;
15586
+ destination: string;
15587
+ permanent?: boolean | undefined;
15588
+ }>, "many">, {
15589
+ source: string;
15590
+ destination: string;
15591
+ permanent?: boolean | undefined;
15592
+ }[], {
15593
+ source: string;
15594
+ destination: string;
15595
+ permanent?: boolean | undefined;
15596
+ }[]>>;
15597
+ integrations: z.ZodOptional<z.ZodObject<{
15598
+ amplitude: z.ZodOptional<z.ZodObject<{
15599
+ apiKey: z.ZodString;
15600
+ }, "strip", z.ZodTypeAny, {
15601
+ apiKey: string;
15602
+ }, {
15603
+ apiKey: string;
15604
+ }>>;
15605
+ clarity: z.ZodOptional<z.ZodObject<{
15606
+ projectId: z.ZodString;
15607
+ }, "strip", z.ZodTypeAny, {
15608
+ projectId: string;
15609
+ }, {
15610
+ projectId: string;
15611
+ }>>;
15612
+ clearbit: z.ZodOptional<z.ZodObject<{
15613
+ publicApiKey: z.ZodString;
15614
+ }, "strip", z.ZodTypeAny, {
15615
+ publicApiKey: string;
15616
+ }, {
15617
+ publicApiKey: string;
15618
+ }>>;
15619
+ fathom: z.ZodOptional<z.ZodObject<{
15620
+ siteId: z.ZodString;
15621
+ }, "strip", z.ZodTypeAny, {
15622
+ siteId: string;
15623
+ }, {
15624
+ siteId: string;
15625
+ }>>;
15626
+ frontchat: z.ZodOptional<z.ZodObject<{
15627
+ snippetId: z.ZodString;
15628
+ }, "strip", z.ZodTypeAny, {
15629
+ snippetId: string;
15630
+ }, {
15631
+ snippetId: string;
15632
+ }>>;
15633
+ ga4: z.ZodOptional<z.ZodObject<{
15634
+ measurementId: z.ZodString;
15635
+ }, "strip", z.ZodTypeAny, {
15636
+ measurementId: string;
15637
+ }, {
15638
+ measurementId: string;
15639
+ }>>;
15640
+ gtm: z.ZodOptional<z.ZodObject<{
15641
+ tagId: z.ZodString;
15642
+ }, "strip", z.ZodTypeAny, {
15643
+ tagId: string;
15644
+ }, {
15645
+ tagId: string;
15646
+ }>>;
15647
+ heap: z.ZodOptional<z.ZodObject<{
15648
+ appId: z.ZodString;
15649
+ }, "strip", z.ZodTypeAny, {
15650
+ appId: string;
15651
+ }, {
15652
+ appId: string;
15653
+ }>>;
15654
+ hightouch: z.ZodOptional<z.ZodObject<{
15655
+ writeKey: z.ZodString;
15656
+ apiHost: z.ZodOptional<z.ZodString>;
15657
+ }, "strip", z.ZodTypeAny, {
15658
+ writeKey: string;
15659
+ apiHost?: string | undefined;
15660
+ }, {
15661
+ writeKey: string;
15662
+ apiHost?: string | undefined;
15663
+ }>>;
15664
+ hotjar: z.ZodOptional<z.ZodObject<{
15665
+ hjid: z.ZodString;
15666
+ hjsv: z.ZodString;
15667
+ }, "strip", z.ZodTypeAny, {
15668
+ hjid: string;
15669
+ hjsv: string;
15670
+ }, {
15671
+ hjid: string;
15672
+ hjsv: string;
15673
+ }>>;
15674
+ intercom: z.ZodOptional<z.ZodObject<{
15675
+ appId: z.ZodString;
15676
+ }, "strip", z.ZodTypeAny, {
15677
+ appId: string;
15678
+ }, {
15679
+ appId: string;
15680
+ }>>;
15681
+ koala: z.ZodOptional<z.ZodObject<{
15682
+ publicApiKey: z.ZodString;
15683
+ }, "strip", z.ZodTypeAny, {
15684
+ publicApiKey: string;
15685
+ }, {
15686
+ publicApiKey: string;
15687
+ }>>;
15688
+ logrocket: z.ZodOptional<z.ZodObject<{
15689
+ appId: z.ZodString;
15690
+ }, "strip", z.ZodTypeAny, {
15691
+ appId: string;
15692
+ }, {
15693
+ appId: string;
15694
+ }>>;
15695
+ mixpanel: z.ZodOptional<z.ZodObject<{
15696
+ projectToken: z.ZodString;
15697
+ }, "strip", z.ZodTypeAny, {
15698
+ projectToken: string;
15699
+ }, {
15700
+ projectToken: string;
15701
+ }>>;
15702
+ osano: z.ZodOptional<z.ZodObject<{
15703
+ scriptSource: z.ZodString;
15704
+ }, "strip", z.ZodTypeAny, {
15705
+ scriptSource: string;
15706
+ }, {
15707
+ scriptSource: string;
15708
+ }>>;
15709
+ pirsch: z.ZodOptional<z.ZodObject<{
15710
+ id: z.ZodString;
15711
+ }, "strip", z.ZodTypeAny, {
15712
+ id: string;
15713
+ }, {
15714
+ id: string;
15715
+ }>>;
15716
+ posthog: z.ZodOptional<z.ZodObject<{
15717
+ apiKey: z.ZodString;
15718
+ apiHost: z.ZodOptional<z.ZodString>;
15719
+ }, "strip", z.ZodTypeAny, {
15720
+ apiKey: string;
15721
+ apiHost?: string | undefined;
15722
+ }, {
15723
+ apiKey: string;
15724
+ apiHost?: string | undefined;
15725
+ }>>;
15726
+ plausible: z.ZodOptional<z.ZodObject<{
15727
+ domain: z.ZodEffects<z.ZodString, string, string>;
15728
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15729
+ }, "strip", z.ZodTypeAny, {
15730
+ domain: string;
15731
+ server?: string | undefined;
15732
+ }, {
15733
+ domain: string;
15734
+ server?: string | undefined;
15735
+ }>>;
15736
+ segment: z.ZodOptional<z.ZodObject<{
15737
+ key: z.ZodString;
15738
+ }, "strip", z.ZodTypeAny, {
15739
+ key: string;
15740
+ }, {
15741
+ key: string;
15742
+ }>>;
15743
+ telemetry: z.ZodOptional<z.ZodObject<{
15744
+ enabled: z.ZodOptional<z.ZodBoolean>;
15745
+ }, "strip", z.ZodTypeAny, {
15746
+ enabled?: boolean | undefined;
15747
+ }, {
15748
+ enabled?: boolean | undefined;
15749
+ }>>;
15750
+ cookies: z.ZodOptional<z.ZodObject<{
15751
+ key: z.ZodOptional<z.ZodString>;
15752
+ value: z.ZodOptional<z.ZodString>;
15753
+ }, "strip", z.ZodTypeAny, {
15754
+ value?: string | undefined;
15755
+ key?: string | undefined;
15756
+ }, {
15757
+ value?: string | undefined;
15758
+ key?: string | undefined;
15759
+ }>>;
15760
+ }, "strict", z.ZodTypeAny, {
15761
+ amplitude?: {
15762
+ apiKey: string;
15763
+ } | undefined;
15764
+ clarity?: {
15765
+ projectId: string;
15766
+ } | undefined;
15767
+ clearbit?: {
15768
+ publicApiKey: string;
15769
+ } | undefined;
15770
+ fathom?: {
15771
+ siteId: string;
15772
+ } | undefined;
15773
+ ga4?: {
15774
+ measurementId: string;
15775
+ } | undefined;
15776
+ gtm?: {
15777
+ tagId: string;
15778
+ } | undefined;
15779
+ heap?: {
15780
+ appId: string;
15781
+ } | undefined;
15782
+ hightouch?: {
15783
+ writeKey: string;
15784
+ apiHost?: string | undefined;
15785
+ } | undefined;
15786
+ hotjar?: {
15787
+ hjid: string;
15788
+ hjsv: string;
15789
+ } | undefined;
15790
+ koala?: {
15791
+ publicApiKey: string;
15792
+ } | undefined;
15793
+ logrocket?: {
15794
+ appId: string;
15795
+ } | undefined;
15796
+ mixpanel?: {
15797
+ projectToken: string;
15798
+ } | undefined;
15799
+ pirsch?: {
15800
+ id: string;
15801
+ } | undefined;
15802
+ posthog?: {
15803
+ apiKey: string;
15804
+ apiHost?: string | undefined;
15805
+ } | undefined;
15806
+ plausible?: {
15807
+ domain: string;
15808
+ server?: string | undefined;
15809
+ } | undefined;
15810
+ segment?: {
15811
+ key: string;
15812
+ } | undefined;
15813
+ intercom?: {
15814
+ appId: string;
15815
+ } | undefined;
15816
+ frontchat?: {
15817
+ snippetId: string;
15818
+ } | undefined;
15819
+ osano?: {
15820
+ scriptSource: string;
15821
+ } | undefined;
15822
+ telemetry?: {
15823
+ enabled?: boolean | undefined;
15824
+ } | undefined;
15825
+ cookies?: {
15826
+ value?: string | undefined;
15827
+ key?: string | undefined;
15828
+ } | undefined;
15829
+ }, {
15830
+ amplitude?: {
15831
+ apiKey: string;
15832
+ } | undefined;
15833
+ clarity?: {
15834
+ projectId: string;
15835
+ } | undefined;
15836
+ clearbit?: {
15837
+ publicApiKey: string;
15838
+ } | undefined;
15839
+ fathom?: {
15840
+ siteId: string;
15841
+ } | undefined;
15842
+ ga4?: {
15843
+ measurementId: string;
15844
+ } | undefined;
15845
+ gtm?: {
15846
+ tagId: string;
15847
+ } | undefined;
15848
+ heap?: {
15849
+ appId: string;
15850
+ } | undefined;
15851
+ hightouch?: {
15852
+ writeKey: string;
15853
+ apiHost?: string | undefined;
15854
+ } | undefined;
15855
+ hotjar?: {
15856
+ hjid: string;
15857
+ hjsv: string;
15858
+ } | undefined;
15859
+ koala?: {
15860
+ publicApiKey: string;
15861
+ } | undefined;
15862
+ logrocket?: {
15863
+ appId: string;
15864
+ } | undefined;
15865
+ mixpanel?: {
15866
+ projectToken: string;
15867
+ } | undefined;
15868
+ pirsch?: {
15869
+ id: string;
15870
+ } | undefined;
15871
+ posthog?: {
15872
+ apiKey: string;
15873
+ apiHost?: string | undefined;
15874
+ } | undefined;
15875
+ plausible?: {
15876
+ domain: string;
15877
+ server?: string | undefined;
15878
+ } | undefined;
15879
+ segment?: {
15880
+ key: string;
15881
+ } | undefined;
15882
+ intercom?: {
15883
+ appId: string;
15884
+ } | undefined;
15885
+ frontchat?: {
15886
+ snippetId: string;
15887
+ } | undefined;
15888
+ osano?: {
15889
+ scriptSource: string;
15890
+ } | undefined;
15891
+ telemetry?: {
15892
+ enabled?: boolean | undefined;
15893
+ } | undefined;
15894
+ cookies?: {
15895
+ value?: string | undefined;
15896
+ key?: string | undefined;
15897
+ } | undefined;
15898
+ }>>;
15899
+ banner: z.ZodOptional<z.ZodObject<{
15900
+ content: z.ZodString;
15901
+ dismissible: z.ZodOptional<z.ZodBoolean>;
15902
+ }, "strip", z.ZodTypeAny, {
15903
+ content: string;
15904
+ dismissible?: boolean | undefined;
15905
+ }, {
15906
+ content: string;
15907
+ dismissible?: boolean | undefined;
15908
+ }>>;
15909
+ errors: z.ZodOptional<z.ZodObject<{
15910
+ '404': z.ZodObject<{
15911
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15912
+ title: z.ZodOptional<z.ZodString>;
15913
+ description: z.ZodOptional<z.ZodString>;
15914
+ }, "strip", z.ZodTypeAny, {
15915
+ redirect: boolean;
15916
+ title?: string | undefined;
15917
+ description?: string | undefined;
15918
+ }, {
15919
+ title?: string | undefined;
15920
+ description?: string | undefined;
15921
+ redirect?: boolean | undefined;
15922
+ }>;
15923
+ }, "strip", z.ZodTypeAny, {
15924
+ '404': {
15925
+ redirect: boolean;
15926
+ title?: string | undefined;
15927
+ description?: string | undefined;
15928
+ };
15929
+ }, {
15930
+ '404': {
15931
+ title?: string | undefined;
15932
+ description?: string | undefined;
15933
+ redirect?: boolean | undefined;
15934
+ };
15935
+ }>>;
15936
+ contextual: z.ZodOptional<z.ZodObject<{
15937
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "mcp", "cursor", "vscode"]>, z.ZodObject<{
15938
+ title: z.ZodString;
15939
+ description: z.ZodString;
15940
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
15941
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
15942
+ name: z.ZodEffects<z.ZodString, string, string>;
15943
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
15944
+ }, "strip", z.ZodTypeAny, {
15945
+ name: string;
15946
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15947
+ library?: "fontawesome" | "lucide" | undefined;
15948
+ }, {
15949
+ name: string;
15950
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15951
+ library?: "fontawesome" | "lucide" | undefined;
15952
+ }>]>>;
15953
+ href: z.ZodUnion<[z.ZodString, z.ZodObject<{
15954
+ base: z.ZodString;
15955
+ query: z.ZodOptional<z.ZodArray<z.ZodObject<{
15956
+ key: z.ZodString;
15957
+ value: z.ZodString;
15958
+ }, "strip", z.ZodTypeAny, {
15959
+ value: string;
15960
+ key: string;
15961
+ }, {
15962
+ value: string;
15963
+ key: string;
15964
+ }>, "many">>;
15965
+ }, "strip", z.ZodTypeAny, {
15966
+ base: string;
15967
+ query?: {
15968
+ value: string;
15969
+ key: string;
15970
+ }[] | undefined;
15971
+ }, {
15972
+ base: string;
15973
+ query?: {
15974
+ value: string;
15975
+ key: string;
15976
+ }[] | undefined;
15977
+ }>]>;
15978
+ }, "strip", z.ZodTypeAny, {
15979
+ href: string | {
15980
+ base: string;
15981
+ query?: {
15982
+ value: string;
15983
+ key: string;
15984
+ }[] | undefined;
15985
+ };
15986
+ title: string;
15987
+ description: string;
15988
+ icon?: string | {
15989
+ name: string;
15990
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
15991
+ library?: "fontawesome" | "lucide" | undefined;
15992
+ } | undefined;
15993
+ }, {
15994
+ href: string | {
15995
+ base: string;
15996
+ query?: {
15997
+ value: string;
15998
+ key: string;
15999
+ }[] | undefined;
16000
+ };
16001
+ title: string;
16002
+ description: string;
16003
+ icon?: string | {
16004
+ name: string;
16005
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16006
+ library?: "fontawesome" | "lucide" | undefined;
16007
+ } | undefined;
16008
+ }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16009
+ href: string | {
16010
+ base: string;
16011
+ query?: {
16012
+ value: string;
16013
+ key: string;
16014
+ }[] | undefined;
16015
+ };
16016
+ title: string;
16017
+ description: string;
16018
+ icon?: string | {
16019
+ name: string;
16020
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16021
+ library?: "fontawesome" | "lucide" | undefined;
16022
+ } | undefined;
16023
+ })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16024
+ href: string | {
16025
+ base: string;
16026
+ query?: {
16027
+ value: string;
16028
+ key: string;
16029
+ }[] | undefined;
16030
+ };
16031
+ title: string;
16032
+ description: string;
16033
+ icon?: string | {
16034
+ name: string;
16035
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16036
+ library?: "fontawesome" | "lucide" | undefined;
16037
+ } | undefined;
16038
+ })[]>;
16039
+ }, "strip", z.ZodTypeAny, {
16040
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16041
+ href: string | {
16042
+ base: string;
16043
+ query?: {
16044
+ value: string;
16045
+ key: string;
16046
+ }[] | undefined;
16047
+ };
16048
+ title: string;
16049
+ description: string;
16050
+ icon?: string | {
16051
+ name: string;
16052
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16053
+ library?: "fontawesome" | "lucide" | undefined;
16054
+ } | undefined;
16055
+ })[];
16056
+ }, {
16057
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16058
+ href: string | {
16059
+ base: string;
16060
+ query?: {
16061
+ value: string;
16062
+ key: string;
16063
+ }[] | undefined;
16064
+ };
16065
+ title: string;
16066
+ description: string;
16067
+ icon?: string | {
16068
+ name: string;
16069
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16070
+ library?: "fontawesome" | "lucide" | undefined;
16071
+ } | undefined;
16072
+ })[];
16073
+ }>>;
16074
+ thumbnails: z.ZodOptional<z.ZodObject<{
16075
+ appearance: z.ZodOptional<z.ZodEnum<[import("./properties/thumbnails.js").ThumbnailAppearance.Light, import("./properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
16076
+ background: z.ZodOptional<z.ZodString>;
16077
+ fonts: z.ZodOptional<z.ZodObject<{
16078
+ family: z.ZodString;
16079
+ }, "strip", z.ZodTypeAny, {
16080
+ family: string;
16081
+ }, {
16082
+ family: string;
16083
+ }>>;
16084
+ }, "strip", z.ZodTypeAny, {
16085
+ background?: string | undefined;
16086
+ appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
16087
+ fonts?: {
16088
+ family: string;
16089
+ } | undefined;
16090
+ }, {
16091
+ background?: string | undefined;
16092
+ appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
16093
+ fonts?: {
16094
+ family: string;
16095
+ } | undefined;
16096
+ }>>;
16097
+ interaction: z.ZodOptional<z.ZodObject<{
16098
+ drilldown: z.ZodOptional<z.ZodBoolean>;
16099
+ }, "strip", z.ZodTypeAny, {
16100
+ drilldown?: boolean | undefined;
16101
+ }, {
16102
+ drilldown?: boolean | undefined;
16103
+ }>>;
16104
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
16105
+ timestamp: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
16106
+ }, "strip", z.ZodTypeAny, {
16107
+ timestamp: boolean;
16108
+ }, {
16109
+ timestamp?: boolean | undefined;
16110
+ }>>>;
16111
+ theme: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen"]>;
16112
+ }, "strip", z.ZodTypeAny, {
16113
+ name: string;
16114
+ $schema: string;
16115
+ theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen";
16116
+ colors: {
16117
+ primary: string;
16118
+ light?: string | undefined;
16119
+ dark?: string | undefined;
16120
+ };
16121
+ navigation: {
16122
+ products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
16123
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16124
+ } | {
16125
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
16126
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16127
+ } | {
16128
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
16129
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16130
+ } | {
16131
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
16132
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16133
+ } | {
16134
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
16135
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16136
+ } | {
16137
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
16138
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16139
+ } | {
16140
+ groups: ({
16141
+ openapi: string | string[] | {
16142
+ source: string;
16143
+ directory?: string | undefined;
16144
+ };
16145
+ group: string;
16146
+ pages: any[];
16147
+ icon?: string | {
16148
+ name: string;
16149
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16150
+ library?: "fontawesome" | "lucide" | undefined;
16151
+ } | undefined;
16152
+ expanded?: boolean | undefined;
16153
+ public?: boolean | undefined;
16154
+ tag?: string | undefined;
16155
+ hidden?: boolean | undefined;
16156
+ root?: string | undefined;
16157
+ } | {
16158
+ group: string;
16159
+ pages: any[];
16160
+ asyncapi: string | string[] | {
16161
+ source: string;
16162
+ directory?: string | undefined;
16163
+ };
16164
+ icon?: string | {
16165
+ name: string;
16166
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16167
+ library?: "fontawesome" | "lucide" | undefined;
16168
+ } | undefined;
16169
+ expanded?: boolean | undefined;
16170
+ public?: boolean | undefined;
16171
+ tag?: string | undefined;
16172
+ hidden?: boolean | undefined;
16173
+ root?: string | undefined;
16174
+ } | {
16175
+ group: string;
16176
+ pages: any[];
16177
+ icon?: string | {
16178
+ name: string;
16179
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16180
+ library?: "fontawesome" | "lucide" | undefined;
16181
+ } | undefined;
16182
+ expanded?: boolean | undefined;
16183
+ public?: boolean | undefined;
16184
+ tag?: string | undefined;
16185
+ hidden?: boolean | undefined;
16186
+ root?: string | undefined;
16187
+ })[];
16188
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16189
+ } | {
16190
+ pages: any[];
16191
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16192
+ };
16193
+ background?: {
16194
+ color?: {
16195
+ light?: string | undefined;
16196
+ dark?: string | undefined;
16197
+ } | undefined;
16198
+ image?: string | {
16199
+ light: string;
16200
+ dark: string;
16201
+ } | undefined;
16202
+ decoration?: "gradient" | "grid" | "windows" | undefined;
16203
+ } | undefined;
16204
+ logo?: string | {
16205
+ light: string;
16206
+ dark: string;
16207
+ href?: string | undefined;
16208
+ } | undefined;
16209
+ favicon?: string | {
16210
+ light: string;
16211
+ dark: string;
16212
+ } | undefined;
16213
+ api?: {
16214
+ params?: {
16215
+ expanded?: "all" | "closed" | undefined;
16216
+ } | undefined;
16217
+ openapi?: string | string[] | {
16218
+ source: string;
16219
+ directory?: string | undefined;
16220
+ } | undefined;
16221
+ playground?: {
16222
+ display?: "simple" | "none" | "interactive" | undefined;
16223
+ proxy?: boolean | undefined;
16224
+ } | undefined;
16225
+ asyncapi?: string | string[] | {
16226
+ source: string;
16227
+ directory?: string | undefined;
16228
+ } | undefined;
16229
+ examples?: {
16230
+ languages?: string[] | undefined;
16231
+ defaults?: "all" | "required" | undefined;
16232
+ prefill?: boolean | undefined;
16233
+ } | undefined;
16234
+ mdx?: {
16235
+ server?: string | string[] | undefined;
16236
+ auth?: {
16237
+ name?: string | undefined;
16238
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
16239
+ } | undefined;
16240
+ } | undefined;
16241
+ } | undefined;
16242
+ metadata?: {
16243
+ timestamp: boolean;
16244
+ } | undefined;
16245
+ footer?: {
16246
+ links?: {
16247
+ items: {
16248
+ href: string;
16249
+ label: string;
16250
+ }[];
16251
+ header?: string | undefined;
16252
+ }[] | undefined;
16253
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
16254
+ } | undefined;
16255
+ integrations?: {
16256
+ amplitude?: {
16257
+ apiKey: string;
16258
+ } | undefined;
16259
+ clarity?: {
16260
+ projectId: string;
16261
+ } | undefined;
16262
+ clearbit?: {
16263
+ publicApiKey: string;
16264
+ } | undefined;
16265
+ fathom?: {
16266
+ siteId: string;
16267
+ } | undefined;
16268
+ ga4?: {
16269
+ measurementId: string;
16270
+ } | undefined;
16271
+ gtm?: {
16272
+ tagId: string;
16273
+ } | undefined;
16274
+ heap?: {
16275
+ appId: string;
16276
+ } | undefined;
16277
+ hightouch?: {
16278
+ writeKey: string;
16279
+ apiHost?: string | undefined;
16280
+ } | undefined;
16281
+ hotjar?: {
16282
+ hjid: string;
16283
+ hjsv: string;
16284
+ } | undefined;
16285
+ koala?: {
16286
+ publicApiKey: string;
16287
+ } | undefined;
16288
+ logrocket?: {
16289
+ appId: string;
16290
+ } | undefined;
16291
+ mixpanel?: {
16292
+ projectToken: string;
16293
+ } | undefined;
16294
+ pirsch?: {
16295
+ id: string;
16296
+ } | undefined;
16297
+ posthog?: {
16298
+ apiKey: string;
16299
+ apiHost?: string | undefined;
16300
+ } | undefined;
16301
+ plausible?: {
16302
+ domain: string;
16303
+ server?: string | undefined;
16304
+ } | undefined;
16305
+ segment?: {
16306
+ key: string;
16307
+ } | undefined;
16308
+ intercom?: {
16309
+ appId: string;
16310
+ } | undefined;
16311
+ frontchat?: {
16312
+ snippetId: string;
16313
+ } | undefined;
16314
+ osano?: {
16315
+ scriptSource: string;
16316
+ } | undefined;
16317
+ telemetry?: {
16318
+ enabled?: boolean | undefined;
16319
+ } | undefined;
16320
+ cookies?: {
16321
+ value?: string | undefined;
16322
+ key?: string | undefined;
16323
+ } | undefined;
16324
+ } | undefined;
16325
+ search?: {
16326
+ prompt?: string | undefined;
16327
+ } | undefined;
16328
+ redirects?: {
16329
+ source: string;
16330
+ destination: string;
16331
+ permanent?: boolean | undefined;
16332
+ }[] | undefined;
16333
+ seo?: {
16334
+ metatags?: Record<string, string> | undefined;
16335
+ indexing?: "all" | "navigable" | undefined;
16336
+ } | undefined;
16337
+ description?: string | undefined;
16338
+ appearance?: {
16339
+ strict?: boolean | undefined;
16340
+ default?: "light" | "dark" | "system" | undefined;
16341
+ } | undefined;
16342
+ fonts?: {
16343
+ family: string;
16344
+ source?: string | undefined;
16345
+ weight?: number | undefined;
16346
+ format?: "woff" | "woff2" | undefined;
16347
+ } | {
16348
+ body?: {
16349
+ family: string;
16350
+ source?: string | undefined;
16351
+ weight?: number | undefined;
16352
+ format?: "woff" | "woff2" | undefined;
16353
+ } | undefined;
16354
+ heading?: {
16355
+ family: string;
16356
+ source?: string | undefined;
16357
+ weight?: number | undefined;
16358
+ format?: "woff" | "woff2" | undefined;
16359
+ } | undefined;
16360
+ } | undefined;
16361
+ navbar?: {
16362
+ primary?: {
16363
+ type: "button";
16364
+ href: string;
16365
+ label: string;
16366
+ } | {
16367
+ type: "github";
16368
+ href: string;
16369
+ } | undefined;
16370
+ links?: {
16371
+ href: string;
16372
+ label: string;
16373
+ icon?: string | {
16374
+ name: string;
16375
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16376
+ library?: "fontawesome" | "lucide" | undefined;
16377
+ } | undefined;
16378
+ }[] | undefined;
16379
+ } | undefined;
16380
+ icons?: {
16381
+ library: "fontawesome" | "lucide";
16382
+ } | undefined;
16383
+ styling?: {
16384
+ eyebrows?: "section" | "breadcrumbs" | undefined;
16385
+ codeblocks?: "dark" | "system" | {
16386
+ languages?: {
16387
+ custom?: string[] | undefined;
16388
+ } | undefined;
16389
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
16390
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
16391
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
16392
+ } | undefined;
16393
+ } | undefined;
16394
+ latex?: boolean | undefined;
16395
+ } | undefined;
16396
+ banner?: {
16397
+ content: string;
16398
+ dismissible?: boolean | undefined;
16399
+ } | undefined;
16400
+ errors?: {
16401
+ '404': {
16402
+ redirect: boolean;
16403
+ title?: string | undefined;
16404
+ description?: string | undefined;
16405
+ };
16406
+ } | undefined;
16407
+ contextual?: {
16408
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16409
+ href: string | {
16410
+ base: string;
16411
+ query?: {
16412
+ value: string;
16413
+ key: string;
16414
+ }[] | undefined;
16415
+ };
16416
+ title: string;
16417
+ description: string;
16418
+ icon?: string | {
16419
+ name: string;
16420
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16421
+ library?: "fontawesome" | "lucide" | undefined;
16422
+ } | undefined;
16423
+ })[];
16424
+ } | undefined;
16425
+ thumbnails?: {
16426
+ background?: string | undefined;
16427
+ appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
16428
+ fonts?: {
16429
+ family: string;
16430
+ } | undefined;
16431
+ } | undefined;
16432
+ interaction?: {
16433
+ drilldown?: boolean | undefined;
16434
+ } | undefined;
16435
+ }, {
16436
+ name: string;
16437
+ theme: "mint" | "maple" | "palm" | "willow" | "linden" | "almond" | "aspen";
16438
+ colors: {
16439
+ primary: string;
16440
+ light?: string | undefined;
16441
+ dark?: string | undefined;
16442
+ };
16443
+ navigation: {
16444
+ products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
16445
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16446
+ } | {
16447
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
16448
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16449
+ } | {
16450
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
16451
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16452
+ } | {
16453
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
16454
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16455
+ } | {
16456
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
16457
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16458
+ } | {
16459
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
16460
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16461
+ } | {
16462
+ groups: ({
16463
+ openapi: string | string[] | {
16464
+ source: string;
16465
+ directory?: string | undefined;
16466
+ };
16467
+ group: string;
16468
+ icon?: string | {
16469
+ name: string;
16470
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16471
+ library?: "fontawesome" | "lucide" | undefined;
16472
+ } | undefined;
16473
+ expanded?: boolean | undefined;
16474
+ public?: boolean | undefined;
16475
+ pages?: any[] | undefined;
16476
+ tag?: string | undefined;
16477
+ hidden?: boolean | undefined;
16478
+ root?: string | undefined;
16479
+ } | {
16480
+ group: string;
16481
+ asyncapi: string | string[] | {
16482
+ source: string;
16483
+ directory?: string | undefined;
16484
+ };
16485
+ icon?: string | {
16486
+ name: string;
16487
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16488
+ library?: "fontawesome" | "lucide" | undefined;
16489
+ } | undefined;
16490
+ expanded?: boolean | undefined;
16491
+ public?: boolean | undefined;
16492
+ pages?: any[] | undefined;
16493
+ tag?: string | undefined;
16494
+ hidden?: boolean | undefined;
16495
+ root?: string | undefined;
16496
+ } | {
16497
+ group: string;
16498
+ icon?: string | {
16499
+ name: string;
16500
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16501
+ library?: "fontawesome" | "lucide" | undefined;
16502
+ } | undefined;
16503
+ expanded?: boolean | undefined;
16504
+ public?: boolean | undefined;
16505
+ pages?: any[] | undefined;
16506
+ tag?: string | undefined;
16507
+ hidden?: boolean | undefined;
16508
+ root?: string | undefined;
16509
+ })[];
16510
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16511
+ } | {
16512
+ pages: any[];
16513
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
16514
+ };
16515
+ background?: {
16516
+ color?: {
16517
+ light?: string | undefined;
16518
+ dark?: string | undefined;
16519
+ } | undefined;
16520
+ image?: string | {
16521
+ light: string;
16522
+ dark: string;
16523
+ } | undefined;
16524
+ decoration?: "gradient" | "grid" | "windows" | undefined;
16525
+ } | undefined;
16526
+ $schema?: string | undefined;
16527
+ logo?: string | {
16528
+ light: string;
16529
+ dark: string;
16530
+ href?: string | undefined;
16531
+ } | undefined;
16532
+ favicon?: string | {
16533
+ light: string;
16534
+ dark: string;
16535
+ } | undefined;
16536
+ api?: {
16537
+ params?: {
16538
+ expanded?: "all" | "closed" | undefined;
16539
+ } | undefined;
16540
+ openapi?: string | string[] | {
16541
+ source: string;
16542
+ directory?: string | undefined;
16543
+ } | undefined;
16544
+ playground?: {
16545
+ display?: "simple" | "none" | "interactive" | undefined;
16546
+ proxy?: boolean | undefined;
16547
+ } | undefined;
16548
+ asyncapi?: string | string[] | {
16549
+ source: string;
16550
+ directory?: string | undefined;
16551
+ } | undefined;
16552
+ examples?: {
16553
+ languages?: string[] | undefined;
16554
+ defaults?: "all" | "required" | undefined;
16555
+ prefill?: boolean | undefined;
16556
+ } | undefined;
16557
+ mdx?: {
16558
+ server?: string | string[] | undefined;
16559
+ auth?: {
16560
+ name?: string | undefined;
16561
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
16562
+ } | undefined;
16563
+ } | undefined;
16564
+ } | undefined;
16565
+ metadata?: {
16566
+ timestamp?: boolean | undefined;
16567
+ } | undefined;
16568
+ footer?: {
16569
+ links?: {
16570
+ items: {
16571
+ href: string;
16572
+ label: string;
16573
+ }[];
16574
+ header?: string | undefined;
16575
+ }[] | undefined;
16576
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
16577
+ } | undefined;
16578
+ integrations?: {
16579
+ amplitude?: {
16580
+ apiKey: string;
16581
+ } | undefined;
16582
+ clarity?: {
16583
+ projectId: string;
16584
+ } | undefined;
16585
+ clearbit?: {
16586
+ publicApiKey: string;
16587
+ } | undefined;
16588
+ fathom?: {
16589
+ siteId: string;
16590
+ } | undefined;
16591
+ ga4?: {
16592
+ measurementId: string;
16593
+ } | undefined;
16594
+ gtm?: {
16595
+ tagId: string;
16596
+ } | undefined;
16597
+ heap?: {
16598
+ appId: string;
16599
+ } | undefined;
16600
+ hightouch?: {
16601
+ writeKey: string;
16602
+ apiHost?: string | undefined;
16603
+ } | undefined;
16604
+ hotjar?: {
16605
+ hjid: string;
16606
+ hjsv: string;
16607
+ } | undefined;
16608
+ koala?: {
16609
+ publicApiKey: string;
16610
+ } | undefined;
16611
+ logrocket?: {
16612
+ appId: string;
16613
+ } | undefined;
16614
+ mixpanel?: {
16615
+ projectToken: string;
16616
+ } | undefined;
16617
+ pirsch?: {
16618
+ id: string;
16619
+ } | undefined;
16620
+ posthog?: {
16621
+ apiKey: string;
16622
+ apiHost?: string | undefined;
16623
+ } | undefined;
16624
+ plausible?: {
16625
+ domain: string;
16626
+ server?: string | undefined;
16627
+ } | undefined;
16628
+ segment?: {
16629
+ key: string;
16630
+ } | undefined;
16631
+ intercom?: {
16632
+ appId: string;
16633
+ } | undefined;
16634
+ frontchat?: {
16635
+ snippetId: string;
16636
+ } | undefined;
16637
+ osano?: {
16638
+ scriptSource: string;
16639
+ } | undefined;
16640
+ telemetry?: {
16641
+ enabled?: boolean | undefined;
16642
+ } | undefined;
16643
+ cookies?: {
16644
+ value?: string | undefined;
16645
+ key?: string | undefined;
16646
+ } | undefined;
16647
+ } | undefined;
16648
+ search?: {
16649
+ prompt?: string | undefined;
16650
+ } | undefined;
16651
+ redirects?: {
16652
+ source: string;
16653
+ destination: string;
16654
+ permanent?: boolean | undefined;
16655
+ }[] | undefined;
16656
+ seo?: {
16657
+ metatags?: Record<string, string> | undefined;
16658
+ indexing?: "all" | "navigable" | undefined;
16659
+ } | undefined;
16660
+ description?: string | undefined;
16661
+ appearance?: {
16662
+ strict?: boolean | undefined;
16663
+ default?: "light" | "dark" | "system" | undefined;
16664
+ } | undefined;
16665
+ fonts?: {
16666
+ family: string;
16667
+ source?: string | undefined;
16668
+ weight?: number | undefined;
16669
+ format?: "woff" | "woff2" | undefined;
16670
+ } | {
16671
+ body?: {
16672
+ family: string;
16673
+ source?: string | undefined;
16674
+ weight?: number | undefined;
16675
+ format?: "woff" | "woff2" | undefined;
16676
+ } | undefined;
16677
+ heading?: {
16678
+ family: string;
16679
+ source?: string | undefined;
16680
+ weight?: number | undefined;
16681
+ format?: "woff" | "woff2" | undefined;
16682
+ } | undefined;
16683
+ } | undefined;
16684
+ navbar?: {
16685
+ primary?: {
16686
+ type: "button";
16687
+ href: string;
16688
+ label: string;
16689
+ } | {
16690
+ type: "github";
16691
+ href: string;
16692
+ } | undefined;
16693
+ links?: {
16694
+ href: string;
16695
+ label: string;
16696
+ icon?: string | {
16697
+ name: string;
16698
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16699
+ library?: "fontawesome" | "lucide" | undefined;
16700
+ } | undefined;
16701
+ }[] | undefined;
16702
+ } | undefined;
16703
+ icons?: {
16704
+ library: "fontawesome" | "lucide";
16705
+ } | undefined;
16706
+ styling?: {
16707
+ eyebrows?: "section" | "breadcrumbs" | undefined;
16708
+ codeblocks?: "dark" | "system" | {
16709
+ languages?: {
16710
+ custom?: string[] | undefined;
16711
+ } | undefined;
16712
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
16713
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
16714
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
16715
+ } | undefined;
16716
+ } | undefined;
16717
+ latex?: boolean | undefined;
16718
+ } | undefined;
16719
+ banner?: {
16720
+ content: string;
16721
+ dismissible?: boolean | undefined;
16722
+ } | undefined;
16723
+ errors?: {
16724
+ '404': {
16725
+ title?: string | undefined;
16726
+ description?: string | undefined;
16727
+ redirect?: boolean | undefined;
16728
+ };
16729
+ } | undefined;
16730
+ contextual?: {
16731
+ options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "mcp" | "cursor" | "vscode" | {
16732
+ href: string | {
16733
+ base: string;
16734
+ query?: {
16735
+ value: string;
16736
+ key: string;
16737
+ }[] | undefined;
16738
+ };
16739
+ title: string;
16740
+ description: string;
16741
+ icon?: string | {
16742
+ name: string;
16743
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16744
+ library?: "fontawesome" | "lucide" | undefined;
16745
+ } | undefined;
16746
+ })[];
16747
+ } | undefined;
16748
+ thumbnails?: {
16749
+ background?: string | undefined;
16750
+ appearance?: import("./properties/thumbnails.js").ThumbnailAppearance | undefined;
16751
+ fonts?: {
16752
+ family: string;
16753
+ } | undefined;
16754
+ } | undefined;
16755
+ interaction?: {
16756
+ drilldown?: boolean | undefined;
16757
+ } | undefined;
16758
+ }>;