@mintlify/validation 0.1.238 → 0.1.239

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 (38) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +1 -0
  3. package/dist/mint-config/schemas/v2/index.d.ts +784 -1132
  4. package/dist/mint-config/schemas/v2/properties/feedback.d.ts +14 -0
  5. package/dist/mint-config/schemas/v2/properties/feedback.js +8 -0
  6. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +8 -12
  7. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +1 -1
  8. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -12
  9. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +1 -1
  10. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +47 -96
  11. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +12 -10
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +97 -166
  13. package/dist/mint-config/schemas/v2/properties/navigation/index.js +1 -1
  14. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +17 -21
  15. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +1 -1
  16. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +1 -0
  17. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +8 -12
  18. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +1 -1
  19. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -7
  20. package/dist/mint-config/schemas/v2/properties/navigation/version.js +1 -1
  21. package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +4 -3
  22. package/dist/mint-config/schemas/v2/properties/reusable/icon.js +1 -1
  23. package/dist/mint-config/schemas/v2/properties/seo.d.ts +1 -1
  24. package/dist/mint-config/schemas/v2/properties/seo.js +1 -0
  25. package/dist/mint-config/schemas/v2/properties/topbar.d.ts +22 -0
  26. package/dist/mint-config/schemas/v2/properties/topbar.js +1 -1
  27. package/dist/mint-config/schemas/v2/themes/mint.d.ts +196 -283
  28. package/dist/mint-config/schemas/v2/themes/prism.d.ts +196 -283
  29. package/dist/mint-config/schemas/v2/themes/quill.d.ts +196 -283
  30. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +110 -167
  31. package/dist/mint-config/schemas/v2/themes/reusable/index.js +2 -0
  32. package/dist/mint-config/schemas/v2/themes/venus.d.ts +196 -283
  33. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +10 -0
  34. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +240 -0
  35. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +6 -0
  36. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +223 -0
  37. package/dist/tsconfig.build.tsbuildinfo +1 -1
  38. package/package.json +2 -2
@@ -76,6 +76,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
76
76
  languages?: string[] | undefined;
77
77
  } | undefined;
78
78
  }>>;
79
+ feedback: z.ZodOptional<z.ZodObject<{
80
+ thumbs: z.ZodOptional<z.ZodBoolean>;
81
+ edits: z.ZodOptional<z.ZodBoolean>;
82
+ issues: z.ZodOptional<z.ZodBoolean>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ thumbs?: boolean | undefined;
85
+ edits?: boolean | undefined;
86
+ issues?: boolean | undefined;
87
+ }, {
88
+ thumbs?: boolean | undefined;
89
+ edits?: boolean | undefined;
90
+ issues?: boolean | undefined;
91
+ }>>;
79
92
  appearance: z.ZodOptional<z.ZodObject<{
80
93
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
81
94
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -239,14 +252,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
239
252
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
240
253
  group: z.ZodString;
241
254
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
242
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
255
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
243
256
  name: z.ZodEffects<z.ZodString, string, string>;
244
257
  }, "strip", z.ZodTypeAny, {
245
258
  name: string;
246
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
259
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
247
260
  }, {
248
261
  name: string;
249
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
262
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
250
263
  }>]>>;
251
264
  hidden: z.ZodOptional<z.ZodBoolean>;
252
265
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -254,7 +267,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
254
267
  group: string;
255
268
  icon?: string | {
256
269
  name: string;
257
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
270
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
258
271
  } | undefined;
259
272
  hidden?: boolean | undefined;
260
273
  root?: string | undefined;
@@ -262,7 +275,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
262
275
  group: string;
263
276
  icon?: string | {
264
277
  name: string;
265
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
278
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
266
279
  } | undefined;
267
280
  hidden?: boolean | undefined;
268
281
  root?: string | undefined;
@@ -284,7 +297,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
284
297
  group: string;
285
298
  icon?: string | {
286
299
  name: string;
287
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
300
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
288
301
  } | undefined;
289
302
  hidden?: boolean | undefined;
290
303
  root?: string | undefined;
@@ -298,7 +311,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
298
311
  group: string;
299
312
  icon?: string | {
300
313
  name: string;
301
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
314
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
302
315
  } | undefined;
303
316
  hidden?: boolean | undefined;
304
317
  root?: string | undefined;
@@ -335,7 +348,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
335
348
  group: string;
336
349
  icon?: string | {
337
350
  name: string;
338
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
351
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
339
352
  } | undefined;
340
353
  hidden?: boolean | undefined;
341
354
  root?: string | undefined;
@@ -368,7 +381,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
368
381
  group: string;
369
382
  icon?: string | {
370
383
  name: string;
371
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
384
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
372
385
  } | undefined;
373
386
  hidden?: boolean | undefined;
374
387
  root?: string | undefined;
@@ -408,14 +421,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
408
421
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
409
422
  group: z.ZodString;
410
423
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
411
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
424
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
412
425
  name: z.ZodEffects<z.ZodString, string, string>;
413
426
  }, "strip", z.ZodTypeAny, {
414
427
  name: string;
415
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
428
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
416
429
  }, {
417
430
  name: string;
418
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
431
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
419
432
  }>]>>;
420
433
  hidden: z.ZodOptional<z.ZodBoolean>;
421
434
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -423,7 +436,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
423
436
  group: string;
424
437
  icon?: string | {
425
438
  name: string;
426
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
439
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
427
440
  } | undefined;
428
441
  hidden?: boolean | undefined;
429
442
  root?: string | undefined;
@@ -431,7 +444,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
431
444
  group: string;
432
445
  icon?: string | {
433
446
  name: string;
434
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
447
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
435
448
  } | undefined;
436
449
  hidden?: boolean | undefined;
437
450
  root?: string | undefined;
@@ -453,7 +466,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
453
466
  group: string;
454
467
  icon?: string | {
455
468
  name: string;
456
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
469
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
457
470
  } | undefined;
458
471
  hidden?: boolean | undefined;
459
472
  root?: string | undefined;
@@ -467,7 +480,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
467
480
  group: string;
468
481
  icon?: string | {
469
482
  name: string;
470
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
483
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
471
484
  } | undefined;
472
485
  hidden?: boolean | undefined;
473
486
  root?: string | undefined;
@@ -482,8 +495,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
482
495
  pages: any[];
483
496
  }, {
484
497
  pages: any[];
485
- }>]>, z.ZodOptional<z.ZodObject<{
486
- global: z.ZodObject<{
498
+ }>]>, z.ZodObject<{
499
+ global: z.ZodOptional<z.ZodObject<{
487
500
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
488
501
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
489
502
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -493,19 +506,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
493
506
  }, {
494
507
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
495
508
  hidden?: boolean | undefined;
496
- }>, z.ZodUnion<[z.ZodObject<{
497
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
498
- }, "strip", z.ZodTypeAny, {
499
- openapi: (string | string[]) & (string | string[] | undefined);
500
- }, {
501
- openapi: (string | string[]) & (string | string[] | undefined);
502
509
  }>, z.ZodObject<{
503
510
  href: z.ZodString;
504
511
  }, "strip", z.ZodTypeAny, {
505
512
  href: string;
506
513
  }, {
507
514
  href: string;
508
- }>]>>, "many">>;
515
+ }>>, "many">>;
509
516
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
510
517
  version: z.ZodString;
511
518
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -515,110 +522,92 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
515
522
  }, {
516
523
  version: string;
517
524
  hidden?: boolean | undefined;
518
- }>, z.ZodUnion<[z.ZodObject<{
519
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
520
- }, "strip", z.ZodTypeAny, {
521
- openapi: (string | string[]) & (string | string[] | undefined);
522
- }, {
523
- openapi: (string | string[]) & (string | string[] | undefined);
524
525
  }>, z.ZodObject<{
525
526
  href: z.ZodString;
526
527
  }, "strip", z.ZodTypeAny, {
527
528
  href: string;
528
529
  }, {
529
530
  href: string;
530
- }>]>>, "many">>;
531
+ }>>, "many">>;
531
532
  tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
532
533
  tab: z.ZodString;
533
534
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
534
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
535
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
535
536
  name: z.ZodEffects<z.ZodString, string, string>;
536
537
  }, "strip", z.ZodTypeAny, {
537
538
  name: string;
538
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
539
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
539
540
  }, {
540
541
  name: string;
541
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
542
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
542
543
  }>]>>;
543
544
  hidden: z.ZodOptional<z.ZodBoolean>;
544
545
  }, "strip", z.ZodTypeAny, {
545
546
  tab: string;
546
547
  icon?: string | {
547
548
  name: string;
548
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
549
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
549
550
  } | undefined;
550
551
  hidden?: boolean | undefined;
551
552
  }, {
552
553
  tab: string;
553
554
  icon?: string | {
554
555
  name: string;
555
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
556
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
556
557
  } | undefined;
557
558
  hidden?: boolean | undefined;
558
- }>, z.ZodUnion<[z.ZodObject<{
559
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
560
- }, "strip", z.ZodTypeAny, {
561
- openapi: (string | string[]) & (string | string[] | undefined);
562
- }, {
563
- openapi: (string | string[]) & (string | string[] | undefined);
564
559
  }>, z.ZodObject<{
565
560
  href: z.ZodString;
566
561
  }, "strip", z.ZodTypeAny, {
567
562
  href: string;
568
563
  }, {
569
564
  href: string;
570
- }>]>>, "many">>;
565
+ }>>, "many">>;
571
566
  dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
572
567
  dropdown: z.ZodString;
573
568
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
574
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
569
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
575
570
  name: z.ZodEffects<z.ZodString, string, string>;
576
571
  }, "strip", z.ZodTypeAny, {
577
572
  name: string;
578
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
573
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
579
574
  }, {
580
575
  name: string;
581
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
576
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
582
577
  }>]>>;
583
578
  hidden: z.ZodOptional<z.ZodBoolean>;
584
579
  }, "strip", z.ZodTypeAny, {
585
580
  dropdown: string;
586
581
  icon?: string | {
587
582
  name: string;
588
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
583
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
589
584
  } | undefined;
590
585
  hidden?: boolean | undefined;
591
586
  }, {
592
587
  dropdown: string;
593
588
  icon?: string | {
594
589
  name: string;
595
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
590
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
596
591
  } | undefined;
597
592
  hidden?: boolean | undefined;
598
- }>, z.ZodUnion<[z.ZodObject<{
599
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
600
- }, "strip", z.ZodTypeAny, {
601
- openapi: (string | string[]) & (string | string[] | undefined);
602
- }, {
603
- openapi: (string | string[]) & (string | string[] | undefined);
604
593
  }>, z.ZodObject<{
605
594
  href: z.ZodString;
606
595
  }, "strip", z.ZodTypeAny, {
607
596
  href: string;
608
597
  }, {
609
598
  href: string;
610
- }>]>>, "many">>;
599
+ }>>, "many">>;
611
600
  anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
612
601
  anchor: z.ZodString;
613
602
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
614
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
603
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
615
604
  name: z.ZodEffects<z.ZodString, string, string>;
616
605
  }, "strip", z.ZodTypeAny, {
617
606
  name: string;
618
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
607
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
619
608
  }, {
620
609
  name: string;
621
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
610
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
622
611
  }>]>>;
623
612
  color: z.ZodOptional<z.ZodObject<{
624
613
  light: z.ZodString;
@@ -635,7 +624,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
635
624
  anchor: string;
636
625
  icon?: string | {
637
626
  name: string;
638
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
627
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
639
628
  } | undefined;
640
629
  color?: {
641
630
  light: string;
@@ -646,260 +635,214 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
646
635
  anchor: string;
647
636
  icon?: string | {
648
637
  name: string;
649
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
638
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
650
639
  } | undefined;
651
640
  color?: {
652
641
  light: string;
653
642
  dark: string;
654
643
  } | undefined;
655
644
  hidden?: boolean | undefined;
656
- }>, z.ZodUnion<[z.ZodObject<{
657
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
658
- }, "strip", z.ZodTypeAny, {
659
- openapi: (string | string[]) & (string | string[] | undefined);
660
- }, {
661
- openapi: (string | string[]) & (string | string[] | undefined);
662
645
  }>, z.ZodObject<{
663
646
  href: z.ZodString;
664
647
  }, "strip", z.ZodTypeAny, {
665
648
  href: string;
666
649
  }, {
667
650
  href: string;
668
- }>]>>, "many">>;
651
+ }>>, "many">>;
669
652
  }, "strict", z.ZodTypeAny, {
670
653
  languages?: ({
671
654
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
672
655
  hidden?: boolean | undefined;
673
- } & ({
674
- openapi: (string | string[]) & (string | string[] | undefined);
675
- } | {
656
+ } & {
676
657
  href: string;
677
- }))[] | undefined;
658
+ })[] | undefined;
678
659
  versions?: ({
679
660
  version: string;
680
661
  hidden?: boolean | undefined;
681
- } & ({
682
- openapi: (string | string[]) & (string | string[] | undefined);
683
- } | {
662
+ } & {
684
663
  href: string;
685
- }))[] | undefined;
664
+ })[] | undefined;
686
665
  tabs?: ({
687
666
  tab: string;
688
667
  icon?: string | {
689
668
  name: string;
690
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
669
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
691
670
  } | undefined;
692
671
  hidden?: boolean | undefined;
693
- } & ({
694
- openapi: (string | string[]) & (string | string[] | undefined);
695
- } | {
672
+ } & {
696
673
  href: string;
697
- }))[] | undefined;
674
+ })[] | undefined;
698
675
  dropdowns?: ({
699
676
  dropdown: string;
700
677
  icon?: string | {
701
678
  name: string;
702
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
679
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
703
680
  } | undefined;
704
681
  hidden?: boolean | undefined;
705
- } & ({
706
- openapi: (string | string[]) & (string | string[] | undefined);
707
- } | {
682
+ } & {
708
683
  href: string;
709
- }))[] | undefined;
684
+ })[] | undefined;
710
685
  anchors?: ({
711
686
  anchor: string;
712
687
  icon?: string | {
713
688
  name: string;
714
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
689
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
715
690
  } | undefined;
716
691
  color?: {
717
692
  light: string;
718
693
  dark: string;
719
694
  } | undefined;
720
695
  hidden?: boolean | undefined;
721
- } & ({
722
- openapi: (string | string[]) & (string | string[] | undefined);
723
- } | {
696
+ } & {
724
697
  href: string;
725
- }))[] | undefined;
698
+ })[] | undefined;
726
699
  }, {
727
700
  languages?: ({
728
701
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
729
702
  hidden?: boolean | undefined;
730
- } & ({
731
- openapi: (string | string[]) & (string | string[] | undefined);
732
- } | {
703
+ } & {
733
704
  href: string;
734
- }))[] | undefined;
705
+ })[] | undefined;
735
706
  versions?: ({
736
707
  version: string;
737
708
  hidden?: boolean | undefined;
738
- } & ({
739
- openapi: (string | string[]) & (string | string[] | undefined);
740
- } | {
709
+ } & {
741
710
  href: string;
742
- }))[] | undefined;
711
+ })[] | undefined;
743
712
  tabs?: ({
744
713
  tab: string;
745
714
  icon?: string | {
746
715
  name: string;
747
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
716
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
748
717
  } | undefined;
749
718
  hidden?: boolean | undefined;
750
- } & ({
751
- openapi: (string | string[]) & (string | string[] | undefined);
752
- } | {
719
+ } & {
753
720
  href: string;
754
- }))[] | undefined;
721
+ })[] | undefined;
755
722
  dropdowns?: ({
756
723
  dropdown: string;
757
724
  icon?: string | {
758
725
  name: string;
759
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
726
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
760
727
  } | undefined;
761
728
  hidden?: boolean | undefined;
762
- } & ({
763
- openapi: (string | string[]) & (string | string[] | undefined);
764
- } | {
729
+ } & {
765
730
  href: string;
766
- }))[] | undefined;
731
+ })[] | undefined;
767
732
  anchors?: ({
768
733
  anchor: string;
769
734
  icon?: string | {
770
735
  name: string;
771
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
736
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
772
737
  } | undefined;
773
738
  color?: {
774
739
  light: string;
775
740
  dark: string;
776
741
  } | undefined;
777
742
  hidden?: boolean | undefined;
778
- } & ({
779
- openapi: (string | string[]) & (string | string[] | undefined);
780
- } | {
743
+ } & {
781
744
  href: string;
782
- }))[] | undefined;
783
- }>;
745
+ })[] | undefined;
746
+ }>>;
784
747
  }, "strip", z.ZodTypeAny, {
785
- global: {
748
+ global?: {
786
749
  languages?: ({
787
750
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
788
751
  hidden?: boolean | undefined;
789
- } & ({
790
- openapi: (string | string[]) & (string | string[] | undefined);
791
- } | {
752
+ } & {
792
753
  href: string;
793
- }))[] | undefined;
754
+ })[] | undefined;
794
755
  versions?: ({
795
756
  version: string;
796
757
  hidden?: boolean | undefined;
797
- } & ({
798
- openapi: (string | string[]) & (string | string[] | undefined);
799
- } | {
758
+ } & {
800
759
  href: string;
801
- }))[] | undefined;
760
+ })[] | undefined;
802
761
  tabs?: ({
803
762
  tab: string;
804
763
  icon?: string | {
805
764
  name: string;
806
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
765
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
807
766
  } | undefined;
808
767
  hidden?: boolean | undefined;
809
- } & ({
810
- openapi: (string | string[]) & (string | string[] | undefined);
811
- } | {
768
+ } & {
812
769
  href: string;
813
- }))[] | undefined;
770
+ })[] | undefined;
814
771
  dropdowns?: ({
815
772
  dropdown: string;
816
773
  icon?: string | {
817
774
  name: string;
818
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
775
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
819
776
  } | undefined;
820
777
  hidden?: boolean | undefined;
821
- } & ({
822
- openapi: (string | string[]) & (string | string[] | undefined);
823
- } | {
778
+ } & {
824
779
  href: string;
825
- }))[] | undefined;
780
+ })[] | undefined;
826
781
  anchors?: ({
827
782
  anchor: string;
828
783
  icon?: string | {
829
784
  name: string;
830
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
785
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
831
786
  } | undefined;
832
787
  color?: {
833
788
  light: string;
834
789
  dark: string;
835
790
  } | undefined;
836
791
  hidden?: boolean | undefined;
837
- } & ({
838
- openapi: (string | string[]) & (string | string[] | undefined);
839
- } | {
792
+ } & {
840
793
  href: string;
841
- }))[] | undefined;
842
- };
794
+ })[] | undefined;
795
+ } | undefined;
843
796
  }, {
844
- global: {
797
+ global?: {
845
798
  languages?: ({
846
799
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
847
800
  hidden?: boolean | undefined;
848
- } & ({
849
- openapi: (string | string[]) & (string | string[] | undefined);
850
- } | {
801
+ } & {
851
802
  href: string;
852
- }))[] | undefined;
803
+ })[] | undefined;
853
804
  versions?: ({
854
805
  version: string;
855
806
  hidden?: boolean | undefined;
856
- } & ({
857
- openapi: (string | string[]) & (string | string[] | undefined);
858
- } | {
807
+ } & {
859
808
  href: string;
860
- }))[] | undefined;
809
+ })[] | undefined;
861
810
  tabs?: ({
862
811
  tab: string;
863
812
  icon?: string | {
864
813
  name: string;
865
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
814
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
866
815
  } | undefined;
867
816
  hidden?: boolean | undefined;
868
- } & ({
869
- openapi: (string | string[]) & (string | string[] | undefined);
870
- } | {
817
+ } & {
871
818
  href: string;
872
- }))[] | undefined;
819
+ })[] | undefined;
873
820
  dropdowns?: ({
874
821
  dropdown: string;
875
822
  icon?: string | {
876
823
  name: string;
877
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
824
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
878
825
  } | undefined;
879
826
  hidden?: boolean | undefined;
880
- } & ({
881
- openapi: (string | string[]) & (string | string[] | undefined);
882
- } | {
827
+ } & {
883
828
  href: string;
884
- }))[] | undefined;
829
+ })[] | undefined;
885
830
  anchors?: ({
886
831
  anchor: string;
887
832
  icon?: string | {
888
833
  name: string;
889
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
834
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
890
835
  } | undefined;
891
836
  color?: {
892
837
  light: string;
893
838
  dark: string;
894
839
  } | undefined;
895
840
  hidden?: boolean | undefined;
896
- } & ({
897
- openapi: (string | string[]) & (string | string[] | undefined);
898
- } | {
841
+ } & {
899
842
  href: string;
900
- }))[] | undefined;
901
- };
902
- }>>>;
843
+ })[] | undefined;
844
+ } | undefined;
845
+ }>>;
903
846
  footer: z.ZodOptional<z.ZodObject<{
904
847
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
905
848
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -955,7 +898,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
955
898
  }>>;
956
899
  seo: z.ZodOptional<z.ZodObject<{
957
900
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
958
- indexing: z.ZodDefault<z.ZodEnum<["navigable", "all"]>>;
901
+ indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
959
902
  }, "strip", z.ZodTypeAny, {
960
903
  indexing: "all" | "navigable";
961
904
  metatags?: Record<string, string> | undefined;
@@ -1380,7 +1323,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1380
1323
  group: string;
1381
1324
  icon?: string | {
1382
1325
  name: string;
1383
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1326
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1384
1327
  } | undefined;
1385
1328
  hidden?: boolean | undefined;
1386
1329
  root?: string | undefined;
@@ -1405,7 +1348,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1405
1348
  group: string;
1406
1349
  icon?: string | {
1407
1350
  name: string;
1408
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1351
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1409
1352
  } | undefined;
1410
1353
  hidden?: boolean | undefined;
1411
1354
  root?: string | undefined;
@@ -1416,66 +1359,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1416
1359
  }))[];
1417
1360
  } | {
1418
1361
  pages: any[];
1419
- }) & ({
1420
- global: {
1362
+ }) & {
1363
+ global?: {
1421
1364
  languages?: ({
1422
1365
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1423
1366
  hidden?: boolean | undefined;
1424
- } & ({
1425
- openapi: (string | string[]) & (string | string[] | undefined);
1426
- } | {
1367
+ } & {
1427
1368
  href: string;
1428
- }))[] | undefined;
1369
+ })[] | undefined;
1429
1370
  versions?: ({
1430
1371
  version: string;
1431
1372
  hidden?: boolean | undefined;
1432
- } & ({
1433
- openapi: (string | string[]) & (string | string[] | undefined);
1434
- } | {
1373
+ } & {
1435
1374
  href: string;
1436
- }))[] | undefined;
1375
+ })[] | undefined;
1437
1376
  tabs?: ({
1438
1377
  tab: string;
1439
1378
  icon?: string | {
1440
1379
  name: string;
1441
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1380
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1442
1381
  } | undefined;
1443
1382
  hidden?: boolean | undefined;
1444
- } & ({
1445
- openapi: (string | string[]) & (string | string[] | undefined);
1446
- } | {
1383
+ } & {
1447
1384
  href: string;
1448
- }))[] | undefined;
1385
+ })[] | undefined;
1449
1386
  dropdowns?: ({
1450
1387
  dropdown: string;
1451
1388
  icon?: string | {
1452
1389
  name: string;
1453
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1390
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1454
1391
  } | undefined;
1455
1392
  hidden?: boolean | undefined;
1456
- } & ({
1457
- openapi: (string | string[]) & (string | string[] | undefined);
1458
- } | {
1393
+ } & {
1459
1394
  href: string;
1460
- }))[] | undefined;
1395
+ })[] | undefined;
1461
1396
  anchors?: ({
1462
1397
  anchor: string;
1463
1398
  icon?: string | {
1464
1399
  name: string;
1465
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1400
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1466
1401
  } | undefined;
1467
1402
  color?: {
1468
1403
  light: string;
1469
1404
  dark: string;
1470
1405
  } | undefined;
1471
1406
  hidden?: boolean | undefined;
1472
- } & ({
1473
- openapi: (string | string[]) & (string | string[] | undefined);
1474
- } | {
1407
+ } & {
1475
1408
  href: string;
1476
- }))[] | undefined;
1477
- };
1478
- } | undefined)) & ((({
1409
+ })[] | undefined;
1410
+ } | undefined;
1411
+ }) & ((({
1479
1412
  languages: ({
1480
1413
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1481
1414
  hidden?: boolean | undefined;
@@ -1496,7 +1429,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1496
1429
  group: string;
1497
1430
  icon?: string | {
1498
1431
  name: string;
1499
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1432
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1500
1433
  } | undefined;
1501
1434
  hidden?: boolean | undefined;
1502
1435
  root?: string | undefined;
@@ -1521,7 +1454,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1521
1454
  group: string;
1522
1455
  icon?: string | {
1523
1456
  name: string;
1524
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1457
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1525
1458
  } | undefined;
1526
1459
  hidden?: boolean | undefined;
1527
1460
  root?: string | undefined;
@@ -1532,66 +1465,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1532
1465
  }))[];
1533
1466
  } | {
1534
1467
  pages: any[];
1535
- }) & ({
1536
- global: {
1468
+ }) & {
1469
+ global?: {
1537
1470
  languages?: ({
1538
1471
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1539
1472
  hidden?: boolean | undefined;
1540
- } & ({
1541
- openapi: (string | string[]) & (string | string[] | undefined);
1542
- } | {
1473
+ } & {
1543
1474
  href: string;
1544
- }))[] | undefined;
1475
+ })[] | undefined;
1545
1476
  versions?: ({
1546
1477
  version: string;
1547
1478
  hidden?: boolean | undefined;
1548
- } & ({
1549
- openapi: (string | string[]) & (string | string[] | undefined);
1550
- } | {
1479
+ } & {
1551
1480
  href: string;
1552
- }))[] | undefined;
1481
+ })[] | undefined;
1553
1482
  tabs?: ({
1554
1483
  tab: string;
1555
1484
  icon?: string | {
1556
1485
  name: string;
1557
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1486
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1558
1487
  } | undefined;
1559
1488
  hidden?: boolean | undefined;
1560
- } & ({
1561
- openapi: (string | string[]) & (string | string[] | undefined);
1562
- } | {
1489
+ } & {
1563
1490
  href: string;
1564
- }))[] | undefined;
1491
+ })[] | undefined;
1565
1492
  dropdowns?: ({
1566
1493
  dropdown: string;
1567
1494
  icon?: string | {
1568
1495
  name: string;
1569
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1496
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1570
1497
  } | undefined;
1571
1498
  hidden?: boolean | undefined;
1572
- } & ({
1573
- openapi: (string | string[]) & (string | string[] | undefined);
1574
- } | {
1499
+ } & {
1575
1500
  href: string;
1576
- }))[] | undefined;
1501
+ })[] | undefined;
1577
1502
  anchors?: ({
1578
1503
  anchor: string;
1579
1504
  icon?: string | {
1580
1505
  name: string;
1581
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1506
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1582
1507
  } | undefined;
1583
1508
  color?: {
1584
1509
  light: string;
1585
1510
  dark: string;
1586
1511
  } | undefined;
1587
1512
  hidden?: boolean | undefined;
1588
- } & ({
1589
- openapi: (string | string[]) & (string | string[] | undefined);
1590
- } | {
1513
+ } & {
1591
1514
  href: string;
1592
- }))[] | undefined;
1593
- };
1594
- } | undefined)) | undefined);
1515
+ })[] | undefined;
1516
+ } | undefined;
1517
+ }) | undefined);
1595
1518
  description?: string | undefined;
1596
1519
  logo?: string | {
1597
1520
  light: string;
@@ -1612,6 +1535,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1612
1535
  languages?: string[] | undefined;
1613
1536
  } | undefined;
1614
1537
  } | undefined;
1538
+ feedback?: {
1539
+ thumbs?: boolean | undefined;
1540
+ edits?: boolean | undefined;
1541
+ issues?: boolean | undefined;
1542
+ } | undefined;
1615
1543
  appearance?: {
1616
1544
  strict: boolean;
1617
1545
  default: "light" | "dark" | "system";
@@ -1775,7 +1703,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1775
1703
  group: string;
1776
1704
  icon?: string | {
1777
1705
  name: string;
1778
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1706
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1779
1707
  } | undefined;
1780
1708
  hidden?: boolean | undefined;
1781
1709
  root?: string | undefined;
@@ -1800,7 +1728,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1800
1728
  group: string;
1801
1729
  icon?: string | {
1802
1730
  name: string;
1803
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1731
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1804
1732
  } | undefined;
1805
1733
  hidden?: boolean | undefined;
1806
1734
  root?: string | undefined;
@@ -1811,66 +1739,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1811
1739
  }))[];
1812
1740
  } | {
1813
1741
  pages: any[];
1814
- }) & ({
1815
- global: {
1742
+ }) & {
1743
+ global?: {
1816
1744
  languages?: ({
1817
1745
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1818
1746
  hidden?: boolean | undefined;
1819
- } & ({
1820
- openapi: (string | string[]) & (string | string[] | undefined);
1821
- } | {
1747
+ } & {
1822
1748
  href: string;
1823
- }))[] | undefined;
1749
+ })[] | undefined;
1824
1750
  versions?: ({
1825
1751
  version: string;
1826
1752
  hidden?: boolean | undefined;
1827
- } & ({
1828
- openapi: (string | string[]) & (string | string[] | undefined);
1829
- } | {
1753
+ } & {
1830
1754
  href: string;
1831
- }))[] | undefined;
1755
+ })[] | undefined;
1832
1756
  tabs?: ({
1833
1757
  tab: string;
1834
1758
  icon?: string | {
1835
1759
  name: string;
1836
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1760
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1837
1761
  } | undefined;
1838
1762
  hidden?: boolean | undefined;
1839
- } & ({
1840
- openapi: (string | string[]) & (string | string[] | undefined);
1841
- } | {
1763
+ } & {
1842
1764
  href: string;
1843
- }))[] | undefined;
1765
+ })[] | undefined;
1844
1766
  dropdowns?: ({
1845
1767
  dropdown: string;
1846
1768
  icon?: string | {
1847
1769
  name: string;
1848
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1770
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1849
1771
  } | undefined;
1850
1772
  hidden?: boolean | undefined;
1851
- } & ({
1852
- openapi: (string | string[]) & (string | string[] | undefined);
1853
- } | {
1773
+ } & {
1854
1774
  href: string;
1855
- }))[] | undefined;
1775
+ })[] | undefined;
1856
1776
  anchors?: ({
1857
1777
  anchor: string;
1858
1778
  icon?: string | {
1859
1779
  name: string;
1860
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1780
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1861
1781
  } | undefined;
1862
1782
  color?: {
1863
1783
  light: string;
1864
1784
  dark: string;
1865
1785
  } | undefined;
1866
1786
  hidden?: boolean | undefined;
1867
- } & ({
1868
- openapi: (string | string[]) & (string | string[] | undefined);
1869
- } | {
1787
+ } & {
1870
1788
  href: string;
1871
- }))[] | undefined;
1872
- };
1873
- } | undefined)) & ((({
1789
+ })[] | undefined;
1790
+ } | undefined;
1791
+ }) & ((({
1874
1792
  languages: ({
1875
1793
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1876
1794
  hidden?: boolean | undefined;
@@ -1891,7 +1809,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1891
1809
  group: string;
1892
1810
  icon?: string | {
1893
1811
  name: string;
1894
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1812
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1895
1813
  } | undefined;
1896
1814
  hidden?: boolean | undefined;
1897
1815
  root?: string | undefined;
@@ -1916,7 +1834,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1916
1834
  group: string;
1917
1835
  icon?: string | {
1918
1836
  name: string;
1919
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1837
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1920
1838
  } | undefined;
1921
1839
  hidden?: boolean | undefined;
1922
1840
  root?: string | undefined;
@@ -1927,66 +1845,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1927
1845
  }))[];
1928
1846
  } | {
1929
1847
  pages: any[];
1930
- }) & ({
1931
- global: {
1848
+ }) & {
1849
+ global?: {
1932
1850
  languages?: ({
1933
1851
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1934
1852
  hidden?: boolean | undefined;
1935
- } & ({
1936
- openapi: (string | string[]) & (string | string[] | undefined);
1937
- } | {
1853
+ } & {
1938
1854
  href: string;
1939
- }))[] | undefined;
1855
+ })[] | undefined;
1940
1856
  versions?: ({
1941
1857
  version: string;
1942
1858
  hidden?: boolean | undefined;
1943
- } & ({
1944
- openapi: (string | string[]) & (string | string[] | undefined);
1945
- } | {
1859
+ } & {
1946
1860
  href: string;
1947
- }))[] | undefined;
1861
+ })[] | undefined;
1948
1862
  tabs?: ({
1949
1863
  tab: string;
1950
1864
  icon?: string | {
1951
1865
  name: string;
1952
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1866
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1953
1867
  } | undefined;
1954
1868
  hidden?: boolean | undefined;
1955
- } & ({
1956
- openapi: (string | string[]) & (string | string[] | undefined);
1957
- } | {
1869
+ } & {
1958
1870
  href: string;
1959
- }))[] | undefined;
1871
+ })[] | undefined;
1960
1872
  dropdowns?: ({
1961
1873
  dropdown: string;
1962
1874
  icon?: string | {
1963
1875
  name: string;
1964
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1876
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1965
1877
  } | undefined;
1966
1878
  hidden?: boolean | undefined;
1967
- } & ({
1968
- openapi: (string | string[]) & (string | string[] | undefined);
1969
- } | {
1879
+ } & {
1970
1880
  href: string;
1971
- }))[] | undefined;
1881
+ })[] | undefined;
1972
1882
  anchors?: ({
1973
1883
  anchor: string;
1974
1884
  icon?: string | {
1975
1885
  name: string;
1976
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
1886
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1977
1887
  } | undefined;
1978
1888
  color?: {
1979
1889
  light: string;
1980
1890
  dark: string;
1981
1891
  } | undefined;
1982
1892
  hidden?: boolean | undefined;
1983
- } & ({
1984
- openapi: (string | string[]) & (string | string[] | undefined);
1985
- } | {
1893
+ } & {
1986
1894
  href: string;
1987
- }))[] | undefined;
1988
- };
1989
- } | undefined)) | undefined);
1895
+ })[] | undefined;
1896
+ } | undefined;
1897
+ }) | undefined);
1990
1898
  $schema?: string | undefined;
1991
1899
  description?: string | undefined;
1992
1900
  logo?: string | {
@@ -2008,6 +1916,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2008
1916
  languages?: string[] | undefined;
2009
1917
  } | undefined;
2010
1918
  } | undefined;
1919
+ feedback?: {
1920
+ thumbs?: boolean | undefined;
1921
+ edits?: boolean | undefined;
1922
+ issues?: boolean | undefined;
1923
+ } | undefined;
2011
1924
  appearance?: {
2012
1925
  default?: "light" | "dark" | "system" | undefined;
2013
1926
  strict?: boolean | undefined;
@@ -2218,6 +2131,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2218
2131
  languages?: string[] | undefined;
2219
2132
  } | undefined;
2220
2133
  }>>;
2134
+ feedback: z.ZodOptional<z.ZodObject<{
2135
+ thumbs: z.ZodOptional<z.ZodBoolean>;
2136
+ edits: z.ZodOptional<z.ZodBoolean>;
2137
+ issues: z.ZodOptional<z.ZodBoolean>;
2138
+ }, "strip", z.ZodTypeAny, {
2139
+ thumbs?: boolean | undefined;
2140
+ edits?: boolean | undefined;
2141
+ issues?: boolean | undefined;
2142
+ }, {
2143
+ thumbs?: boolean | undefined;
2144
+ edits?: boolean | undefined;
2145
+ issues?: boolean | undefined;
2146
+ }>>;
2221
2147
  appearance: z.ZodOptional<z.ZodObject<{
2222
2148
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
2223
2149
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -2381,14 +2307,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2381
2307
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2382
2308
  group: z.ZodString;
2383
2309
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2384
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2310
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2385
2311
  name: z.ZodEffects<z.ZodString, string, string>;
2386
2312
  }, "strip", z.ZodTypeAny, {
2387
2313
  name: string;
2388
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2314
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2389
2315
  }, {
2390
2316
  name: string;
2391
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2317
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2392
2318
  }>]>>;
2393
2319
  hidden: z.ZodOptional<z.ZodBoolean>;
2394
2320
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -2396,7 +2322,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2396
2322
  group: string;
2397
2323
  icon?: string | {
2398
2324
  name: string;
2399
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2325
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2400
2326
  } | undefined;
2401
2327
  hidden?: boolean | undefined;
2402
2328
  root?: string | undefined;
@@ -2404,7 +2330,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2404
2330
  group: string;
2405
2331
  icon?: string | {
2406
2332
  name: string;
2407
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2333
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2408
2334
  } | undefined;
2409
2335
  hidden?: boolean | undefined;
2410
2336
  root?: string | undefined;
@@ -2426,7 +2352,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2426
2352
  group: string;
2427
2353
  icon?: string | {
2428
2354
  name: string;
2429
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2355
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2430
2356
  } | undefined;
2431
2357
  hidden?: boolean | undefined;
2432
2358
  root?: string | undefined;
@@ -2440,7 +2366,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2440
2366
  group: string;
2441
2367
  icon?: string | {
2442
2368
  name: string;
2443
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2369
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2444
2370
  } | undefined;
2445
2371
  hidden?: boolean | undefined;
2446
2372
  root?: string | undefined;
@@ -2477,7 +2403,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2477
2403
  group: string;
2478
2404
  icon?: string | {
2479
2405
  name: string;
2480
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2406
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2481
2407
  } | undefined;
2482
2408
  hidden?: boolean | undefined;
2483
2409
  root?: string | undefined;
@@ -2510,7 +2436,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2510
2436
  group: string;
2511
2437
  icon?: string | {
2512
2438
  name: string;
2513
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2439
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2514
2440
  } | undefined;
2515
2441
  hidden?: boolean | undefined;
2516
2442
  root?: string | undefined;
@@ -2550,14 +2476,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2550
2476
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2551
2477
  group: z.ZodString;
2552
2478
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2553
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2479
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2554
2480
  name: z.ZodEffects<z.ZodString, string, string>;
2555
2481
  }, "strip", z.ZodTypeAny, {
2556
2482
  name: string;
2557
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2483
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2558
2484
  }, {
2559
2485
  name: string;
2560
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2486
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2561
2487
  }>]>>;
2562
2488
  hidden: z.ZodOptional<z.ZodBoolean>;
2563
2489
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -2565,7 +2491,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2565
2491
  group: string;
2566
2492
  icon?: string | {
2567
2493
  name: string;
2568
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2494
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2569
2495
  } | undefined;
2570
2496
  hidden?: boolean | undefined;
2571
2497
  root?: string | undefined;
@@ -2573,7 +2499,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2573
2499
  group: string;
2574
2500
  icon?: string | {
2575
2501
  name: string;
2576
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2502
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2577
2503
  } | undefined;
2578
2504
  hidden?: boolean | undefined;
2579
2505
  root?: string | undefined;
@@ -2595,7 +2521,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2595
2521
  group: string;
2596
2522
  icon?: string | {
2597
2523
  name: string;
2598
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2524
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2599
2525
  } | undefined;
2600
2526
  hidden?: boolean | undefined;
2601
2527
  root?: string | undefined;
@@ -2609,7 +2535,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2609
2535
  group: string;
2610
2536
  icon?: string | {
2611
2537
  name: string;
2612
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2538
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2613
2539
  } | undefined;
2614
2540
  hidden?: boolean | undefined;
2615
2541
  root?: string | undefined;
@@ -2624,8 +2550,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2624
2550
  pages: any[];
2625
2551
  }, {
2626
2552
  pages: any[];
2627
- }>]>, z.ZodOptional<z.ZodObject<{
2628
- global: z.ZodObject<{
2553
+ }>]>, z.ZodObject<{
2554
+ global: z.ZodOptional<z.ZodObject<{
2629
2555
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2630
2556
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2631
2557
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -2635,19 +2561,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2635
2561
  }, {
2636
2562
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2637
2563
  hidden?: boolean | undefined;
2638
- }>, z.ZodUnion<[z.ZodObject<{
2639
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2640
- }, "strip", z.ZodTypeAny, {
2641
- openapi: (string | string[]) & (string | string[] | undefined);
2642
- }, {
2643
- openapi: (string | string[]) & (string | string[] | undefined);
2644
2564
  }>, z.ZodObject<{
2645
2565
  href: z.ZodString;
2646
2566
  }, "strip", z.ZodTypeAny, {
2647
2567
  href: string;
2648
2568
  }, {
2649
2569
  href: string;
2650
- }>]>>, "many">>;
2570
+ }>>, "many">>;
2651
2571
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2652
2572
  version: z.ZodString;
2653
2573
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -2657,110 +2577,92 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2657
2577
  }, {
2658
2578
  version: string;
2659
2579
  hidden?: boolean | undefined;
2660
- }>, z.ZodUnion<[z.ZodObject<{
2661
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2662
- }, "strip", z.ZodTypeAny, {
2663
- openapi: (string | string[]) & (string | string[] | undefined);
2664
- }, {
2665
- openapi: (string | string[]) & (string | string[] | undefined);
2666
2580
  }>, z.ZodObject<{
2667
2581
  href: z.ZodString;
2668
2582
  }, "strip", z.ZodTypeAny, {
2669
2583
  href: string;
2670
2584
  }, {
2671
2585
  href: string;
2672
- }>]>>, "many">>;
2586
+ }>>, "many">>;
2673
2587
  tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2674
2588
  tab: z.ZodString;
2675
2589
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2676
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2590
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2677
2591
  name: z.ZodEffects<z.ZodString, string, string>;
2678
2592
  }, "strip", z.ZodTypeAny, {
2679
2593
  name: string;
2680
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2594
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2681
2595
  }, {
2682
2596
  name: string;
2683
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2597
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2684
2598
  }>]>>;
2685
2599
  hidden: z.ZodOptional<z.ZodBoolean>;
2686
2600
  }, "strip", z.ZodTypeAny, {
2687
2601
  tab: string;
2688
2602
  icon?: string | {
2689
2603
  name: string;
2690
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2604
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2691
2605
  } | undefined;
2692
2606
  hidden?: boolean | undefined;
2693
2607
  }, {
2694
2608
  tab: string;
2695
2609
  icon?: string | {
2696
2610
  name: string;
2697
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2611
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2698
2612
  } | undefined;
2699
2613
  hidden?: boolean | undefined;
2700
- }>, z.ZodUnion<[z.ZodObject<{
2701
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2702
- }, "strip", z.ZodTypeAny, {
2703
- openapi: (string | string[]) & (string | string[] | undefined);
2704
- }, {
2705
- openapi: (string | string[]) & (string | string[] | undefined);
2706
2614
  }>, z.ZodObject<{
2707
2615
  href: z.ZodString;
2708
2616
  }, "strip", z.ZodTypeAny, {
2709
2617
  href: string;
2710
2618
  }, {
2711
2619
  href: string;
2712
- }>]>>, "many">>;
2620
+ }>>, "many">>;
2713
2621
  dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2714
2622
  dropdown: z.ZodString;
2715
2623
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2716
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2624
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2717
2625
  name: z.ZodEffects<z.ZodString, string, string>;
2718
2626
  }, "strip", z.ZodTypeAny, {
2719
2627
  name: string;
2720
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2628
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2721
2629
  }, {
2722
2630
  name: string;
2723
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2631
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2724
2632
  }>]>>;
2725
2633
  hidden: z.ZodOptional<z.ZodBoolean>;
2726
2634
  }, "strip", z.ZodTypeAny, {
2727
2635
  dropdown: string;
2728
2636
  icon?: string | {
2729
2637
  name: string;
2730
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2638
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2731
2639
  } | undefined;
2732
2640
  hidden?: boolean | undefined;
2733
2641
  }, {
2734
2642
  dropdown: string;
2735
2643
  icon?: string | {
2736
2644
  name: string;
2737
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2645
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2738
2646
  } | undefined;
2739
2647
  hidden?: boolean | undefined;
2740
- }>, z.ZodUnion<[z.ZodObject<{
2741
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2742
- }, "strip", z.ZodTypeAny, {
2743
- openapi: (string | string[]) & (string | string[] | undefined);
2744
- }, {
2745
- openapi: (string | string[]) & (string | string[] | undefined);
2746
2648
  }>, z.ZodObject<{
2747
2649
  href: z.ZodString;
2748
2650
  }, "strip", z.ZodTypeAny, {
2749
2651
  href: string;
2750
2652
  }, {
2751
2653
  href: string;
2752
- }>]>>, "many">>;
2654
+ }>>, "many">>;
2753
2655
  anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2754
2656
  anchor: z.ZodString;
2755
2657
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2756
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
2658
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2757
2659
  name: z.ZodEffects<z.ZodString, string, string>;
2758
2660
  }, "strip", z.ZodTypeAny, {
2759
2661
  name: string;
2760
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2662
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2761
2663
  }, {
2762
2664
  name: string;
2763
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2665
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2764
2666
  }>]>>;
2765
2667
  color: z.ZodOptional<z.ZodObject<{
2766
2668
  light: z.ZodString;
@@ -2777,7 +2679,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2777
2679
  anchor: string;
2778
2680
  icon?: string | {
2779
2681
  name: string;
2780
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2682
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2781
2683
  } | undefined;
2782
2684
  color?: {
2783
2685
  light: string;
@@ -2788,260 +2690,214 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2788
2690
  anchor: string;
2789
2691
  icon?: string | {
2790
2692
  name: string;
2791
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2693
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2792
2694
  } | undefined;
2793
2695
  color?: {
2794
2696
  light: string;
2795
2697
  dark: string;
2796
2698
  } | undefined;
2797
2699
  hidden?: boolean | undefined;
2798
- }>, z.ZodUnion<[z.ZodObject<{
2799
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
2800
- }, "strip", z.ZodTypeAny, {
2801
- openapi: (string | string[]) & (string | string[] | undefined);
2802
- }, {
2803
- openapi: (string | string[]) & (string | string[] | undefined);
2804
2700
  }>, z.ZodObject<{
2805
2701
  href: z.ZodString;
2806
2702
  }, "strip", z.ZodTypeAny, {
2807
2703
  href: string;
2808
2704
  }, {
2809
2705
  href: string;
2810
- }>]>>, "many">>;
2706
+ }>>, "many">>;
2811
2707
  }, "strict", z.ZodTypeAny, {
2812
2708
  languages?: ({
2813
2709
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2814
2710
  hidden?: boolean | undefined;
2815
- } & ({
2816
- openapi: (string | string[]) & (string | string[] | undefined);
2817
- } | {
2711
+ } & {
2818
2712
  href: string;
2819
- }))[] | undefined;
2713
+ })[] | undefined;
2820
2714
  versions?: ({
2821
2715
  version: string;
2822
2716
  hidden?: boolean | undefined;
2823
- } & ({
2824
- openapi: (string | string[]) & (string | string[] | undefined);
2825
- } | {
2717
+ } & {
2826
2718
  href: string;
2827
- }))[] | undefined;
2719
+ })[] | undefined;
2828
2720
  tabs?: ({
2829
2721
  tab: string;
2830
2722
  icon?: string | {
2831
2723
  name: string;
2832
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2724
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2833
2725
  } | undefined;
2834
2726
  hidden?: boolean | undefined;
2835
- } & ({
2836
- openapi: (string | string[]) & (string | string[] | undefined);
2837
- } | {
2727
+ } & {
2838
2728
  href: string;
2839
- }))[] | undefined;
2729
+ })[] | undefined;
2840
2730
  dropdowns?: ({
2841
2731
  dropdown: string;
2842
2732
  icon?: string | {
2843
2733
  name: string;
2844
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2734
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2845
2735
  } | undefined;
2846
2736
  hidden?: boolean | undefined;
2847
- } & ({
2848
- openapi: (string | string[]) & (string | string[] | undefined);
2849
- } | {
2737
+ } & {
2850
2738
  href: string;
2851
- }))[] | undefined;
2739
+ })[] | undefined;
2852
2740
  anchors?: ({
2853
2741
  anchor: string;
2854
2742
  icon?: string | {
2855
2743
  name: string;
2856
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2744
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2857
2745
  } | undefined;
2858
2746
  color?: {
2859
2747
  light: string;
2860
2748
  dark: string;
2861
2749
  } | undefined;
2862
2750
  hidden?: boolean | undefined;
2863
- } & ({
2864
- openapi: (string | string[]) & (string | string[] | undefined);
2865
- } | {
2751
+ } & {
2866
2752
  href: string;
2867
- }))[] | undefined;
2753
+ })[] | undefined;
2868
2754
  }, {
2869
2755
  languages?: ({
2870
2756
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2871
2757
  hidden?: boolean | undefined;
2872
- } & ({
2873
- openapi: (string | string[]) & (string | string[] | undefined);
2874
- } | {
2758
+ } & {
2875
2759
  href: string;
2876
- }))[] | undefined;
2760
+ })[] | undefined;
2877
2761
  versions?: ({
2878
2762
  version: string;
2879
2763
  hidden?: boolean | undefined;
2880
- } & ({
2881
- openapi: (string | string[]) & (string | string[] | undefined);
2882
- } | {
2764
+ } & {
2883
2765
  href: string;
2884
- }))[] | undefined;
2766
+ })[] | undefined;
2885
2767
  tabs?: ({
2886
2768
  tab: string;
2887
2769
  icon?: string | {
2888
2770
  name: string;
2889
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2771
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2890
2772
  } | undefined;
2891
2773
  hidden?: boolean | undefined;
2892
- } & ({
2893
- openapi: (string | string[]) & (string | string[] | undefined);
2894
- } | {
2774
+ } & {
2895
2775
  href: string;
2896
- }))[] | undefined;
2776
+ })[] | undefined;
2897
2777
  dropdowns?: ({
2898
2778
  dropdown: string;
2899
2779
  icon?: string | {
2900
2780
  name: string;
2901
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2781
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2902
2782
  } | undefined;
2903
2783
  hidden?: boolean | undefined;
2904
- } & ({
2905
- openapi: (string | string[]) & (string | string[] | undefined);
2906
- } | {
2784
+ } & {
2907
2785
  href: string;
2908
- }))[] | undefined;
2786
+ })[] | undefined;
2909
2787
  anchors?: ({
2910
2788
  anchor: string;
2911
2789
  icon?: string | {
2912
2790
  name: string;
2913
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2791
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2914
2792
  } | undefined;
2915
2793
  color?: {
2916
2794
  light: string;
2917
2795
  dark: string;
2918
2796
  } | undefined;
2919
2797
  hidden?: boolean | undefined;
2920
- } & ({
2921
- openapi: (string | string[]) & (string | string[] | undefined);
2922
- } | {
2798
+ } & {
2923
2799
  href: string;
2924
- }))[] | undefined;
2925
- }>;
2800
+ })[] | undefined;
2801
+ }>>;
2926
2802
  }, "strip", z.ZodTypeAny, {
2927
- global: {
2803
+ global?: {
2928
2804
  languages?: ({
2929
2805
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2930
2806
  hidden?: boolean | undefined;
2931
- } & ({
2932
- openapi: (string | string[]) & (string | string[] | undefined);
2933
- } | {
2807
+ } & {
2934
2808
  href: string;
2935
- }))[] | undefined;
2809
+ })[] | undefined;
2936
2810
  versions?: ({
2937
2811
  version: string;
2938
2812
  hidden?: boolean | undefined;
2939
- } & ({
2940
- openapi: (string | string[]) & (string | string[] | undefined);
2941
- } | {
2813
+ } & {
2942
2814
  href: string;
2943
- }))[] | undefined;
2815
+ })[] | undefined;
2944
2816
  tabs?: ({
2945
2817
  tab: string;
2946
2818
  icon?: string | {
2947
2819
  name: string;
2948
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2820
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2949
2821
  } | undefined;
2950
2822
  hidden?: boolean | undefined;
2951
- } & ({
2952
- openapi: (string | string[]) & (string | string[] | undefined);
2953
- } | {
2823
+ } & {
2954
2824
  href: string;
2955
- }))[] | undefined;
2825
+ })[] | undefined;
2956
2826
  dropdowns?: ({
2957
2827
  dropdown: string;
2958
2828
  icon?: string | {
2959
2829
  name: string;
2960
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2830
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2961
2831
  } | undefined;
2962
2832
  hidden?: boolean | undefined;
2963
- } & ({
2964
- openapi: (string | string[]) & (string | string[] | undefined);
2965
- } | {
2833
+ } & {
2966
2834
  href: string;
2967
- }))[] | undefined;
2835
+ })[] | undefined;
2968
2836
  anchors?: ({
2969
2837
  anchor: string;
2970
2838
  icon?: string | {
2971
2839
  name: string;
2972
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2840
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2973
2841
  } | undefined;
2974
2842
  color?: {
2975
2843
  light: string;
2976
2844
  dark: string;
2977
2845
  } | undefined;
2978
2846
  hidden?: boolean | undefined;
2979
- } & ({
2980
- openapi: (string | string[]) & (string | string[] | undefined);
2981
- } | {
2847
+ } & {
2982
2848
  href: string;
2983
- }))[] | undefined;
2984
- };
2849
+ })[] | undefined;
2850
+ } | undefined;
2985
2851
  }, {
2986
- global: {
2852
+ global?: {
2987
2853
  languages?: ({
2988
2854
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2989
2855
  hidden?: boolean | undefined;
2990
- } & ({
2991
- openapi: (string | string[]) & (string | string[] | undefined);
2992
- } | {
2856
+ } & {
2993
2857
  href: string;
2994
- }))[] | undefined;
2858
+ })[] | undefined;
2995
2859
  versions?: ({
2996
2860
  version: string;
2997
2861
  hidden?: boolean | undefined;
2998
- } & ({
2999
- openapi: (string | string[]) & (string | string[] | undefined);
3000
- } | {
2862
+ } & {
3001
2863
  href: string;
3002
- }))[] | undefined;
2864
+ })[] | undefined;
3003
2865
  tabs?: ({
3004
2866
  tab: string;
3005
2867
  icon?: string | {
3006
2868
  name: string;
3007
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2869
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3008
2870
  } | undefined;
3009
2871
  hidden?: boolean | undefined;
3010
- } & ({
3011
- openapi: (string | string[]) & (string | string[] | undefined);
3012
- } | {
2872
+ } & {
3013
2873
  href: string;
3014
- }))[] | undefined;
2874
+ })[] | undefined;
3015
2875
  dropdowns?: ({
3016
2876
  dropdown: string;
3017
2877
  icon?: string | {
3018
2878
  name: string;
3019
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2879
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3020
2880
  } | undefined;
3021
2881
  hidden?: boolean | undefined;
3022
- } & ({
3023
- openapi: (string | string[]) & (string | string[] | undefined);
3024
- } | {
2882
+ } & {
3025
2883
  href: string;
3026
- }))[] | undefined;
2884
+ })[] | undefined;
3027
2885
  anchors?: ({
3028
2886
  anchor: string;
3029
2887
  icon?: string | {
3030
2888
  name: string;
3031
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
2889
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3032
2890
  } | undefined;
3033
2891
  color?: {
3034
2892
  light: string;
3035
2893
  dark: string;
3036
2894
  } | undefined;
3037
2895
  hidden?: boolean | undefined;
3038
- } & ({
3039
- openapi: (string | string[]) & (string | string[] | undefined);
3040
- } | {
2896
+ } & {
3041
2897
  href: string;
3042
- }))[] | undefined;
3043
- };
3044
- }>>>;
2898
+ })[] | undefined;
2899
+ } | undefined;
2900
+ }>>;
3045
2901
  footer: z.ZodOptional<z.ZodObject<{
3046
2902
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
3047
2903
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3097,7 +2953,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3097
2953
  }>>;
3098
2954
  seo: z.ZodOptional<z.ZodObject<{
3099
2955
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
3100
- indexing: z.ZodDefault<z.ZodEnum<["navigable", "all"]>>;
2956
+ indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
3101
2957
  }, "strip", z.ZodTypeAny, {
3102
2958
  indexing: "all" | "navigable";
3103
2959
  metatags?: Record<string, string> | undefined;
@@ -3522,7 +3378,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3522
3378
  group: string;
3523
3379
  icon?: string | {
3524
3380
  name: string;
3525
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3381
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3526
3382
  } | undefined;
3527
3383
  hidden?: boolean | undefined;
3528
3384
  root?: string | undefined;
@@ -3547,7 +3403,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3547
3403
  group: string;
3548
3404
  icon?: string | {
3549
3405
  name: string;
3550
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3406
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3551
3407
  } | undefined;
3552
3408
  hidden?: boolean | undefined;
3553
3409
  root?: string | undefined;
@@ -3558,66 +3414,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3558
3414
  }))[];
3559
3415
  } | {
3560
3416
  pages: any[];
3561
- }) & ({
3562
- global: {
3417
+ }) & {
3418
+ global?: {
3563
3419
  languages?: ({
3564
3420
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3565
3421
  hidden?: boolean | undefined;
3566
- } & ({
3567
- openapi: (string | string[]) & (string | string[] | undefined);
3568
- } | {
3422
+ } & {
3569
3423
  href: string;
3570
- }))[] | undefined;
3424
+ })[] | undefined;
3571
3425
  versions?: ({
3572
3426
  version: string;
3573
3427
  hidden?: boolean | undefined;
3574
- } & ({
3575
- openapi: (string | string[]) & (string | string[] | undefined);
3576
- } | {
3428
+ } & {
3577
3429
  href: string;
3578
- }))[] | undefined;
3430
+ })[] | undefined;
3579
3431
  tabs?: ({
3580
3432
  tab: string;
3581
3433
  icon?: string | {
3582
3434
  name: string;
3583
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3435
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3584
3436
  } | undefined;
3585
3437
  hidden?: boolean | undefined;
3586
- } & ({
3587
- openapi: (string | string[]) & (string | string[] | undefined);
3588
- } | {
3438
+ } & {
3589
3439
  href: string;
3590
- }))[] | undefined;
3440
+ })[] | undefined;
3591
3441
  dropdowns?: ({
3592
3442
  dropdown: string;
3593
3443
  icon?: string | {
3594
3444
  name: string;
3595
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3445
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3596
3446
  } | undefined;
3597
3447
  hidden?: boolean | undefined;
3598
- } & ({
3599
- openapi: (string | string[]) & (string | string[] | undefined);
3600
- } | {
3448
+ } & {
3601
3449
  href: string;
3602
- }))[] | undefined;
3450
+ })[] | undefined;
3603
3451
  anchors?: ({
3604
3452
  anchor: string;
3605
3453
  icon?: string | {
3606
3454
  name: string;
3607
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3455
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3608
3456
  } | undefined;
3609
3457
  color?: {
3610
3458
  light: string;
3611
3459
  dark: string;
3612
3460
  } | undefined;
3613
3461
  hidden?: boolean | undefined;
3614
- } & ({
3615
- openapi: (string | string[]) & (string | string[] | undefined);
3616
- } | {
3462
+ } & {
3617
3463
  href: string;
3618
- }))[] | undefined;
3619
- };
3620
- } | undefined)) & ((({
3464
+ })[] | undefined;
3465
+ } | undefined;
3466
+ }) & ((({
3621
3467
  languages: ({
3622
3468
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3623
3469
  hidden?: boolean | undefined;
@@ -3638,7 +3484,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3638
3484
  group: string;
3639
3485
  icon?: string | {
3640
3486
  name: string;
3641
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3487
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3642
3488
  } | undefined;
3643
3489
  hidden?: boolean | undefined;
3644
3490
  root?: string | undefined;
@@ -3663,7 +3509,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3663
3509
  group: string;
3664
3510
  icon?: string | {
3665
3511
  name: string;
3666
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3512
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3667
3513
  } | undefined;
3668
3514
  hidden?: boolean | undefined;
3669
3515
  root?: string | undefined;
@@ -3674,66 +3520,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3674
3520
  }))[];
3675
3521
  } | {
3676
3522
  pages: any[];
3677
- }) & ({
3678
- global: {
3523
+ }) & {
3524
+ global?: {
3679
3525
  languages?: ({
3680
3526
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3681
3527
  hidden?: boolean | undefined;
3682
- } & ({
3683
- openapi: (string | string[]) & (string | string[] | undefined);
3684
- } | {
3528
+ } & {
3685
3529
  href: string;
3686
- }))[] | undefined;
3530
+ })[] | undefined;
3687
3531
  versions?: ({
3688
3532
  version: string;
3689
3533
  hidden?: boolean | undefined;
3690
- } & ({
3691
- openapi: (string | string[]) & (string | string[] | undefined);
3692
- } | {
3534
+ } & {
3693
3535
  href: string;
3694
- }))[] | undefined;
3536
+ })[] | undefined;
3695
3537
  tabs?: ({
3696
3538
  tab: string;
3697
3539
  icon?: string | {
3698
3540
  name: string;
3699
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3541
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3700
3542
  } | undefined;
3701
3543
  hidden?: boolean | undefined;
3702
- } & ({
3703
- openapi: (string | string[]) & (string | string[] | undefined);
3704
- } | {
3544
+ } & {
3705
3545
  href: string;
3706
- }))[] | undefined;
3546
+ })[] | undefined;
3707
3547
  dropdowns?: ({
3708
3548
  dropdown: string;
3709
3549
  icon?: string | {
3710
3550
  name: string;
3711
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3551
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3712
3552
  } | undefined;
3713
3553
  hidden?: boolean | undefined;
3714
- } & ({
3715
- openapi: (string | string[]) & (string | string[] | undefined);
3716
- } | {
3554
+ } & {
3717
3555
  href: string;
3718
- }))[] | undefined;
3556
+ })[] | undefined;
3719
3557
  anchors?: ({
3720
3558
  anchor: string;
3721
3559
  icon?: string | {
3722
3560
  name: string;
3723
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3561
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3724
3562
  } | undefined;
3725
3563
  color?: {
3726
3564
  light: string;
3727
3565
  dark: string;
3728
3566
  } | undefined;
3729
3567
  hidden?: boolean | undefined;
3730
- } & ({
3731
- openapi: (string | string[]) & (string | string[] | undefined);
3732
- } | {
3568
+ } & {
3733
3569
  href: string;
3734
- }))[] | undefined;
3735
- };
3736
- } | undefined)) | undefined);
3570
+ })[] | undefined;
3571
+ } | undefined;
3572
+ }) | undefined);
3737
3573
  description?: string | undefined;
3738
3574
  logo?: string | {
3739
3575
  light: string;
@@ -3754,6 +3590,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3754
3590
  languages?: string[] | undefined;
3755
3591
  } | undefined;
3756
3592
  } | undefined;
3593
+ feedback?: {
3594
+ thumbs?: boolean | undefined;
3595
+ edits?: boolean | undefined;
3596
+ issues?: boolean | undefined;
3597
+ } | undefined;
3757
3598
  appearance?: {
3758
3599
  strict: boolean;
3759
3600
  default: "light" | "dark" | "system";
@@ -3917,7 +3758,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3917
3758
  group: string;
3918
3759
  icon?: string | {
3919
3760
  name: string;
3920
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3761
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3921
3762
  } | undefined;
3922
3763
  hidden?: boolean | undefined;
3923
3764
  root?: string | undefined;
@@ -3942,7 +3783,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3942
3783
  group: string;
3943
3784
  icon?: string | {
3944
3785
  name: string;
3945
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3786
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3946
3787
  } | undefined;
3947
3788
  hidden?: boolean | undefined;
3948
3789
  root?: string | undefined;
@@ -3953,66 +3794,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3953
3794
  }))[];
3954
3795
  } | {
3955
3796
  pages: any[];
3956
- }) & ({
3957
- global: {
3797
+ }) & {
3798
+ global?: {
3958
3799
  languages?: ({
3959
3800
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3960
3801
  hidden?: boolean | undefined;
3961
- } & ({
3962
- openapi: (string | string[]) & (string | string[] | undefined);
3963
- } | {
3802
+ } & {
3964
3803
  href: string;
3965
- }))[] | undefined;
3804
+ })[] | undefined;
3966
3805
  versions?: ({
3967
3806
  version: string;
3968
3807
  hidden?: boolean | undefined;
3969
- } & ({
3970
- openapi: (string | string[]) & (string | string[] | undefined);
3971
- } | {
3808
+ } & {
3972
3809
  href: string;
3973
- }))[] | undefined;
3810
+ })[] | undefined;
3974
3811
  tabs?: ({
3975
3812
  tab: string;
3976
3813
  icon?: string | {
3977
3814
  name: string;
3978
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3815
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3979
3816
  } | undefined;
3980
3817
  hidden?: boolean | undefined;
3981
- } & ({
3982
- openapi: (string | string[]) & (string | string[] | undefined);
3983
- } | {
3818
+ } & {
3984
3819
  href: string;
3985
- }))[] | undefined;
3820
+ })[] | undefined;
3986
3821
  dropdowns?: ({
3987
3822
  dropdown: string;
3988
3823
  icon?: string | {
3989
3824
  name: string;
3990
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3825
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3991
3826
  } | undefined;
3992
3827
  hidden?: boolean | undefined;
3993
- } & ({
3994
- openapi: (string | string[]) & (string | string[] | undefined);
3995
- } | {
3828
+ } & {
3996
3829
  href: string;
3997
- }))[] | undefined;
3830
+ })[] | undefined;
3998
3831
  anchors?: ({
3999
3832
  anchor: string;
4000
3833
  icon?: string | {
4001
3834
  name: string;
4002
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3835
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4003
3836
  } | undefined;
4004
3837
  color?: {
4005
3838
  light: string;
4006
3839
  dark: string;
4007
3840
  } | undefined;
4008
3841
  hidden?: boolean | undefined;
4009
- } & ({
4010
- openapi: (string | string[]) & (string | string[] | undefined);
4011
- } | {
3842
+ } & {
4012
3843
  href: string;
4013
- }))[] | undefined;
4014
- };
4015
- } | undefined)) & ((({
3844
+ })[] | undefined;
3845
+ } | undefined;
3846
+ }) & ((({
4016
3847
  languages: ({
4017
3848
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4018
3849
  hidden?: boolean | undefined;
@@ -4033,7 +3864,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4033
3864
  group: string;
4034
3865
  icon?: string | {
4035
3866
  name: string;
4036
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3867
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4037
3868
  } | undefined;
4038
3869
  hidden?: boolean | undefined;
4039
3870
  root?: string | undefined;
@@ -4058,7 +3889,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4058
3889
  group: string;
4059
3890
  icon?: string | {
4060
3891
  name: string;
4061
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3892
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4062
3893
  } | undefined;
4063
3894
  hidden?: boolean | undefined;
4064
3895
  root?: string | undefined;
@@ -4069,66 +3900,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4069
3900
  }))[];
4070
3901
  } | {
4071
3902
  pages: any[];
4072
- }) & ({
4073
- global: {
3903
+ }) & {
3904
+ global?: {
4074
3905
  languages?: ({
4075
3906
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4076
3907
  hidden?: boolean | undefined;
4077
- } & ({
4078
- openapi: (string | string[]) & (string | string[] | undefined);
4079
- } | {
3908
+ } & {
4080
3909
  href: string;
4081
- }))[] | undefined;
3910
+ })[] | undefined;
4082
3911
  versions?: ({
4083
3912
  version: string;
4084
3913
  hidden?: boolean | undefined;
4085
- } & ({
4086
- openapi: (string | string[]) & (string | string[] | undefined);
4087
- } | {
3914
+ } & {
4088
3915
  href: string;
4089
- }))[] | undefined;
3916
+ })[] | undefined;
4090
3917
  tabs?: ({
4091
3918
  tab: string;
4092
3919
  icon?: string | {
4093
3920
  name: string;
4094
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3921
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4095
3922
  } | undefined;
4096
3923
  hidden?: boolean | undefined;
4097
- } & ({
4098
- openapi: (string | string[]) & (string | string[] | undefined);
4099
- } | {
3924
+ } & {
4100
3925
  href: string;
4101
- }))[] | undefined;
3926
+ })[] | undefined;
4102
3927
  dropdowns?: ({
4103
3928
  dropdown: string;
4104
3929
  icon?: string | {
4105
3930
  name: string;
4106
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3931
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4107
3932
  } | undefined;
4108
3933
  hidden?: boolean | undefined;
4109
- } & ({
4110
- openapi: (string | string[]) & (string | string[] | undefined);
4111
- } | {
3934
+ } & {
4112
3935
  href: string;
4113
- }))[] | undefined;
3936
+ })[] | undefined;
4114
3937
  anchors?: ({
4115
3938
  anchor: string;
4116
3939
  icon?: string | {
4117
3940
  name: string;
4118
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
3941
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4119
3942
  } | undefined;
4120
3943
  color?: {
4121
3944
  light: string;
4122
3945
  dark: string;
4123
3946
  } | undefined;
4124
3947
  hidden?: boolean | undefined;
4125
- } & ({
4126
- openapi: (string | string[]) & (string | string[] | undefined);
4127
- } | {
3948
+ } & {
4128
3949
  href: string;
4129
- }))[] | undefined;
4130
- };
4131
- } | undefined)) | undefined);
3950
+ })[] | undefined;
3951
+ } | undefined;
3952
+ }) | undefined);
4132
3953
  $schema?: string | undefined;
4133
3954
  description?: string | undefined;
4134
3955
  logo?: string | {
@@ -4150,6 +3971,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4150
3971
  languages?: string[] | undefined;
4151
3972
  } | undefined;
4152
3973
  } | undefined;
3974
+ feedback?: {
3975
+ thumbs?: boolean | undefined;
3976
+ edits?: boolean | undefined;
3977
+ issues?: boolean | undefined;
3978
+ } | undefined;
4153
3979
  appearance?: {
4154
3980
  default?: "light" | "dark" | "system" | undefined;
4155
3981
  strict?: boolean | undefined;
@@ -4360,6 +4186,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4360
4186
  languages?: string[] | undefined;
4361
4187
  } | undefined;
4362
4188
  }>>;
4189
+ feedback: z.ZodOptional<z.ZodObject<{
4190
+ thumbs: z.ZodOptional<z.ZodBoolean>;
4191
+ edits: z.ZodOptional<z.ZodBoolean>;
4192
+ issues: z.ZodOptional<z.ZodBoolean>;
4193
+ }, "strip", z.ZodTypeAny, {
4194
+ thumbs?: boolean | undefined;
4195
+ edits?: boolean | undefined;
4196
+ issues?: boolean | undefined;
4197
+ }, {
4198
+ thumbs?: boolean | undefined;
4199
+ edits?: boolean | undefined;
4200
+ issues?: boolean | undefined;
4201
+ }>>;
4363
4202
  appearance: z.ZodOptional<z.ZodObject<{
4364
4203
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
4365
4204
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -4523,14 +4362,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4523
4362
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
4524
4363
  group: z.ZodString;
4525
4364
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4526
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4365
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
4527
4366
  name: z.ZodEffects<z.ZodString, string, string>;
4528
4367
  }, "strip", z.ZodTypeAny, {
4529
4368
  name: string;
4530
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4369
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4531
4370
  }, {
4532
4371
  name: string;
4533
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4372
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4534
4373
  }>]>>;
4535
4374
  hidden: z.ZodOptional<z.ZodBoolean>;
4536
4375
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -4538,7 +4377,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4538
4377
  group: string;
4539
4378
  icon?: string | {
4540
4379
  name: string;
4541
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4380
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4542
4381
  } | undefined;
4543
4382
  hidden?: boolean | undefined;
4544
4383
  root?: string | undefined;
@@ -4546,7 +4385,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4546
4385
  group: string;
4547
4386
  icon?: string | {
4548
4387
  name: string;
4549
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4388
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4550
4389
  } | undefined;
4551
4390
  hidden?: boolean | undefined;
4552
4391
  root?: string | undefined;
@@ -4568,7 +4407,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4568
4407
  group: string;
4569
4408
  icon?: string | {
4570
4409
  name: string;
4571
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4410
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4572
4411
  } | undefined;
4573
4412
  hidden?: boolean | undefined;
4574
4413
  root?: string | undefined;
@@ -4582,7 +4421,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4582
4421
  group: string;
4583
4422
  icon?: string | {
4584
4423
  name: string;
4585
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4424
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4586
4425
  } | undefined;
4587
4426
  hidden?: boolean | undefined;
4588
4427
  root?: string | undefined;
@@ -4619,7 +4458,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4619
4458
  group: string;
4620
4459
  icon?: string | {
4621
4460
  name: string;
4622
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4461
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4623
4462
  } | undefined;
4624
4463
  hidden?: boolean | undefined;
4625
4464
  root?: string | undefined;
@@ -4652,7 +4491,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4652
4491
  group: string;
4653
4492
  icon?: string | {
4654
4493
  name: string;
4655
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4494
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4656
4495
  } | undefined;
4657
4496
  hidden?: boolean | undefined;
4658
4497
  root?: string | undefined;
@@ -4692,14 +4531,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4692
4531
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
4693
4532
  group: z.ZodString;
4694
4533
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4695
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4534
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
4696
4535
  name: z.ZodEffects<z.ZodString, string, string>;
4697
4536
  }, "strip", z.ZodTypeAny, {
4698
4537
  name: string;
4699
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4538
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4700
4539
  }, {
4701
4540
  name: string;
4702
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4541
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4703
4542
  }>]>>;
4704
4543
  hidden: z.ZodOptional<z.ZodBoolean>;
4705
4544
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -4707,7 +4546,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4707
4546
  group: string;
4708
4547
  icon?: string | {
4709
4548
  name: string;
4710
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4549
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4711
4550
  } | undefined;
4712
4551
  hidden?: boolean | undefined;
4713
4552
  root?: string | undefined;
@@ -4715,7 +4554,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4715
4554
  group: string;
4716
4555
  icon?: string | {
4717
4556
  name: string;
4718
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4557
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4719
4558
  } | undefined;
4720
4559
  hidden?: boolean | undefined;
4721
4560
  root?: string | undefined;
@@ -4737,7 +4576,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4737
4576
  group: string;
4738
4577
  icon?: string | {
4739
4578
  name: string;
4740
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4579
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4741
4580
  } | undefined;
4742
4581
  hidden?: boolean | undefined;
4743
4582
  root?: string | undefined;
@@ -4751,7 +4590,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4751
4590
  group: string;
4752
4591
  icon?: string | {
4753
4592
  name: string;
4754
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4593
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4755
4594
  } | undefined;
4756
4595
  hidden?: boolean | undefined;
4757
4596
  root?: string | undefined;
@@ -4766,8 +4605,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4766
4605
  pages: any[];
4767
4606
  }, {
4768
4607
  pages: any[];
4769
- }>]>, z.ZodOptional<z.ZodObject<{
4770
- global: z.ZodObject<{
4608
+ }>]>, z.ZodObject<{
4609
+ global: z.ZodOptional<z.ZodObject<{
4771
4610
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4772
4611
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
4773
4612
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -4777,19 +4616,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4777
4616
  }, {
4778
4617
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4779
4618
  hidden?: boolean | undefined;
4780
- }>, z.ZodUnion<[z.ZodObject<{
4781
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4782
- }, "strip", z.ZodTypeAny, {
4783
- openapi: (string | string[]) & (string | string[] | undefined);
4784
- }, {
4785
- openapi: (string | string[]) & (string | string[] | undefined);
4786
4619
  }>, z.ZodObject<{
4787
4620
  href: z.ZodString;
4788
4621
  }, "strip", z.ZodTypeAny, {
4789
4622
  href: string;
4790
4623
  }, {
4791
4624
  href: string;
4792
- }>]>>, "many">>;
4625
+ }>>, "many">>;
4793
4626
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4794
4627
  version: z.ZodString;
4795
4628
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -4799,110 +4632,92 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4799
4632
  }, {
4800
4633
  version: string;
4801
4634
  hidden?: boolean | undefined;
4802
- }>, z.ZodUnion<[z.ZodObject<{
4803
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4804
- }, "strip", z.ZodTypeAny, {
4805
- openapi: (string | string[]) & (string | string[] | undefined);
4806
- }, {
4807
- openapi: (string | string[]) & (string | string[] | undefined);
4808
4635
  }>, z.ZodObject<{
4809
4636
  href: z.ZodString;
4810
4637
  }, "strip", z.ZodTypeAny, {
4811
4638
  href: string;
4812
4639
  }, {
4813
4640
  href: string;
4814
- }>]>>, "many">>;
4641
+ }>>, "many">>;
4815
4642
  tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4816
4643
  tab: z.ZodString;
4817
4644
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4818
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4645
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
4819
4646
  name: z.ZodEffects<z.ZodString, string, string>;
4820
4647
  }, "strip", z.ZodTypeAny, {
4821
4648
  name: string;
4822
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4649
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4823
4650
  }, {
4824
4651
  name: string;
4825
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4652
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4826
4653
  }>]>>;
4827
4654
  hidden: z.ZodOptional<z.ZodBoolean>;
4828
4655
  }, "strip", z.ZodTypeAny, {
4829
4656
  tab: string;
4830
4657
  icon?: string | {
4831
4658
  name: string;
4832
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4659
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4833
4660
  } | undefined;
4834
4661
  hidden?: boolean | undefined;
4835
4662
  }, {
4836
4663
  tab: string;
4837
4664
  icon?: string | {
4838
4665
  name: string;
4839
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4666
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4840
4667
  } | undefined;
4841
4668
  hidden?: boolean | undefined;
4842
- }>, z.ZodUnion<[z.ZodObject<{
4843
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4844
- }, "strip", z.ZodTypeAny, {
4845
- openapi: (string | string[]) & (string | string[] | undefined);
4846
- }, {
4847
- openapi: (string | string[]) & (string | string[] | undefined);
4848
4669
  }>, z.ZodObject<{
4849
4670
  href: z.ZodString;
4850
4671
  }, "strip", z.ZodTypeAny, {
4851
4672
  href: string;
4852
4673
  }, {
4853
4674
  href: string;
4854
- }>]>>, "many">>;
4675
+ }>>, "many">>;
4855
4676
  dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4856
4677
  dropdown: z.ZodString;
4857
4678
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4858
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4679
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
4859
4680
  name: z.ZodEffects<z.ZodString, string, string>;
4860
4681
  }, "strip", z.ZodTypeAny, {
4861
4682
  name: string;
4862
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4683
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4863
4684
  }, {
4864
4685
  name: string;
4865
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4686
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4866
4687
  }>]>>;
4867
4688
  hidden: z.ZodOptional<z.ZodBoolean>;
4868
4689
  }, "strip", z.ZodTypeAny, {
4869
4690
  dropdown: string;
4870
4691
  icon?: string | {
4871
4692
  name: string;
4872
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4693
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4873
4694
  } | undefined;
4874
4695
  hidden?: boolean | undefined;
4875
4696
  }, {
4876
4697
  dropdown: string;
4877
4698
  icon?: string | {
4878
4699
  name: string;
4879
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4700
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4880
4701
  } | undefined;
4881
4702
  hidden?: boolean | undefined;
4882
- }>, z.ZodUnion<[z.ZodObject<{
4883
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4884
- }, "strip", z.ZodTypeAny, {
4885
- openapi: (string | string[]) & (string | string[] | undefined);
4886
- }, {
4887
- openapi: (string | string[]) & (string | string[] | undefined);
4888
4703
  }>, z.ZodObject<{
4889
4704
  href: z.ZodString;
4890
4705
  }, "strip", z.ZodTypeAny, {
4891
4706
  href: string;
4892
4707
  }, {
4893
4708
  href: string;
4894
- }>]>>, "many">>;
4709
+ }>>, "many">>;
4895
4710
  anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4896
4711
  anchor: z.ZodString;
4897
4712
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4898
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
4713
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
4899
4714
  name: z.ZodEffects<z.ZodString, string, string>;
4900
4715
  }, "strip", z.ZodTypeAny, {
4901
4716
  name: string;
4902
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4717
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4903
4718
  }, {
4904
4719
  name: string;
4905
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4720
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4906
4721
  }>]>>;
4907
4722
  color: z.ZodOptional<z.ZodObject<{
4908
4723
  light: z.ZodString;
@@ -4919,7 +4734,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4919
4734
  anchor: string;
4920
4735
  icon?: string | {
4921
4736
  name: string;
4922
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4737
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4923
4738
  } | undefined;
4924
4739
  color?: {
4925
4740
  light: string;
@@ -4930,260 +4745,214 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4930
4745
  anchor: string;
4931
4746
  icon?: string | {
4932
4747
  name: string;
4933
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4748
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4934
4749
  } | undefined;
4935
4750
  color?: {
4936
4751
  light: string;
4937
4752
  dark: string;
4938
4753
  } | undefined;
4939
4754
  hidden?: boolean | undefined;
4940
- }>, z.ZodUnion<[z.ZodObject<{
4941
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
4942
- }, "strip", z.ZodTypeAny, {
4943
- openapi: (string | string[]) & (string | string[] | undefined);
4944
- }, {
4945
- openapi: (string | string[]) & (string | string[] | undefined);
4946
4755
  }>, z.ZodObject<{
4947
4756
  href: z.ZodString;
4948
4757
  }, "strip", z.ZodTypeAny, {
4949
4758
  href: string;
4950
4759
  }, {
4951
4760
  href: string;
4952
- }>]>>, "many">>;
4761
+ }>>, "many">>;
4953
4762
  }, "strict", z.ZodTypeAny, {
4954
4763
  languages?: ({
4955
4764
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4956
4765
  hidden?: boolean | undefined;
4957
- } & ({
4958
- openapi: (string | string[]) & (string | string[] | undefined);
4959
- } | {
4766
+ } & {
4960
4767
  href: string;
4961
- }))[] | undefined;
4768
+ })[] | undefined;
4962
4769
  versions?: ({
4963
4770
  version: string;
4964
4771
  hidden?: boolean | undefined;
4965
- } & ({
4966
- openapi: (string | string[]) & (string | string[] | undefined);
4967
- } | {
4772
+ } & {
4968
4773
  href: string;
4969
- }))[] | undefined;
4774
+ })[] | undefined;
4970
4775
  tabs?: ({
4971
4776
  tab: string;
4972
4777
  icon?: string | {
4973
4778
  name: string;
4974
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4779
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4975
4780
  } | undefined;
4976
4781
  hidden?: boolean | undefined;
4977
- } & ({
4978
- openapi: (string | string[]) & (string | string[] | undefined);
4979
- } | {
4782
+ } & {
4980
4783
  href: string;
4981
- }))[] | undefined;
4784
+ })[] | undefined;
4982
4785
  dropdowns?: ({
4983
4786
  dropdown: string;
4984
4787
  icon?: string | {
4985
4788
  name: string;
4986
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4789
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4987
4790
  } | undefined;
4988
4791
  hidden?: boolean | undefined;
4989
- } & ({
4990
- openapi: (string | string[]) & (string | string[] | undefined);
4991
- } | {
4792
+ } & {
4992
4793
  href: string;
4993
- }))[] | undefined;
4794
+ })[] | undefined;
4994
4795
  anchors?: ({
4995
4796
  anchor: string;
4996
4797
  icon?: string | {
4997
4798
  name: string;
4998
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4799
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4999
4800
  } | undefined;
5000
4801
  color?: {
5001
4802
  light: string;
5002
4803
  dark: string;
5003
4804
  } | undefined;
5004
4805
  hidden?: boolean | undefined;
5005
- } & ({
5006
- openapi: (string | string[]) & (string | string[] | undefined);
5007
- } | {
4806
+ } & {
5008
4807
  href: string;
5009
- }))[] | undefined;
4808
+ })[] | undefined;
5010
4809
  }, {
5011
4810
  languages?: ({
5012
4811
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5013
4812
  hidden?: boolean | undefined;
5014
- } & ({
5015
- openapi: (string | string[]) & (string | string[] | undefined);
5016
- } | {
4813
+ } & {
5017
4814
  href: string;
5018
- }))[] | undefined;
4815
+ })[] | undefined;
5019
4816
  versions?: ({
5020
4817
  version: string;
5021
4818
  hidden?: boolean | undefined;
5022
- } & ({
5023
- openapi: (string | string[]) & (string | string[] | undefined);
5024
- } | {
4819
+ } & {
5025
4820
  href: string;
5026
- }))[] | undefined;
4821
+ })[] | undefined;
5027
4822
  tabs?: ({
5028
4823
  tab: string;
5029
4824
  icon?: string | {
5030
4825
  name: string;
5031
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4826
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5032
4827
  } | undefined;
5033
4828
  hidden?: boolean | undefined;
5034
- } & ({
5035
- openapi: (string | string[]) & (string | string[] | undefined);
5036
- } | {
4829
+ } & {
5037
4830
  href: string;
5038
- }))[] | undefined;
4831
+ })[] | undefined;
5039
4832
  dropdowns?: ({
5040
4833
  dropdown: string;
5041
4834
  icon?: string | {
5042
4835
  name: string;
5043
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4836
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5044
4837
  } | undefined;
5045
4838
  hidden?: boolean | undefined;
5046
- } & ({
5047
- openapi: (string | string[]) & (string | string[] | undefined);
5048
- } | {
4839
+ } & {
5049
4840
  href: string;
5050
- }))[] | undefined;
4841
+ })[] | undefined;
5051
4842
  anchors?: ({
5052
4843
  anchor: string;
5053
4844
  icon?: string | {
5054
4845
  name: string;
5055
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4846
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5056
4847
  } | undefined;
5057
4848
  color?: {
5058
4849
  light: string;
5059
4850
  dark: string;
5060
4851
  } | undefined;
5061
4852
  hidden?: boolean | undefined;
5062
- } & ({
5063
- openapi: (string | string[]) & (string | string[] | undefined);
5064
- } | {
4853
+ } & {
5065
4854
  href: string;
5066
- }))[] | undefined;
5067
- }>;
4855
+ })[] | undefined;
4856
+ }>>;
5068
4857
  }, "strip", z.ZodTypeAny, {
5069
- global: {
4858
+ global?: {
5070
4859
  languages?: ({
5071
4860
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5072
4861
  hidden?: boolean | undefined;
5073
- } & ({
5074
- openapi: (string | string[]) & (string | string[] | undefined);
5075
- } | {
4862
+ } & {
5076
4863
  href: string;
5077
- }))[] | undefined;
4864
+ })[] | undefined;
5078
4865
  versions?: ({
5079
4866
  version: string;
5080
4867
  hidden?: boolean | undefined;
5081
- } & ({
5082
- openapi: (string | string[]) & (string | string[] | undefined);
5083
- } | {
4868
+ } & {
5084
4869
  href: string;
5085
- }))[] | undefined;
4870
+ })[] | undefined;
5086
4871
  tabs?: ({
5087
4872
  tab: string;
5088
4873
  icon?: string | {
5089
4874
  name: string;
5090
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4875
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5091
4876
  } | undefined;
5092
4877
  hidden?: boolean | undefined;
5093
- } & ({
5094
- openapi: (string | string[]) & (string | string[] | undefined);
5095
- } | {
4878
+ } & {
5096
4879
  href: string;
5097
- }))[] | undefined;
4880
+ })[] | undefined;
5098
4881
  dropdowns?: ({
5099
4882
  dropdown: string;
5100
4883
  icon?: string | {
5101
4884
  name: string;
5102
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4885
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5103
4886
  } | undefined;
5104
4887
  hidden?: boolean | undefined;
5105
- } & ({
5106
- openapi: (string | string[]) & (string | string[] | undefined);
5107
- } | {
4888
+ } & {
5108
4889
  href: string;
5109
- }))[] | undefined;
4890
+ })[] | undefined;
5110
4891
  anchors?: ({
5111
4892
  anchor: string;
5112
4893
  icon?: string | {
5113
4894
  name: string;
5114
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4895
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5115
4896
  } | undefined;
5116
4897
  color?: {
5117
4898
  light: string;
5118
4899
  dark: string;
5119
4900
  } | undefined;
5120
4901
  hidden?: boolean | undefined;
5121
- } & ({
5122
- openapi: (string | string[]) & (string | string[] | undefined);
5123
- } | {
4902
+ } & {
5124
4903
  href: string;
5125
- }))[] | undefined;
5126
- };
4904
+ })[] | undefined;
4905
+ } | undefined;
5127
4906
  }, {
5128
- global: {
4907
+ global?: {
5129
4908
  languages?: ({
5130
4909
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5131
4910
  hidden?: boolean | undefined;
5132
- } & ({
5133
- openapi: (string | string[]) & (string | string[] | undefined);
5134
- } | {
4911
+ } & {
5135
4912
  href: string;
5136
- }))[] | undefined;
4913
+ })[] | undefined;
5137
4914
  versions?: ({
5138
4915
  version: string;
5139
4916
  hidden?: boolean | undefined;
5140
- } & ({
5141
- openapi: (string | string[]) & (string | string[] | undefined);
5142
- } | {
4917
+ } & {
5143
4918
  href: string;
5144
- }))[] | undefined;
4919
+ })[] | undefined;
5145
4920
  tabs?: ({
5146
4921
  tab: string;
5147
4922
  icon?: string | {
5148
4923
  name: string;
5149
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4924
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5150
4925
  } | undefined;
5151
4926
  hidden?: boolean | undefined;
5152
- } & ({
5153
- openapi: (string | string[]) & (string | string[] | undefined);
5154
- } | {
4927
+ } & {
5155
4928
  href: string;
5156
- }))[] | undefined;
4929
+ })[] | undefined;
5157
4930
  dropdowns?: ({
5158
4931
  dropdown: string;
5159
4932
  icon?: string | {
5160
4933
  name: string;
5161
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4934
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5162
4935
  } | undefined;
5163
4936
  hidden?: boolean | undefined;
5164
- } & ({
5165
- openapi: (string | string[]) & (string | string[] | undefined);
5166
- } | {
4937
+ } & {
5167
4938
  href: string;
5168
- }))[] | undefined;
4939
+ })[] | undefined;
5169
4940
  anchors?: ({
5170
4941
  anchor: string;
5171
4942
  icon?: string | {
5172
4943
  name: string;
5173
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
4944
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5174
4945
  } | undefined;
5175
4946
  color?: {
5176
4947
  light: string;
5177
4948
  dark: string;
5178
4949
  } | undefined;
5179
4950
  hidden?: boolean | undefined;
5180
- } & ({
5181
- openapi: (string | string[]) & (string | string[] | undefined);
5182
- } | {
4951
+ } & {
5183
4952
  href: string;
5184
- }))[] | undefined;
5185
- };
5186
- }>>>;
4953
+ })[] | undefined;
4954
+ } | undefined;
4955
+ }>>;
5187
4956
  footer: z.ZodOptional<z.ZodObject<{
5188
4957
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
5189
4958
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5239,7 +5008,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5239
5008
  }>>;
5240
5009
  seo: z.ZodOptional<z.ZodObject<{
5241
5010
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
5242
- indexing: z.ZodDefault<z.ZodEnum<["navigable", "all"]>>;
5011
+ indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
5243
5012
  }, "strip", z.ZodTypeAny, {
5244
5013
  indexing: "all" | "navigable";
5245
5014
  metatags?: Record<string, string> | undefined;
@@ -5664,7 +5433,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5664
5433
  group: string;
5665
5434
  icon?: string | {
5666
5435
  name: string;
5667
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5436
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5668
5437
  } | undefined;
5669
5438
  hidden?: boolean | undefined;
5670
5439
  root?: string | undefined;
@@ -5689,7 +5458,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5689
5458
  group: string;
5690
5459
  icon?: string | {
5691
5460
  name: string;
5692
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5461
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5693
5462
  } | undefined;
5694
5463
  hidden?: boolean | undefined;
5695
5464
  root?: string | undefined;
@@ -5700,66 +5469,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5700
5469
  }))[];
5701
5470
  } | {
5702
5471
  pages: any[];
5703
- }) & ({
5704
- global: {
5472
+ }) & {
5473
+ global?: {
5705
5474
  languages?: ({
5706
5475
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5707
5476
  hidden?: boolean | undefined;
5708
- } & ({
5709
- openapi: (string | string[]) & (string | string[] | undefined);
5710
- } | {
5477
+ } & {
5711
5478
  href: string;
5712
- }))[] | undefined;
5479
+ })[] | undefined;
5713
5480
  versions?: ({
5714
5481
  version: string;
5715
5482
  hidden?: boolean | undefined;
5716
- } & ({
5717
- openapi: (string | string[]) & (string | string[] | undefined);
5718
- } | {
5483
+ } & {
5719
5484
  href: string;
5720
- }))[] | undefined;
5485
+ })[] | undefined;
5721
5486
  tabs?: ({
5722
5487
  tab: string;
5723
5488
  icon?: string | {
5724
5489
  name: string;
5725
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5490
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5726
5491
  } | undefined;
5727
5492
  hidden?: boolean | undefined;
5728
- } & ({
5729
- openapi: (string | string[]) & (string | string[] | undefined);
5730
- } | {
5493
+ } & {
5731
5494
  href: string;
5732
- }))[] | undefined;
5495
+ })[] | undefined;
5733
5496
  dropdowns?: ({
5734
5497
  dropdown: string;
5735
5498
  icon?: string | {
5736
5499
  name: string;
5737
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5500
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5738
5501
  } | undefined;
5739
5502
  hidden?: boolean | undefined;
5740
- } & ({
5741
- openapi: (string | string[]) & (string | string[] | undefined);
5742
- } | {
5503
+ } & {
5743
5504
  href: string;
5744
- }))[] | undefined;
5505
+ })[] | undefined;
5745
5506
  anchors?: ({
5746
5507
  anchor: string;
5747
5508
  icon?: string | {
5748
5509
  name: string;
5749
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5510
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5750
5511
  } | undefined;
5751
5512
  color?: {
5752
5513
  light: string;
5753
5514
  dark: string;
5754
5515
  } | undefined;
5755
5516
  hidden?: boolean | undefined;
5756
- } & ({
5757
- openapi: (string | string[]) & (string | string[] | undefined);
5758
- } | {
5517
+ } & {
5759
5518
  href: string;
5760
- }))[] | undefined;
5761
- };
5762
- } | undefined)) & ((({
5519
+ })[] | undefined;
5520
+ } | undefined;
5521
+ }) & ((({
5763
5522
  languages: ({
5764
5523
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5765
5524
  hidden?: boolean | undefined;
@@ -5780,7 +5539,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5780
5539
  group: string;
5781
5540
  icon?: string | {
5782
5541
  name: string;
5783
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5542
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5784
5543
  } | undefined;
5785
5544
  hidden?: boolean | undefined;
5786
5545
  root?: string | undefined;
@@ -5805,7 +5564,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5805
5564
  group: string;
5806
5565
  icon?: string | {
5807
5566
  name: string;
5808
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5567
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5809
5568
  } | undefined;
5810
5569
  hidden?: boolean | undefined;
5811
5570
  root?: string | undefined;
@@ -5816,66 +5575,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5816
5575
  }))[];
5817
5576
  } | {
5818
5577
  pages: any[];
5819
- }) & ({
5820
- global: {
5578
+ }) & {
5579
+ global?: {
5821
5580
  languages?: ({
5822
5581
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5823
5582
  hidden?: boolean | undefined;
5824
- } & ({
5825
- openapi: (string | string[]) & (string | string[] | undefined);
5826
- } | {
5583
+ } & {
5827
5584
  href: string;
5828
- }))[] | undefined;
5585
+ })[] | undefined;
5829
5586
  versions?: ({
5830
5587
  version: string;
5831
5588
  hidden?: boolean | undefined;
5832
- } & ({
5833
- openapi: (string | string[]) & (string | string[] | undefined);
5834
- } | {
5589
+ } & {
5835
5590
  href: string;
5836
- }))[] | undefined;
5591
+ })[] | undefined;
5837
5592
  tabs?: ({
5838
5593
  tab: string;
5839
5594
  icon?: string | {
5840
5595
  name: string;
5841
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5596
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5842
5597
  } | undefined;
5843
5598
  hidden?: boolean | undefined;
5844
- } & ({
5845
- openapi: (string | string[]) & (string | string[] | undefined);
5846
- } | {
5599
+ } & {
5847
5600
  href: string;
5848
- }))[] | undefined;
5601
+ })[] | undefined;
5849
5602
  dropdowns?: ({
5850
5603
  dropdown: string;
5851
5604
  icon?: string | {
5852
5605
  name: string;
5853
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5606
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5854
5607
  } | undefined;
5855
5608
  hidden?: boolean | undefined;
5856
- } & ({
5857
- openapi: (string | string[]) & (string | string[] | undefined);
5858
- } | {
5609
+ } & {
5859
5610
  href: string;
5860
- }))[] | undefined;
5611
+ })[] | undefined;
5861
5612
  anchors?: ({
5862
5613
  anchor: string;
5863
5614
  icon?: string | {
5864
5615
  name: string;
5865
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5616
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5866
5617
  } | undefined;
5867
5618
  color?: {
5868
5619
  light: string;
5869
5620
  dark: string;
5870
5621
  } | undefined;
5871
5622
  hidden?: boolean | undefined;
5872
- } & ({
5873
- openapi: (string | string[]) & (string | string[] | undefined);
5874
- } | {
5623
+ } & {
5875
5624
  href: string;
5876
- }))[] | undefined;
5877
- };
5878
- } | undefined)) | undefined);
5625
+ })[] | undefined;
5626
+ } | undefined;
5627
+ }) | undefined);
5879
5628
  description?: string | undefined;
5880
5629
  logo?: string | {
5881
5630
  light: string;
@@ -5896,6 +5645,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5896
5645
  languages?: string[] | undefined;
5897
5646
  } | undefined;
5898
5647
  } | undefined;
5648
+ feedback?: {
5649
+ thumbs?: boolean | undefined;
5650
+ edits?: boolean | undefined;
5651
+ issues?: boolean | undefined;
5652
+ } | undefined;
5899
5653
  appearance?: {
5900
5654
  strict: boolean;
5901
5655
  default: "light" | "dark" | "system";
@@ -6059,7 +5813,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6059
5813
  group: string;
6060
5814
  icon?: string | {
6061
5815
  name: string;
6062
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5816
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6063
5817
  } | undefined;
6064
5818
  hidden?: boolean | undefined;
6065
5819
  root?: string | undefined;
@@ -6084,7 +5838,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6084
5838
  group: string;
6085
5839
  icon?: string | {
6086
5840
  name: string;
6087
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5841
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6088
5842
  } | undefined;
6089
5843
  hidden?: boolean | undefined;
6090
5844
  root?: string | undefined;
@@ -6095,66 +5849,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6095
5849
  }))[];
6096
5850
  } | {
6097
5851
  pages: any[];
6098
- }) & ({
6099
- global: {
5852
+ }) & {
5853
+ global?: {
6100
5854
  languages?: ({
6101
5855
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6102
5856
  hidden?: boolean | undefined;
6103
- } & ({
6104
- openapi: (string | string[]) & (string | string[] | undefined);
6105
- } | {
5857
+ } & {
6106
5858
  href: string;
6107
- }))[] | undefined;
5859
+ })[] | undefined;
6108
5860
  versions?: ({
6109
5861
  version: string;
6110
5862
  hidden?: boolean | undefined;
6111
- } & ({
6112
- openapi: (string | string[]) & (string | string[] | undefined);
6113
- } | {
5863
+ } & {
6114
5864
  href: string;
6115
- }))[] | undefined;
5865
+ })[] | undefined;
6116
5866
  tabs?: ({
6117
5867
  tab: string;
6118
5868
  icon?: string | {
6119
5869
  name: string;
6120
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5870
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6121
5871
  } | undefined;
6122
5872
  hidden?: boolean | undefined;
6123
- } & ({
6124
- openapi: (string | string[]) & (string | string[] | undefined);
6125
- } | {
5873
+ } & {
6126
5874
  href: string;
6127
- }))[] | undefined;
5875
+ })[] | undefined;
6128
5876
  dropdowns?: ({
6129
5877
  dropdown: string;
6130
5878
  icon?: string | {
6131
5879
  name: string;
6132
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5880
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6133
5881
  } | undefined;
6134
5882
  hidden?: boolean | undefined;
6135
- } & ({
6136
- openapi: (string | string[]) & (string | string[] | undefined);
6137
- } | {
5883
+ } & {
6138
5884
  href: string;
6139
- }))[] | undefined;
5885
+ })[] | undefined;
6140
5886
  anchors?: ({
6141
5887
  anchor: string;
6142
5888
  icon?: string | {
6143
5889
  name: string;
6144
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5890
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6145
5891
  } | undefined;
6146
5892
  color?: {
6147
5893
  light: string;
6148
5894
  dark: string;
6149
5895
  } | undefined;
6150
5896
  hidden?: boolean | undefined;
6151
- } & ({
6152
- openapi: (string | string[]) & (string | string[] | undefined);
6153
- } | {
5897
+ } & {
6154
5898
  href: string;
6155
- }))[] | undefined;
6156
- };
6157
- } | undefined)) & ((({
5899
+ })[] | undefined;
5900
+ } | undefined;
5901
+ }) & ((({
6158
5902
  languages: ({
6159
5903
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6160
5904
  hidden?: boolean | undefined;
@@ -6175,7 +5919,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6175
5919
  group: string;
6176
5920
  icon?: string | {
6177
5921
  name: string;
6178
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5922
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6179
5923
  } | undefined;
6180
5924
  hidden?: boolean | undefined;
6181
5925
  root?: string | undefined;
@@ -6200,7 +5944,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6200
5944
  group: string;
6201
5945
  icon?: string | {
6202
5946
  name: string;
6203
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5947
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6204
5948
  } | undefined;
6205
5949
  hidden?: boolean | undefined;
6206
5950
  root?: string | undefined;
@@ -6211,66 +5955,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6211
5955
  }))[];
6212
5956
  } | {
6213
5957
  pages: any[];
6214
- }) & ({
6215
- global: {
5958
+ }) & {
5959
+ global?: {
6216
5960
  languages?: ({
6217
5961
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6218
5962
  hidden?: boolean | undefined;
6219
- } & ({
6220
- openapi: (string | string[]) & (string | string[] | undefined);
6221
- } | {
5963
+ } & {
6222
5964
  href: string;
6223
- }))[] | undefined;
5965
+ })[] | undefined;
6224
5966
  versions?: ({
6225
5967
  version: string;
6226
5968
  hidden?: boolean | undefined;
6227
- } & ({
6228
- openapi: (string | string[]) & (string | string[] | undefined);
6229
- } | {
5969
+ } & {
6230
5970
  href: string;
6231
- }))[] | undefined;
5971
+ })[] | undefined;
6232
5972
  tabs?: ({
6233
5973
  tab: string;
6234
5974
  icon?: string | {
6235
5975
  name: string;
6236
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5976
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6237
5977
  } | undefined;
6238
5978
  hidden?: boolean | undefined;
6239
- } & ({
6240
- openapi: (string | string[]) & (string | string[] | undefined);
6241
- } | {
5979
+ } & {
6242
5980
  href: string;
6243
- }))[] | undefined;
5981
+ })[] | undefined;
6244
5982
  dropdowns?: ({
6245
5983
  dropdown: string;
6246
5984
  icon?: string | {
6247
5985
  name: string;
6248
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5986
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6249
5987
  } | undefined;
6250
5988
  hidden?: boolean | undefined;
6251
- } & ({
6252
- openapi: (string | string[]) & (string | string[] | undefined);
6253
- } | {
5989
+ } & {
6254
5990
  href: string;
6255
- }))[] | undefined;
5991
+ })[] | undefined;
6256
5992
  anchors?: ({
6257
5993
  anchor: string;
6258
5994
  icon?: string | {
6259
5995
  name: string;
6260
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
5996
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6261
5997
  } | undefined;
6262
5998
  color?: {
6263
5999
  light: string;
6264
6000
  dark: string;
6265
6001
  } | undefined;
6266
6002
  hidden?: boolean | undefined;
6267
- } & ({
6268
- openapi: (string | string[]) & (string | string[] | undefined);
6269
- } | {
6003
+ } & {
6270
6004
  href: string;
6271
- }))[] | undefined;
6272
- };
6273
- } | undefined)) | undefined);
6005
+ })[] | undefined;
6006
+ } | undefined;
6007
+ }) | undefined);
6274
6008
  $schema?: string | undefined;
6275
6009
  description?: string | undefined;
6276
6010
  logo?: string | {
@@ -6292,6 +6026,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6292
6026
  languages?: string[] | undefined;
6293
6027
  } | undefined;
6294
6028
  } | undefined;
6029
+ feedback?: {
6030
+ thumbs?: boolean | undefined;
6031
+ edits?: boolean | undefined;
6032
+ issues?: boolean | undefined;
6033
+ } | undefined;
6295
6034
  appearance?: {
6296
6035
  default?: "light" | "dark" | "system" | undefined;
6297
6036
  strict?: boolean | undefined;
@@ -6502,6 +6241,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6502
6241
  languages?: string[] | undefined;
6503
6242
  } | undefined;
6504
6243
  }>>;
6244
+ feedback: z.ZodOptional<z.ZodObject<{
6245
+ thumbs: z.ZodOptional<z.ZodBoolean>;
6246
+ edits: z.ZodOptional<z.ZodBoolean>;
6247
+ issues: z.ZodOptional<z.ZodBoolean>;
6248
+ }, "strip", z.ZodTypeAny, {
6249
+ thumbs?: boolean | undefined;
6250
+ edits?: boolean | undefined;
6251
+ issues?: boolean | undefined;
6252
+ }, {
6253
+ thumbs?: boolean | undefined;
6254
+ edits?: boolean | undefined;
6255
+ issues?: boolean | undefined;
6256
+ }>>;
6505
6257
  appearance: z.ZodOptional<z.ZodObject<{
6506
6258
  default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
6507
6259
  strict: z.ZodDefault<z.ZodBoolean>;
@@ -6665,14 +6417,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6665
6417
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
6666
6418
  group: z.ZodString;
6667
6419
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6668
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
6420
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
6669
6421
  name: z.ZodEffects<z.ZodString, string, string>;
6670
6422
  }, "strip", z.ZodTypeAny, {
6671
6423
  name: string;
6672
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6424
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6673
6425
  }, {
6674
6426
  name: string;
6675
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6427
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6676
6428
  }>]>>;
6677
6429
  hidden: z.ZodOptional<z.ZodBoolean>;
6678
6430
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -6680,7 +6432,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6680
6432
  group: string;
6681
6433
  icon?: string | {
6682
6434
  name: string;
6683
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6435
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6684
6436
  } | undefined;
6685
6437
  hidden?: boolean | undefined;
6686
6438
  root?: string | undefined;
@@ -6688,7 +6440,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6688
6440
  group: string;
6689
6441
  icon?: string | {
6690
6442
  name: string;
6691
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6443
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6692
6444
  } | undefined;
6693
6445
  hidden?: boolean | undefined;
6694
6446
  root?: string | undefined;
@@ -6710,7 +6462,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6710
6462
  group: string;
6711
6463
  icon?: string | {
6712
6464
  name: string;
6713
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6465
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6714
6466
  } | undefined;
6715
6467
  hidden?: boolean | undefined;
6716
6468
  root?: string | undefined;
@@ -6724,7 +6476,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6724
6476
  group: string;
6725
6477
  icon?: string | {
6726
6478
  name: string;
6727
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6479
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6728
6480
  } | undefined;
6729
6481
  hidden?: boolean | undefined;
6730
6482
  root?: string | undefined;
@@ -6761,7 +6513,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6761
6513
  group: string;
6762
6514
  icon?: string | {
6763
6515
  name: string;
6764
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6516
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6765
6517
  } | undefined;
6766
6518
  hidden?: boolean | undefined;
6767
6519
  root?: string | undefined;
@@ -6794,7 +6546,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6794
6546
  group: string;
6795
6547
  icon?: string | {
6796
6548
  name: string;
6797
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6549
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6798
6550
  } | undefined;
6799
6551
  hidden?: boolean | undefined;
6800
6552
  root?: string | undefined;
@@ -6834,14 +6586,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6834
6586
  groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
6835
6587
  group: z.ZodString;
6836
6588
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6837
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
6589
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
6838
6590
  name: z.ZodEffects<z.ZodString, string, string>;
6839
6591
  }, "strip", z.ZodTypeAny, {
6840
6592
  name: string;
6841
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6593
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6842
6594
  }, {
6843
6595
  name: string;
6844
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6596
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6845
6597
  }>]>>;
6846
6598
  hidden: z.ZodOptional<z.ZodBoolean>;
6847
6599
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -6849,7 +6601,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6849
6601
  group: string;
6850
6602
  icon?: string | {
6851
6603
  name: string;
6852
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6604
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6853
6605
  } | undefined;
6854
6606
  hidden?: boolean | undefined;
6855
6607
  root?: string | undefined;
@@ -6857,7 +6609,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6857
6609
  group: string;
6858
6610
  icon?: string | {
6859
6611
  name: string;
6860
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6612
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6861
6613
  } | undefined;
6862
6614
  hidden?: boolean | undefined;
6863
6615
  root?: string | undefined;
@@ -6879,7 +6631,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6879
6631
  group: string;
6880
6632
  icon?: string | {
6881
6633
  name: string;
6882
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6634
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6883
6635
  } | undefined;
6884
6636
  hidden?: boolean | undefined;
6885
6637
  root?: string | undefined;
@@ -6893,7 +6645,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6893
6645
  group: string;
6894
6646
  icon?: string | {
6895
6647
  name: string;
6896
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6648
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6897
6649
  } | undefined;
6898
6650
  hidden?: boolean | undefined;
6899
6651
  root?: string | undefined;
@@ -6908,8 +6660,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6908
6660
  pages: any[];
6909
6661
  }, {
6910
6662
  pages: any[];
6911
- }>]>, z.ZodOptional<z.ZodObject<{
6912
- global: z.ZodObject<{
6663
+ }>]>, z.ZodObject<{
6664
+ global: z.ZodOptional<z.ZodObject<{
6913
6665
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6914
6666
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
6915
6667
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -6919,19 +6671,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6919
6671
  }, {
6920
6672
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6921
6673
  hidden?: boolean | undefined;
6922
- }>, z.ZodUnion<[z.ZodObject<{
6923
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
6924
- }, "strip", z.ZodTypeAny, {
6925
- openapi: (string | string[]) & (string | string[] | undefined);
6926
- }, {
6927
- openapi: (string | string[]) & (string | string[] | undefined);
6928
6674
  }>, z.ZodObject<{
6929
6675
  href: z.ZodString;
6930
6676
  }, "strip", z.ZodTypeAny, {
6931
6677
  href: string;
6932
6678
  }, {
6933
6679
  href: string;
6934
- }>]>>, "many">>;
6680
+ }>>, "many">>;
6935
6681
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6936
6682
  version: z.ZodString;
6937
6683
  hidden: z.ZodOptional<z.ZodBoolean>;
@@ -6941,110 +6687,92 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6941
6687
  }, {
6942
6688
  version: string;
6943
6689
  hidden?: boolean | undefined;
6944
- }>, z.ZodUnion<[z.ZodObject<{
6945
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
6946
- }, "strip", z.ZodTypeAny, {
6947
- openapi: (string | string[]) & (string | string[] | undefined);
6948
- }, {
6949
- openapi: (string | string[]) & (string | string[] | undefined);
6950
6690
  }>, z.ZodObject<{
6951
6691
  href: z.ZodString;
6952
6692
  }, "strip", z.ZodTypeAny, {
6953
6693
  href: string;
6954
6694
  }, {
6955
6695
  href: string;
6956
- }>]>>, "many">>;
6696
+ }>>, "many">>;
6957
6697
  tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6958
6698
  tab: z.ZodString;
6959
6699
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6960
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
6700
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
6961
6701
  name: z.ZodEffects<z.ZodString, string, string>;
6962
6702
  }, "strip", z.ZodTypeAny, {
6963
6703
  name: string;
6964
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6704
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6965
6705
  }, {
6966
6706
  name: string;
6967
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6707
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6968
6708
  }>]>>;
6969
6709
  hidden: z.ZodOptional<z.ZodBoolean>;
6970
6710
  }, "strip", z.ZodTypeAny, {
6971
6711
  tab: string;
6972
6712
  icon?: string | {
6973
6713
  name: string;
6974
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6714
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6975
6715
  } | undefined;
6976
6716
  hidden?: boolean | undefined;
6977
6717
  }, {
6978
6718
  tab: string;
6979
6719
  icon?: string | {
6980
6720
  name: string;
6981
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6721
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6982
6722
  } | undefined;
6983
6723
  hidden?: boolean | undefined;
6984
- }>, z.ZodUnion<[z.ZodObject<{
6985
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
6986
- }, "strip", z.ZodTypeAny, {
6987
- openapi: (string | string[]) & (string | string[] | undefined);
6988
- }, {
6989
- openapi: (string | string[]) & (string | string[] | undefined);
6990
6724
  }>, z.ZodObject<{
6991
6725
  href: z.ZodString;
6992
6726
  }, "strip", z.ZodTypeAny, {
6993
6727
  href: string;
6994
6728
  }, {
6995
6729
  href: string;
6996
- }>]>>, "many">>;
6730
+ }>>, "many">>;
6997
6731
  dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6998
6732
  dropdown: z.ZodString;
6999
6733
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7000
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
6734
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7001
6735
  name: z.ZodEffects<z.ZodString, string, string>;
7002
6736
  }, "strip", z.ZodTypeAny, {
7003
6737
  name: string;
7004
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6738
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7005
6739
  }, {
7006
6740
  name: string;
7007
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6741
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7008
6742
  }>]>>;
7009
6743
  hidden: z.ZodOptional<z.ZodBoolean>;
7010
6744
  }, "strip", z.ZodTypeAny, {
7011
6745
  dropdown: string;
7012
6746
  icon?: string | {
7013
6747
  name: string;
7014
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6748
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7015
6749
  } | undefined;
7016
6750
  hidden?: boolean | undefined;
7017
6751
  }, {
7018
6752
  dropdown: string;
7019
6753
  icon?: string | {
7020
6754
  name: string;
7021
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6755
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7022
6756
  } | undefined;
7023
6757
  hidden?: boolean | undefined;
7024
- }>, z.ZodUnion<[z.ZodObject<{
7025
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7026
- }, "strip", z.ZodTypeAny, {
7027
- openapi: (string | string[]) & (string | string[] | undefined);
7028
- }, {
7029
- openapi: (string | string[]) & (string | string[] | undefined);
7030
6758
  }>, z.ZodObject<{
7031
6759
  href: z.ZodString;
7032
6760
  }, "strip", z.ZodTypeAny, {
7033
6761
  href: string;
7034
6762
  }, {
7035
6763
  href: string;
7036
- }>]>>, "many">>;
6764
+ }>>, "many">>;
7037
6765
  anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
7038
6766
  anchor: z.ZodString;
7039
6767
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7040
- style: z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>;
6768
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7041
6769
  name: z.ZodEffects<z.ZodString, string, string>;
7042
6770
  }, "strip", z.ZodTypeAny, {
7043
6771
  name: string;
7044
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6772
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7045
6773
  }, {
7046
6774
  name: string;
7047
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6775
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7048
6776
  }>]>>;
7049
6777
  color: z.ZodOptional<z.ZodObject<{
7050
6778
  light: z.ZodString;
@@ -7061,7 +6789,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7061
6789
  anchor: string;
7062
6790
  icon?: string | {
7063
6791
  name: string;
7064
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6792
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7065
6793
  } | undefined;
7066
6794
  color?: {
7067
6795
  light: string;
@@ -7072,260 +6800,214 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7072
6800
  anchor: string;
7073
6801
  icon?: string | {
7074
6802
  name: string;
7075
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6803
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7076
6804
  } | undefined;
7077
6805
  color?: {
7078
6806
  light: string;
7079
6807
  dark: string;
7080
6808
  } | undefined;
7081
6809
  hidden?: boolean | undefined;
7082
- }>, z.ZodUnion<[z.ZodObject<{
7083
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
7084
- }, "strip", z.ZodTypeAny, {
7085
- openapi: (string | string[]) & (string | string[] | undefined);
7086
- }, {
7087
- openapi: (string | string[]) & (string | string[] | undefined);
7088
6810
  }>, z.ZodObject<{
7089
6811
  href: z.ZodString;
7090
6812
  }, "strip", z.ZodTypeAny, {
7091
6813
  href: string;
7092
6814
  }, {
7093
6815
  href: string;
7094
- }>]>>, "many">>;
6816
+ }>>, "many">>;
7095
6817
  }, "strict", z.ZodTypeAny, {
7096
6818
  languages?: ({
7097
6819
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7098
6820
  hidden?: boolean | undefined;
7099
- } & ({
7100
- openapi: (string | string[]) & (string | string[] | undefined);
7101
- } | {
6821
+ } & {
7102
6822
  href: string;
7103
- }))[] | undefined;
6823
+ })[] | undefined;
7104
6824
  versions?: ({
7105
6825
  version: string;
7106
6826
  hidden?: boolean | undefined;
7107
- } & ({
7108
- openapi: (string | string[]) & (string | string[] | undefined);
7109
- } | {
6827
+ } & {
7110
6828
  href: string;
7111
- }))[] | undefined;
6829
+ })[] | undefined;
7112
6830
  tabs?: ({
7113
6831
  tab: string;
7114
6832
  icon?: string | {
7115
6833
  name: string;
7116
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6834
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7117
6835
  } | undefined;
7118
6836
  hidden?: boolean | undefined;
7119
- } & ({
7120
- openapi: (string | string[]) & (string | string[] | undefined);
7121
- } | {
6837
+ } & {
7122
6838
  href: string;
7123
- }))[] | undefined;
6839
+ })[] | undefined;
7124
6840
  dropdowns?: ({
7125
6841
  dropdown: string;
7126
6842
  icon?: string | {
7127
6843
  name: string;
7128
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6844
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7129
6845
  } | undefined;
7130
6846
  hidden?: boolean | undefined;
7131
- } & ({
7132
- openapi: (string | string[]) & (string | string[] | undefined);
7133
- } | {
6847
+ } & {
7134
6848
  href: string;
7135
- }))[] | undefined;
6849
+ })[] | undefined;
7136
6850
  anchors?: ({
7137
6851
  anchor: string;
7138
6852
  icon?: string | {
7139
6853
  name: string;
7140
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6854
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7141
6855
  } | undefined;
7142
6856
  color?: {
7143
6857
  light: string;
7144
6858
  dark: string;
7145
6859
  } | undefined;
7146
6860
  hidden?: boolean | undefined;
7147
- } & ({
7148
- openapi: (string | string[]) & (string | string[] | undefined);
7149
- } | {
6861
+ } & {
7150
6862
  href: string;
7151
- }))[] | undefined;
6863
+ })[] | undefined;
7152
6864
  }, {
7153
6865
  languages?: ({
7154
6866
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7155
6867
  hidden?: boolean | undefined;
7156
- } & ({
7157
- openapi: (string | string[]) & (string | string[] | undefined);
7158
- } | {
6868
+ } & {
7159
6869
  href: string;
7160
- }))[] | undefined;
6870
+ })[] | undefined;
7161
6871
  versions?: ({
7162
6872
  version: string;
7163
6873
  hidden?: boolean | undefined;
7164
- } & ({
7165
- openapi: (string | string[]) & (string | string[] | undefined);
7166
- } | {
6874
+ } & {
7167
6875
  href: string;
7168
- }))[] | undefined;
6876
+ })[] | undefined;
7169
6877
  tabs?: ({
7170
6878
  tab: string;
7171
6879
  icon?: string | {
7172
6880
  name: string;
7173
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6881
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7174
6882
  } | undefined;
7175
6883
  hidden?: boolean | undefined;
7176
- } & ({
7177
- openapi: (string | string[]) & (string | string[] | undefined);
7178
- } | {
6884
+ } & {
7179
6885
  href: string;
7180
- }))[] | undefined;
6886
+ })[] | undefined;
7181
6887
  dropdowns?: ({
7182
6888
  dropdown: string;
7183
6889
  icon?: string | {
7184
6890
  name: string;
7185
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6891
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7186
6892
  } | undefined;
7187
6893
  hidden?: boolean | undefined;
7188
- } & ({
7189
- openapi: (string | string[]) & (string | string[] | undefined);
7190
- } | {
6894
+ } & {
7191
6895
  href: string;
7192
- }))[] | undefined;
6896
+ })[] | undefined;
7193
6897
  anchors?: ({
7194
6898
  anchor: string;
7195
6899
  icon?: string | {
7196
6900
  name: string;
7197
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6901
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7198
6902
  } | undefined;
7199
6903
  color?: {
7200
6904
  light: string;
7201
6905
  dark: string;
7202
6906
  } | undefined;
7203
6907
  hidden?: boolean | undefined;
7204
- } & ({
7205
- openapi: (string | string[]) & (string | string[] | undefined);
7206
- } | {
6908
+ } & {
7207
6909
  href: string;
7208
- }))[] | undefined;
7209
- }>;
6910
+ })[] | undefined;
6911
+ }>>;
7210
6912
  }, "strip", z.ZodTypeAny, {
7211
- global: {
6913
+ global?: {
7212
6914
  languages?: ({
7213
6915
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7214
6916
  hidden?: boolean | undefined;
7215
- } & ({
7216
- openapi: (string | string[]) & (string | string[] | undefined);
7217
- } | {
6917
+ } & {
7218
6918
  href: string;
7219
- }))[] | undefined;
6919
+ })[] | undefined;
7220
6920
  versions?: ({
7221
6921
  version: string;
7222
6922
  hidden?: boolean | undefined;
7223
- } & ({
7224
- openapi: (string | string[]) & (string | string[] | undefined);
7225
- } | {
6923
+ } & {
7226
6924
  href: string;
7227
- }))[] | undefined;
6925
+ })[] | undefined;
7228
6926
  tabs?: ({
7229
6927
  tab: string;
7230
6928
  icon?: string | {
7231
6929
  name: string;
7232
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6930
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7233
6931
  } | undefined;
7234
6932
  hidden?: boolean | undefined;
7235
- } & ({
7236
- openapi: (string | string[]) & (string | string[] | undefined);
7237
- } | {
6933
+ } & {
7238
6934
  href: string;
7239
- }))[] | undefined;
6935
+ })[] | undefined;
7240
6936
  dropdowns?: ({
7241
6937
  dropdown: string;
7242
6938
  icon?: string | {
7243
6939
  name: string;
7244
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6940
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7245
6941
  } | undefined;
7246
6942
  hidden?: boolean | undefined;
7247
- } & ({
7248
- openapi: (string | string[]) & (string | string[] | undefined);
7249
- } | {
6943
+ } & {
7250
6944
  href: string;
7251
- }))[] | undefined;
6945
+ })[] | undefined;
7252
6946
  anchors?: ({
7253
6947
  anchor: string;
7254
6948
  icon?: string | {
7255
6949
  name: string;
7256
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6950
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7257
6951
  } | undefined;
7258
6952
  color?: {
7259
6953
  light: string;
7260
6954
  dark: string;
7261
6955
  } | undefined;
7262
6956
  hidden?: boolean | undefined;
7263
- } & ({
7264
- openapi: (string | string[]) & (string | string[] | undefined);
7265
- } | {
6957
+ } & {
7266
6958
  href: string;
7267
- }))[] | undefined;
7268
- };
6959
+ })[] | undefined;
6960
+ } | undefined;
7269
6961
  }, {
7270
- global: {
6962
+ global?: {
7271
6963
  languages?: ({
7272
6964
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7273
6965
  hidden?: boolean | undefined;
7274
- } & ({
7275
- openapi: (string | string[]) & (string | string[] | undefined);
7276
- } | {
6966
+ } & {
7277
6967
  href: string;
7278
- }))[] | undefined;
6968
+ })[] | undefined;
7279
6969
  versions?: ({
7280
6970
  version: string;
7281
6971
  hidden?: boolean | undefined;
7282
- } & ({
7283
- openapi: (string | string[]) & (string | string[] | undefined);
7284
- } | {
6972
+ } & {
7285
6973
  href: string;
7286
- }))[] | undefined;
6974
+ })[] | undefined;
7287
6975
  tabs?: ({
7288
6976
  tab: string;
7289
6977
  icon?: string | {
7290
6978
  name: string;
7291
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6979
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7292
6980
  } | undefined;
7293
6981
  hidden?: boolean | undefined;
7294
- } & ({
7295
- openapi: (string | string[]) & (string | string[] | undefined);
7296
- } | {
6982
+ } & {
7297
6983
  href: string;
7298
- }))[] | undefined;
6984
+ })[] | undefined;
7299
6985
  dropdowns?: ({
7300
6986
  dropdown: string;
7301
6987
  icon?: string | {
7302
6988
  name: string;
7303
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6989
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7304
6990
  } | undefined;
7305
6991
  hidden?: boolean | undefined;
7306
- } & ({
7307
- openapi: (string | string[]) & (string | string[] | undefined);
7308
- } | {
6992
+ } & {
7309
6993
  href: string;
7310
- }))[] | undefined;
6994
+ })[] | undefined;
7311
6995
  anchors?: ({
7312
6996
  anchor: string;
7313
6997
  icon?: string | {
7314
6998
  name: string;
7315
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
6999
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7316
7000
  } | undefined;
7317
7001
  color?: {
7318
7002
  light: string;
7319
7003
  dark: string;
7320
7004
  } | undefined;
7321
7005
  hidden?: boolean | undefined;
7322
- } & ({
7323
- openapi: (string | string[]) & (string | string[] | undefined);
7324
- } | {
7006
+ } & {
7325
7007
  href: string;
7326
- }))[] | undefined;
7327
- };
7328
- }>>>;
7008
+ })[] | undefined;
7009
+ } | undefined;
7010
+ }>>;
7329
7011
  footer: z.ZodOptional<z.ZodObject<{
7330
7012
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
7331
7013
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7381,7 +7063,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7381
7063
  }>>;
7382
7064
  seo: z.ZodOptional<z.ZodObject<{
7383
7065
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
7384
- indexing: z.ZodDefault<z.ZodEnum<["navigable", "all"]>>;
7066
+ indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
7385
7067
  }, "strip", z.ZodTypeAny, {
7386
7068
  indexing: "all" | "navigable";
7387
7069
  metatags?: Record<string, string> | undefined;
@@ -7806,7 +7488,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7806
7488
  group: string;
7807
7489
  icon?: string | {
7808
7490
  name: string;
7809
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7491
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7810
7492
  } | undefined;
7811
7493
  hidden?: boolean | undefined;
7812
7494
  root?: string | undefined;
@@ -7831,7 +7513,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7831
7513
  group: string;
7832
7514
  icon?: string | {
7833
7515
  name: string;
7834
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7516
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7835
7517
  } | undefined;
7836
7518
  hidden?: boolean | undefined;
7837
7519
  root?: string | undefined;
@@ -7842,66 +7524,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7842
7524
  }))[];
7843
7525
  } | {
7844
7526
  pages: any[];
7845
- }) & ({
7846
- global: {
7527
+ }) & {
7528
+ global?: {
7847
7529
  languages?: ({
7848
7530
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7849
7531
  hidden?: boolean | undefined;
7850
- } & ({
7851
- openapi: (string | string[]) & (string | string[] | undefined);
7852
- } | {
7532
+ } & {
7853
7533
  href: string;
7854
- }))[] | undefined;
7534
+ })[] | undefined;
7855
7535
  versions?: ({
7856
7536
  version: string;
7857
7537
  hidden?: boolean | undefined;
7858
- } & ({
7859
- openapi: (string | string[]) & (string | string[] | undefined);
7860
- } | {
7538
+ } & {
7861
7539
  href: string;
7862
- }))[] | undefined;
7540
+ })[] | undefined;
7863
7541
  tabs?: ({
7864
7542
  tab: string;
7865
7543
  icon?: string | {
7866
7544
  name: string;
7867
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7545
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7868
7546
  } | undefined;
7869
7547
  hidden?: boolean | undefined;
7870
- } & ({
7871
- openapi: (string | string[]) & (string | string[] | undefined);
7872
- } | {
7548
+ } & {
7873
7549
  href: string;
7874
- }))[] | undefined;
7550
+ })[] | undefined;
7875
7551
  dropdowns?: ({
7876
7552
  dropdown: string;
7877
7553
  icon?: string | {
7878
7554
  name: string;
7879
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7555
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7880
7556
  } | undefined;
7881
7557
  hidden?: boolean | undefined;
7882
- } & ({
7883
- openapi: (string | string[]) & (string | string[] | undefined);
7884
- } | {
7558
+ } & {
7885
7559
  href: string;
7886
- }))[] | undefined;
7560
+ })[] | undefined;
7887
7561
  anchors?: ({
7888
7562
  anchor: string;
7889
7563
  icon?: string | {
7890
7564
  name: string;
7891
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7565
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7892
7566
  } | undefined;
7893
7567
  color?: {
7894
7568
  light: string;
7895
7569
  dark: string;
7896
7570
  } | undefined;
7897
7571
  hidden?: boolean | undefined;
7898
- } & ({
7899
- openapi: (string | string[]) & (string | string[] | undefined);
7900
- } | {
7572
+ } & {
7901
7573
  href: string;
7902
- }))[] | undefined;
7903
- };
7904
- } | undefined)) & ((({
7574
+ })[] | undefined;
7575
+ } | undefined;
7576
+ }) & ((({
7905
7577
  languages: ({
7906
7578
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7907
7579
  hidden?: boolean | undefined;
@@ -7922,7 +7594,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7922
7594
  group: string;
7923
7595
  icon?: string | {
7924
7596
  name: string;
7925
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7597
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7926
7598
  } | undefined;
7927
7599
  hidden?: boolean | undefined;
7928
7600
  root?: string | undefined;
@@ -7947,7 +7619,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7947
7619
  group: string;
7948
7620
  icon?: string | {
7949
7621
  name: string;
7950
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7622
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7951
7623
  } | undefined;
7952
7624
  hidden?: boolean | undefined;
7953
7625
  root?: string | undefined;
@@ -7958,66 +7630,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7958
7630
  }))[];
7959
7631
  } | {
7960
7632
  pages: any[];
7961
- }) & ({
7962
- global: {
7633
+ }) & {
7634
+ global?: {
7963
7635
  languages?: ({
7964
7636
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7965
7637
  hidden?: boolean | undefined;
7966
- } & ({
7967
- openapi: (string | string[]) & (string | string[] | undefined);
7968
- } | {
7638
+ } & {
7969
7639
  href: string;
7970
- }))[] | undefined;
7640
+ })[] | undefined;
7971
7641
  versions?: ({
7972
7642
  version: string;
7973
7643
  hidden?: boolean | undefined;
7974
- } & ({
7975
- openapi: (string | string[]) & (string | string[] | undefined);
7976
- } | {
7644
+ } & {
7977
7645
  href: string;
7978
- }))[] | undefined;
7646
+ })[] | undefined;
7979
7647
  tabs?: ({
7980
7648
  tab: string;
7981
7649
  icon?: string | {
7982
7650
  name: string;
7983
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7651
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7984
7652
  } | undefined;
7985
7653
  hidden?: boolean | undefined;
7986
- } & ({
7987
- openapi: (string | string[]) & (string | string[] | undefined);
7988
- } | {
7654
+ } & {
7989
7655
  href: string;
7990
- }))[] | undefined;
7656
+ })[] | undefined;
7991
7657
  dropdowns?: ({
7992
7658
  dropdown: string;
7993
7659
  icon?: string | {
7994
7660
  name: string;
7995
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7661
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7996
7662
  } | undefined;
7997
7663
  hidden?: boolean | undefined;
7998
- } & ({
7999
- openapi: (string | string[]) & (string | string[] | undefined);
8000
- } | {
7664
+ } & {
8001
7665
  href: string;
8002
- }))[] | undefined;
7666
+ })[] | undefined;
8003
7667
  anchors?: ({
8004
7668
  anchor: string;
8005
7669
  icon?: string | {
8006
7670
  name: string;
8007
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7671
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8008
7672
  } | undefined;
8009
7673
  color?: {
8010
7674
  light: string;
8011
7675
  dark: string;
8012
7676
  } | undefined;
8013
7677
  hidden?: boolean | undefined;
8014
- } & ({
8015
- openapi: (string | string[]) & (string | string[] | undefined);
8016
- } | {
7678
+ } & {
8017
7679
  href: string;
8018
- }))[] | undefined;
8019
- };
8020
- } | undefined)) | undefined);
7680
+ })[] | undefined;
7681
+ } | undefined;
7682
+ }) | undefined);
8021
7683
  description?: string | undefined;
8022
7684
  logo?: string | {
8023
7685
  light: string;
@@ -8038,6 +7700,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8038
7700
  languages?: string[] | undefined;
8039
7701
  } | undefined;
8040
7702
  } | undefined;
7703
+ feedback?: {
7704
+ thumbs?: boolean | undefined;
7705
+ edits?: boolean | undefined;
7706
+ issues?: boolean | undefined;
7707
+ } | undefined;
8041
7708
  appearance?: {
8042
7709
  strict: boolean;
8043
7710
  default: "light" | "dark" | "system";
@@ -8201,7 +7868,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8201
7868
  group: string;
8202
7869
  icon?: string | {
8203
7870
  name: string;
8204
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7871
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8205
7872
  } | undefined;
8206
7873
  hidden?: boolean | undefined;
8207
7874
  root?: string | undefined;
@@ -8226,7 +7893,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8226
7893
  group: string;
8227
7894
  icon?: string | {
8228
7895
  name: string;
8229
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7896
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8230
7897
  } | undefined;
8231
7898
  hidden?: boolean | undefined;
8232
7899
  root?: string | undefined;
@@ -8237,66 +7904,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8237
7904
  }))[];
8238
7905
  } | {
8239
7906
  pages: any[];
8240
- }) & ({
8241
- global: {
7907
+ }) & {
7908
+ global?: {
8242
7909
  languages?: ({
8243
7910
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8244
7911
  hidden?: boolean | undefined;
8245
- } & ({
8246
- openapi: (string | string[]) & (string | string[] | undefined);
8247
- } | {
7912
+ } & {
8248
7913
  href: string;
8249
- }))[] | undefined;
7914
+ })[] | undefined;
8250
7915
  versions?: ({
8251
7916
  version: string;
8252
7917
  hidden?: boolean | undefined;
8253
- } & ({
8254
- openapi: (string | string[]) & (string | string[] | undefined);
8255
- } | {
7918
+ } & {
8256
7919
  href: string;
8257
- }))[] | undefined;
7920
+ })[] | undefined;
8258
7921
  tabs?: ({
8259
7922
  tab: string;
8260
7923
  icon?: string | {
8261
7924
  name: string;
8262
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7925
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8263
7926
  } | undefined;
8264
7927
  hidden?: boolean | undefined;
8265
- } & ({
8266
- openapi: (string | string[]) & (string | string[] | undefined);
8267
- } | {
7928
+ } & {
8268
7929
  href: string;
8269
- }))[] | undefined;
7930
+ })[] | undefined;
8270
7931
  dropdowns?: ({
8271
7932
  dropdown: string;
8272
7933
  icon?: string | {
8273
7934
  name: string;
8274
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7935
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8275
7936
  } | undefined;
8276
7937
  hidden?: boolean | undefined;
8277
- } & ({
8278
- openapi: (string | string[]) & (string | string[] | undefined);
8279
- } | {
7938
+ } & {
8280
7939
  href: string;
8281
- }))[] | undefined;
7940
+ })[] | undefined;
8282
7941
  anchors?: ({
8283
7942
  anchor: string;
8284
7943
  icon?: string | {
8285
7944
  name: string;
8286
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7945
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8287
7946
  } | undefined;
8288
7947
  color?: {
8289
7948
  light: string;
8290
7949
  dark: string;
8291
7950
  } | undefined;
8292
7951
  hidden?: boolean | undefined;
8293
- } & ({
8294
- openapi: (string | string[]) & (string | string[] | undefined);
8295
- } | {
7952
+ } & {
8296
7953
  href: string;
8297
- }))[] | undefined;
8298
- };
8299
- } | undefined)) & ((({
7954
+ })[] | undefined;
7955
+ } | undefined;
7956
+ }) & ((({
8300
7957
  languages: ({
8301
7958
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8302
7959
  hidden?: boolean | undefined;
@@ -8317,7 +7974,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8317
7974
  group: string;
8318
7975
  icon?: string | {
8319
7976
  name: string;
8320
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
7977
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8321
7978
  } | undefined;
8322
7979
  hidden?: boolean | undefined;
8323
7980
  root?: string | undefined;
@@ -8342,7 +7999,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8342
7999
  group: string;
8343
8000
  icon?: string | {
8344
8001
  name: string;
8345
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8002
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8346
8003
  } | undefined;
8347
8004
  hidden?: boolean | undefined;
8348
8005
  root?: string | undefined;
@@ -8353,66 +8010,56 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8353
8010
  }))[];
8354
8011
  } | {
8355
8012
  pages: any[];
8356
- }) & ({
8357
- global: {
8013
+ }) & {
8014
+ global?: {
8358
8015
  languages?: ({
8359
8016
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8360
8017
  hidden?: boolean | undefined;
8361
- } & ({
8362
- openapi: (string | string[]) & (string | string[] | undefined);
8363
- } | {
8018
+ } & {
8364
8019
  href: string;
8365
- }))[] | undefined;
8020
+ })[] | undefined;
8366
8021
  versions?: ({
8367
8022
  version: string;
8368
8023
  hidden?: boolean | undefined;
8369
- } & ({
8370
- openapi: (string | string[]) & (string | string[] | undefined);
8371
- } | {
8024
+ } & {
8372
8025
  href: string;
8373
- }))[] | undefined;
8026
+ })[] | undefined;
8374
8027
  tabs?: ({
8375
8028
  tab: string;
8376
8029
  icon?: string | {
8377
8030
  name: string;
8378
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8031
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8379
8032
  } | undefined;
8380
8033
  hidden?: boolean | undefined;
8381
- } & ({
8382
- openapi: (string | string[]) & (string | string[] | undefined);
8383
- } | {
8034
+ } & {
8384
8035
  href: string;
8385
- }))[] | undefined;
8036
+ })[] | undefined;
8386
8037
  dropdowns?: ({
8387
8038
  dropdown: string;
8388
8039
  icon?: string | {
8389
8040
  name: string;
8390
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8041
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8391
8042
  } | undefined;
8392
8043
  hidden?: boolean | undefined;
8393
- } & ({
8394
- openapi: (string | string[]) & (string | string[] | undefined);
8395
- } | {
8044
+ } & {
8396
8045
  href: string;
8397
- }))[] | undefined;
8046
+ })[] | undefined;
8398
8047
  anchors?: ({
8399
8048
  anchor: string;
8400
8049
  icon?: string | {
8401
8050
  name: string;
8402
- style: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin";
8051
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8403
8052
  } | undefined;
8404
8053
  color?: {
8405
8054
  light: string;
8406
8055
  dark: string;
8407
8056
  } | undefined;
8408
8057
  hidden?: boolean | undefined;
8409
- } & ({
8410
- openapi: (string | string[]) & (string | string[] | undefined);
8411
- } | {
8058
+ } & {
8412
8059
  href: string;
8413
- }))[] | undefined;
8414
- };
8415
- } | undefined)) | undefined);
8060
+ })[] | undefined;
8061
+ } | undefined;
8062
+ }) | undefined);
8416
8063
  $schema?: string | undefined;
8417
8064
  description?: string | undefined;
8418
8065
  logo?: string | {
@@ -8434,6 +8081,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8434
8081
  languages?: string[] | undefined;
8435
8082
  } | undefined;
8436
8083
  } | undefined;
8084
+ feedback?: {
8085
+ thumbs?: boolean | undefined;
8086
+ edits?: boolean | undefined;
8087
+ issues?: boolean | undefined;
8088
+ } | undefined;
8437
8089
  appearance?: {
8438
8090
  default?: "light" | "dark" | "system" | undefined;
8439
8091
  strict?: boolean | undefined;