@mintlify/validation 0.1.371 → 0.1.372

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.
@@ -10495,4 +10495,1753 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10495
10495
  contextual?: {
10496
10496
  options: ("copy" | "view" | "chatgpt" | "claude")[];
10497
10497
  } | undefined;
10498
+ }>, z.ZodObject<{
10499
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10500
+ name: z.ZodString;
10501
+ description: z.ZodOptional<z.ZodString>;
10502
+ colors: z.ZodObject<{
10503
+ primary: z.ZodString;
10504
+ light: z.ZodOptional<z.ZodString>;
10505
+ dark: z.ZodOptional<z.ZodString>;
10506
+ }, "strict", z.ZodTypeAny, {
10507
+ primary: string;
10508
+ light?: string | undefined;
10509
+ dark?: string | undefined;
10510
+ }, {
10511
+ primary: string;
10512
+ light?: string | undefined;
10513
+ dark?: string | undefined;
10514
+ }>;
10515
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
10516
+ light: z.ZodString;
10517
+ dark: z.ZodString;
10518
+ href: z.ZodOptional<z.ZodString>;
10519
+ }, "strip", z.ZodTypeAny, {
10520
+ light: string;
10521
+ dark: string;
10522
+ href?: string | undefined;
10523
+ }, {
10524
+ light: string;
10525
+ dark: string;
10526
+ href?: string | undefined;
10527
+ }>]>>;
10528
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
10529
+ light: z.ZodString;
10530
+ dark: z.ZodString;
10531
+ }, "strip", z.ZodTypeAny, {
10532
+ light: string;
10533
+ dark: string;
10534
+ }, {
10535
+ light: string;
10536
+ dark: string;
10537
+ }>]>>;
10538
+ api: z.ZodOptional<z.ZodObject<{
10539
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
10540
+ source: z.ZodEffects<z.ZodString, string, string>;
10541
+ directory: z.ZodOptional<z.ZodString>;
10542
+ }, "strict", z.ZodTypeAny, {
10543
+ source: string;
10544
+ directory?: string | undefined;
10545
+ }, {
10546
+ source: string;
10547
+ directory?: string | undefined;
10548
+ }>]>>;
10549
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
10550
+ source: z.ZodEffects<z.ZodString, string, string>;
10551
+ directory: z.ZodOptional<z.ZodString>;
10552
+ }, "strict", z.ZodTypeAny, {
10553
+ source: string;
10554
+ directory?: string | undefined;
10555
+ }, {
10556
+ source: string;
10557
+ directory?: string | undefined;
10558
+ }>]>>;
10559
+ params: z.ZodOptional<z.ZodObject<{
10560
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
10561
+ }, "strip", z.ZodTypeAny, {
10562
+ expanded?: "all" | "closed" | undefined;
10563
+ }, {
10564
+ expanded?: "all" | "closed" | undefined;
10565
+ }>>;
10566
+ playground: z.ZodOptional<z.ZodObject<{
10567
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
10568
+ proxy: z.ZodOptional<z.ZodBoolean>;
10569
+ }, "strip", z.ZodTypeAny, {
10570
+ display?: "simple" | "none" | "interactive" | undefined;
10571
+ proxy?: boolean | undefined;
10572
+ }, {
10573
+ display?: "simple" | "none" | "interactive" | undefined;
10574
+ proxy?: boolean | undefined;
10575
+ }>>;
10576
+ examples: z.ZodOptional<z.ZodObject<{
10577
+ defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
10578
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10579
+ }, "strip", z.ZodTypeAny, {
10580
+ defaults?: "all" | "required" | undefined;
10581
+ languages?: string[] | undefined;
10582
+ }, {
10583
+ defaults?: "all" | "required" | undefined;
10584
+ languages?: string[] | undefined;
10585
+ }>>;
10586
+ mdx: z.ZodOptional<z.ZodObject<{
10587
+ auth: z.ZodOptional<z.ZodObject<{
10588
+ method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
10589
+ name: z.ZodOptional<z.ZodString>;
10590
+ }, "strip", z.ZodTypeAny, {
10591
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10592
+ name?: string | undefined;
10593
+ }, {
10594
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10595
+ name?: string | undefined;
10596
+ }>>;
10597
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
10598
+ }, "strip", z.ZodTypeAny, {
10599
+ auth?: {
10600
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10601
+ name?: string | undefined;
10602
+ } | undefined;
10603
+ server?: string | string[] | undefined;
10604
+ }, {
10605
+ auth?: {
10606
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10607
+ name?: string | undefined;
10608
+ } | undefined;
10609
+ server?: string | string[] | undefined;
10610
+ }>>;
10611
+ }, "strip", z.ZodTypeAny, {
10612
+ openapi?: string | string[] | {
10613
+ source: string;
10614
+ directory?: string | undefined;
10615
+ } | undefined;
10616
+ asyncapi?: string | string[] | {
10617
+ source: string;
10618
+ directory?: string | undefined;
10619
+ } | undefined;
10620
+ params?: {
10621
+ expanded?: "all" | "closed" | undefined;
10622
+ } | undefined;
10623
+ playground?: {
10624
+ display?: "simple" | "none" | "interactive" | undefined;
10625
+ proxy?: boolean | undefined;
10626
+ } | undefined;
10627
+ examples?: {
10628
+ defaults?: "all" | "required" | undefined;
10629
+ languages?: string[] | undefined;
10630
+ } | undefined;
10631
+ mdx?: {
10632
+ auth?: {
10633
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10634
+ name?: string | undefined;
10635
+ } | undefined;
10636
+ server?: string | string[] | undefined;
10637
+ } | undefined;
10638
+ }, {
10639
+ openapi?: string | string[] | {
10640
+ source: string;
10641
+ directory?: string | undefined;
10642
+ } | undefined;
10643
+ asyncapi?: string | string[] | {
10644
+ source: string;
10645
+ directory?: string | undefined;
10646
+ } | undefined;
10647
+ params?: {
10648
+ expanded?: "all" | "closed" | undefined;
10649
+ } | undefined;
10650
+ playground?: {
10651
+ display?: "simple" | "none" | "interactive" | undefined;
10652
+ proxy?: boolean | undefined;
10653
+ } | undefined;
10654
+ examples?: {
10655
+ defaults?: "all" | "required" | undefined;
10656
+ languages?: string[] | undefined;
10657
+ } | undefined;
10658
+ mdx?: {
10659
+ auth?: {
10660
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
10661
+ name?: string | undefined;
10662
+ } | undefined;
10663
+ server?: string | string[] | undefined;
10664
+ } | undefined;
10665
+ }>>;
10666
+ appearance: z.ZodOptional<z.ZodObject<{
10667
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
10668
+ strict: z.ZodOptional<z.ZodBoolean>;
10669
+ }, "strip", z.ZodTypeAny, {
10670
+ default?: "light" | "dark" | "system" | undefined;
10671
+ strict?: boolean | undefined;
10672
+ }, {
10673
+ default?: "light" | "dark" | "system" | undefined;
10674
+ strict?: boolean | undefined;
10675
+ }>>;
10676
+ background: z.ZodOptional<z.ZodObject<{
10677
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
10678
+ light: z.ZodString;
10679
+ dark: z.ZodString;
10680
+ }, "strip", z.ZodTypeAny, {
10681
+ light: string;
10682
+ dark: string;
10683
+ }, {
10684
+ light: string;
10685
+ dark: string;
10686
+ }>]>>;
10687
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
10688
+ color: z.ZodOptional<z.ZodObject<{
10689
+ light: z.ZodOptional<z.ZodString>;
10690
+ dark: z.ZodOptional<z.ZodString>;
10691
+ }, "strict", z.ZodTypeAny, {
10692
+ light?: string | undefined;
10693
+ dark?: string | undefined;
10694
+ }, {
10695
+ light?: string | undefined;
10696
+ dark?: string | undefined;
10697
+ }>>;
10698
+ }, "strip", z.ZodTypeAny, {
10699
+ image?: string | {
10700
+ light: string;
10701
+ dark: string;
10702
+ } | undefined;
10703
+ decoration?: "gradient" | "grid" | "windows" | undefined;
10704
+ color?: {
10705
+ light?: string | undefined;
10706
+ dark?: string | undefined;
10707
+ } | undefined;
10708
+ }, {
10709
+ image?: string | {
10710
+ light: string;
10711
+ dark: string;
10712
+ } | undefined;
10713
+ decoration?: "gradient" | "grid" | "windows" | undefined;
10714
+ color?: {
10715
+ light?: string | undefined;
10716
+ dark?: string | undefined;
10717
+ } | undefined;
10718
+ }>>;
10719
+ navbar: z.ZodOptional<z.ZodObject<{
10720
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
10721
+ label: z.ZodString;
10722
+ href: z.ZodString;
10723
+ }, "strip", z.ZodTypeAny, {
10724
+ href: string;
10725
+ label: string;
10726
+ }, {
10727
+ href: string;
10728
+ label: string;
10729
+ }>, "many">>;
10730
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10731
+ type: z.ZodLiteral<"button">;
10732
+ label: z.ZodString;
10733
+ href: z.ZodString;
10734
+ }, "strip", z.ZodTypeAny, {
10735
+ type: "button";
10736
+ href: string;
10737
+ label: string;
10738
+ }, {
10739
+ type: "button";
10740
+ href: string;
10741
+ label: string;
10742
+ }>, z.ZodObject<{
10743
+ type: z.ZodLiteral<"github">;
10744
+ href: z.ZodString;
10745
+ }, "strip", z.ZodTypeAny, {
10746
+ type: "github";
10747
+ href: string;
10748
+ }, {
10749
+ type: "github";
10750
+ href: string;
10751
+ }>]>>;
10752
+ }, "strip", z.ZodTypeAny, {
10753
+ links?: {
10754
+ href: string;
10755
+ label: string;
10756
+ }[] | undefined;
10757
+ primary?: {
10758
+ type: "button";
10759
+ href: string;
10760
+ label: string;
10761
+ } | {
10762
+ type: "github";
10763
+ href: string;
10764
+ } | undefined;
10765
+ }, {
10766
+ links?: {
10767
+ href: string;
10768
+ label: string;
10769
+ }[] | undefined;
10770
+ primary?: {
10771
+ type: "button";
10772
+ href: string;
10773
+ label: string;
10774
+ } | {
10775
+ type: "github";
10776
+ href: string;
10777
+ } | undefined;
10778
+ }>>;
10779
+ navigation: z.ZodUnion<[z.ZodObject<{
10780
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10781
+ languages: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
10782
+ }, "strip", z.ZodTypeAny, {
10783
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
10784
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10785
+ }, {
10786
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
10787
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10788
+ }>, z.ZodObject<{
10789
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10790
+ versions: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
10791
+ }, "strip", z.ZodTypeAny, {
10792
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
10793
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10794
+ }, {
10795
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
10796
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10797
+ }>, z.ZodObject<{
10798
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10799
+ tabs: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
10800
+ }, "strip", z.ZodTypeAny, {
10801
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
10802
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10803
+ }, {
10804
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
10805
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10806
+ }>, z.ZodObject<{
10807
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10808
+ dropdowns: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
10809
+ }, "strip", z.ZodTypeAny, {
10810
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
10811
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10812
+ }, {
10813
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
10814
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10815
+ }>, z.ZodObject<{
10816
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10817
+ anchors: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
10818
+ }, "strip", z.ZodTypeAny, {
10819
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
10820
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10821
+ }, {
10822
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
10823
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
10824
+ }>, z.ZodObject<{
10825
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
10826
+ groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
10827
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10828
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10829
+ name: z.ZodEffects<z.ZodString, string, string>;
10830
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
10831
+ }, "strip", z.ZodTypeAny, {
10832
+ name: string;
10833
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10834
+ library?: "fontawesome" | "lucide" | undefined;
10835
+ }, {
10836
+ name: string;
10837
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10838
+ library?: "fontawesome" | "lucide" | undefined;
10839
+ }>]>>;
10840
+ group: z.ZodString;
10841
+ hidden: z.ZodOptional<z.ZodBoolean>;
10842
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10843
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
10844
+ source: z.ZodEffects<z.ZodString, string, string>;
10845
+ directory: z.ZodOptional<z.ZodString>;
10846
+ }, "strict", z.ZodTypeAny, {
10847
+ source: string;
10848
+ directory?: string | undefined;
10849
+ }, {
10850
+ source: string;
10851
+ directory?: string | undefined;
10852
+ }>]>;
10853
+ }, "strip", z.ZodTypeAny, {
10854
+ openapi: (string | string[] | {
10855
+ source: string;
10856
+ directory?: string | undefined;
10857
+ }) & (string | string[] | {
10858
+ source: string;
10859
+ directory?: string | undefined;
10860
+ } | undefined);
10861
+ group: string;
10862
+ icon?: string | {
10863
+ name: string;
10864
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10865
+ library?: "fontawesome" | "lucide" | undefined;
10866
+ } | undefined;
10867
+ hidden?: boolean | undefined;
10868
+ root?: string | undefined;
10869
+ }, {
10870
+ openapi: (string | string[] | {
10871
+ source: string;
10872
+ directory?: string | undefined;
10873
+ }) & (string | string[] | {
10874
+ source: string;
10875
+ directory?: string | undefined;
10876
+ } | undefined);
10877
+ group: string;
10878
+ icon?: string | {
10879
+ name: string;
10880
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10881
+ library?: "fontawesome" | "lucide" | undefined;
10882
+ } | undefined;
10883
+ hidden?: boolean | undefined;
10884
+ root?: string | undefined;
10885
+ }>, z.ZodObject<{
10886
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10887
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10888
+ name: z.ZodEffects<z.ZodString, string, string>;
10889
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
10890
+ }, "strip", z.ZodTypeAny, {
10891
+ name: string;
10892
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10893
+ library?: "fontawesome" | "lucide" | undefined;
10894
+ }, {
10895
+ name: string;
10896
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10897
+ library?: "fontawesome" | "lucide" | undefined;
10898
+ }>]>>;
10899
+ group: z.ZodString;
10900
+ hidden: z.ZodOptional<z.ZodBoolean>;
10901
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10902
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
10903
+ source: z.ZodEffects<z.ZodString, string, string>;
10904
+ directory: z.ZodOptional<z.ZodString>;
10905
+ }, "strict", z.ZodTypeAny, {
10906
+ source: string;
10907
+ directory?: string | undefined;
10908
+ }, {
10909
+ source: string;
10910
+ directory?: string | undefined;
10911
+ }>]>;
10912
+ }, "strip", z.ZodTypeAny, {
10913
+ group: string;
10914
+ asyncapi: (string | string[] | {
10915
+ source: string;
10916
+ directory?: string | undefined;
10917
+ }) & (string | string[] | {
10918
+ source: string;
10919
+ directory?: string | undefined;
10920
+ } | undefined);
10921
+ icon?: string | {
10922
+ name: string;
10923
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10924
+ library?: "fontawesome" | "lucide" | undefined;
10925
+ } | undefined;
10926
+ hidden?: boolean | undefined;
10927
+ root?: string | undefined;
10928
+ }, {
10929
+ group: string;
10930
+ asyncapi: (string | string[] | {
10931
+ source: string;
10932
+ directory?: string | undefined;
10933
+ }) & (string | string[] | {
10934
+ source: string;
10935
+ directory?: string | undefined;
10936
+ } | undefined);
10937
+ icon?: string | {
10938
+ name: string;
10939
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10940
+ library?: "fontawesome" | "lucide" | undefined;
10941
+ } | undefined;
10942
+ hidden?: boolean | undefined;
10943
+ root?: string | undefined;
10944
+ }>, z.ZodObject<{
10945
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10946
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10947
+ name: z.ZodEffects<z.ZodString, string, string>;
10948
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
10949
+ }, "strip", z.ZodTypeAny, {
10950
+ name: string;
10951
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10952
+ library?: "fontawesome" | "lucide" | undefined;
10953
+ }, {
10954
+ name: string;
10955
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10956
+ library?: "fontawesome" | "lucide" | undefined;
10957
+ }>]>>;
10958
+ group: z.ZodString;
10959
+ hidden: z.ZodOptional<z.ZodBoolean>;
10960
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
10961
+ pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
10962
+ }, "strip", z.ZodTypeAny, {
10963
+ group: string;
10964
+ pages: any[];
10965
+ icon?: string | {
10966
+ name: string;
10967
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10968
+ library?: "fontawesome" | "lucide" | undefined;
10969
+ } | undefined;
10970
+ hidden?: boolean | undefined;
10971
+ root?: string | undefined;
10972
+ }, {
10973
+ group: string;
10974
+ pages: any[];
10975
+ icon?: string | {
10976
+ name: string;
10977
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10978
+ library?: "fontawesome" | "lucide" | undefined;
10979
+ } | undefined;
10980
+ hidden?: boolean | undefined;
10981
+ root?: string | undefined;
10982
+ }>]>, "many">;
10983
+ }, "strip", z.ZodTypeAny, {
10984
+ groups: ({
10985
+ openapi: (string | string[] | {
10986
+ source: string;
10987
+ directory?: string | undefined;
10988
+ }) & (string | string[] | {
10989
+ source: string;
10990
+ directory?: string | undefined;
10991
+ } | undefined);
10992
+ group: string;
10993
+ icon?: string | {
10994
+ name: string;
10995
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10996
+ library?: "fontawesome" | "lucide" | undefined;
10997
+ } | undefined;
10998
+ hidden?: boolean | undefined;
10999
+ root?: string | undefined;
11000
+ } | {
11001
+ group: string;
11002
+ asyncapi: (string | string[] | {
11003
+ source: string;
11004
+ directory?: string | undefined;
11005
+ }) & (string | string[] | {
11006
+ source: string;
11007
+ directory?: string | undefined;
11008
+ } | undefined);
11009
+ icon?: string | {
11010
+ name: string;
11011
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11012
+ library?: "fontawesome" | "lucide" | undefined;
11013
+ } | undefined;
11014
+ hidden?: boolean | undefined;
11015
+ root?: string | undefined;
11016
+ } | {
11017
+ group: string;
11018
+ pages: any[];
11019
+ icon?: string | {
11020
+ name: string;
11021
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11022
+ library?: "fontawesome" | "lucide" | undefined;
11023
+ } | undefined;
11024
+ hidden?: boolean | undefined;
11025
+ root?: string | undefined;
11026
+ })[];
11027
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11028
+ }, {
11029
+ groups: ({
11030
+ openapi: (string | string[] | {
11031
+ source: string;
11032
+ directory?: string | undefined;
11033
+ }) & (string | string[] | {
11034
+ source: string;
11035
+ directory?: string | undefined;
11036
+ } | undefined);
11037
+ group: string;
11038
+ icon?: string | {
11039
+ name: string;
11040
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11041
+ library?: "fontawesome" | "lucide" | undefined;
11042
+ } | undefined;
11043
+ hidden?: boolean | undefined;
11044
+ root?: string | undefined;
11045
+ } | {
11046
+ group: string;
11047
+ asyncapi: (string | string[] | {
11048
+ source: string;
11049
+ directory?: string | undefined;
11050
+ }) & (string | string[] | {
11051
+ source: string;
11052
+ directory?: string | undefined;
11053
+ } | undefined);
11054
+ icon?: string | {
11055
+ name: string;
11056
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11057
+ library?: "fontawesome" | "lucide" | undefined;
11058
+ } | undefined;
11059
+ hidden?: boolean | undefined;
11060
+ root?: string | undefined;
11061
+ } | {
11062
+ group: string;
11063
+ pages: any[];
11064
+ icon?: string | {
11065
+ name: string;
11066
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11067
+ library?: "fontawesome" | "lucide" | undefined;
11068
+ } | undefined;
11069
+ hidden?: boolean | undefined;
11070
+ root?: string | undefined;
11071
+ })[];
11072
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11073
+ }>, z.ZodObject<{
11074
+ global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
11075
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
11076
+ }, "strip", z.ZodTypeAny, {
11077
+ pages: any[];
11078
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11079
+ }, {
11080
+ pages: any[];
11081
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11082
+ }>]>;
11083
+ footer: z.ZodOptional<z.ZodObject<{
11084
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodString>>;
11085
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
11086
+ header: z.ZodOptional<z.ZodString>;
11087
+ items: z.ZodArray<z.ZodObject<{
11088
+ label: z.ZodString;
11089
+ href: z.ZodString;
11090
+ }, "strip", z.ZodTypeAny, {
11091
+ href: string;
11092
+ label: string;
11093
+ }, {
11094
+ href: string;
11095
+ label: string;
11096
+ }>, "many">;
11097
+ }, "strip", z.ZodTypeAny, {
11098
+ items: {
11099
+ href: string;
11100
+ label: string;
11101
+ }[];
11102
+ header?: string | undefined;
11103
+ }, {
11104
+ items: {
11105
+ href: string;
11106
+ label: string;
11107
+ }[];
11108
+ header?: string | undefined;
11109
+ }>, "many">>;
11110
+ }, "strip", z.ZodTypeAny, {
11111
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
11112
+ links?: {
11113
+ items: {
11114
+ href: string;
11115
+ label: string;
11116
+ }[];
11117
+ header?: string | undefined;
11118
+ }[] | undefined;
11119
+ }, {
11120
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
11121
+ links?: {
11122
+ items: {
11123
+ href: string;
11124
+ label: string;
11125
+ }[];
11126
+ header?: string | undefined;
11127
+ }[] | undefined;
11128
+ }>>;
11129
+ search: z.ZodOptional<z.ZodObject<{
11130
+ prompt: z.ZodOptional<z.ZodString>;
11131
+ }, "strip", z.ZodTypeAny, {
11132
+ prompt?: string | undefined;
11133
+ }, {
11134
+ prompt?: string | undefined;
11135
+ }>>;
11136
+ seo: z.ZodOptional<z.ZodObject<{
11137
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
11138
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
11139
+ }, "strip", z.ZodTypeAny, {
11140
+ metatags?: Record<string, string> | undefined;
11141
+ indexing?: "all" | "navigable" | undefined;
11142
+ }, {
11143
+ metatags?: Record<string, string> | undefined;
11144
+ indexing?: "all" | "navigable" | undefined;
11145
+ }>>;
11146
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
11147
+ family: z.ZodString;
11148
+ weight: z.ZodOptional<z.ZodNumber>;
11149
+ source: z.ZodOptional<z.ZodString>;
11150
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
11151
+ }, "strip", z.ZodTypeAny, {
11152
+ family: string;
11153
+ weight?: number | undefined;
11154
+ source?: string | undefined;
11155
+ format?: "woff" | "woff2" | undefined;
11156
+ }, {
11157
+ family: string;
11158
+ weight?: number | undefined;
11159
+ source?: string | undefined;
11160
+ format?: "woff" | "woff2" | undefined;
11161
+ }>, {
11162
+ family: string;
11163
+ weight?: number | undefined;
11164
+ source?: string | undefined;
11165
+ format?: "woff" | "woff2" | undefined;
11166
+ }, {
11167
+ family: string;
11168
+ weight?: number | undefined;
11169
+ source?: string | undefined;
11170
+ format?: "woff" | "woff2" | undefined;
11171
+ }>, z.ZodObject<{
11172
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
11173
+ family: z.ZodString;
11174
+ weight: z.ZodOptional<z.ZodNumber>;
11175
+ source: z.ZodOptional<z.ZodString>;
11176
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
11177
+ }, "strip", z.ZodTypeAny, {
11178
+ family: string;
11179
+ weight?: number | undefined;
11180
+ source?: string | undefined;
11181
+ format?: "woff" | "woff2" | undefined;
11182
+ }, {
11183
+ family: string;
11184
+ weight?: number | undefined;
11185
+ source?: string | undefined;
11186
+ format?: "woff" | "woff2" | undefined;
11187
+ }>, {
11188
+ family: string;
11189
+ weight?: number | undefined;
11190
+ source?: string | undefined;
11191
+ format?: "woff" | "woff2" | undefined;
11192
+ }, {
11193
+ family: string;
11194
+ weight?: number | undefined;
11195
+ source?: string | undefined;
11196
+ format?: "woff" | "woff2" | undefined;
11197
+ }>>;
11198
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
11199
+ family: z.ZodString;
11200
+ weight: z.ZodOptional<z.ZodNumber>;
11201
+ source: z.ZodOptional<z.ZodString>;
11202
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
11203
+ }, "strip", z.ZodTypeAny, {
11204
+ family: string;
11205
+ weight?: number | undefined;
11206
+ source?: string | undefined;
11207
+ format?: "woff" | "woff2" | undefined;
11208
+ }, {
11209
+ family: string;
11210
+ weight?: number | undefined;
11211
+ source?: string | undefined;
11212
+ format?: "woff" | "woff2" | undefined;
11213
+ }>, {
11214
+ family: string;
11215
+ weight?: number | undefined;
11216
+ source?: string | undefined;
11217
+ format?: "woff" | "woff2" | undefined;
11218
+ }, {
11219
+ family: string;
11220
+ weight?: number | undefined;
11221
+ source?: string | undefined;
11222
+ format?: "woff" | "woff2" | undefined;
11223
+ }>>;
11224
+ }, "strict", z.ZodTypeAny, {
11225
+ heading?: {
11226
+ family: string;
11227
+ weight?: number | undefined;
11228
+ source?: string | undefined;
11229
+ format?: "woff" | "woff2" | undefined;
11230
+ } | undefined;
11231
+ body?: {
11232
+ family: string;
11233
+ weight?: number | undefined;
11234
+ source?: string | undefined;
11235
+ format?: "woff" | "woff2" | undefined;
11236
+ } | undefined;
11237
+ }, {
11238
+ heading?: {
11239
+ family: string;
11240
+ weight?: number | undefined;
11241
+ source?: string | undefined;
11242
+ format?: "woff" | "woff2" | undefined;
11243
+ } | undefined;
11244
+ body?: {
11245
+ family: string;
11246
+ weight?: number | undefined;
11247
+ source?: string | undefined;
11248
+ format?: "woff" | "woff2" | undefined;
11249
+ } | undefined;
11250
+ }>]>>;
11251
+ icons: z.ZodOptional<z.ZodObject<{
11252
+ library: z.ZodEnum<["fontawesome", "lucide"]>;
11253
+ }, "strip", z.ZodTypeAny, {
11254
+ library: "fontawesome" | "lucide";
11255
+ }, {
11256
+ library: "fontawesome" | "lucide";
11257
+ }>>;
11258
+ styling: z.ZodOptional<z.ZodObject<{
11259
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
11260
+ codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
11261
+ }, "strip", z.ZodTypeAny, {
11262
+ eyebrows?: "section" | "breadcrumbs" | undefined;
11263
+ codeblocks?: "dark" | "system" | undefined;
11264
+ }, {
11265
+ eyebrows?: "section" | "breadcrumbs" | undefined;
11266
+ codeblocks?: "dark" | "system" | undefined;
11267
+ }>>;
11268
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
11269
+ source: z.ZodString;
11270
+ destination: z.ZodString;
11271
+ permanent: z.ZodOptional<z.ZodBoolean>;
11272
+ }, "strip", z.ZodTypeAny, {
11273
+ source: string;
11274
+ destination: string;
11275
+ permanent?: boolean | undefined;
11276
+ }, {
11277
+ source: string;
11278
+ destination: string;
11279
+ permanent?: boolean | undefined;
11280
+ }>, "many">, {
11281
+ source: string;
11282
+ destination: string;
11283
+ permanent?: boolean | undefined;
11284
+ }[], {
11285
+ source: string;
11286
+ destination: string;
11287
+ permanent?: boolean | undefined;
11288
+ }[]>>;
11289
+ integrations: z.ZodOptional<z.ZodObject<{
11290
+ amplitude: z.ZodOptional<z.ZodObject<{
11291
+ apiKey: z.ZodString;
11292
+ }, "strip", z.ZodTypeAny, {
11293
+ apiKey: string;
11294
+ }, {
11295
+ apiKey: string;
11296
+ }>>;
11297
+ clearbit: z.ZodOptional<z.ZodObject<{
11298
+ publicApiKey: z.ZodString;
11299
+ }, "strip", z.ZodTypeAny, {
11300
+ publicApiKey: string;
11301
+ }, {
11302
+ publicApiKey: string;
11303
+ }>>;
11304
+ fathom: z.ZodOptional<z.ZodObject<{
11305
+ siteId: z.ZodString;
11306
+ }, "strip", z.ZodTypeAny, {
11307
+ siteId: string;
11308
+ }, {
11309
+ siteId: string;
11310
+ }>>;
11311
+ frontchat: z.ZodOptional<z.ZodObject<{
11312
+ snippetId: z.ZodString;
11313
+ }, "strip", z.ZodTypeAny, {
11314
+ snippetId: string;
11315
+ }, {
11316
+ snippetId: string;
11317
+ }>>;
11318
+ ga4: z.ZodOptional<z.ZodObject<{
11319
+ measurementId: z.ZodString;
11320
+ }, "strip", z.ZodTypeAny, {
11321
+ measurementId: string;
11322
+ }, {
11323
+ measurementId: string;
11324
+ }>>;
11325
+ gtm: z.ZodOptional<z.ZodObject<{
11326
+ tagId: z.ZodString;
11327
+ }, "strip", z.ZodTypeAny, {
11328
+ tagId: string;
11329
+ }, {
11330
+ tagId: string;
11331
+ }>>;
11332
+ heap: z.ZodOptional<z.ZodObject<{
11333
+ appId: z.ZodString;
11334
+ }, "strip", z.ZodTypeAny, {
11335
+ appId: string;
11336
+ }, {
11337
+ appId: string;
11338
+ }>>;
11339
+ hotjar: z.ZodOptional<z.ZodObject<{
11340
+ hjid: z.ZodString;
11341
+ hjsv: z.ZodString;
11342
+ }, "strip", z.ZodTypeAny, {
11343
+ hjid: string;
11344
+ hjsv: string;
11345
+ }, {
11346
+ hjid: string;
11347
+ hjsv: string;
11348
+ }>>;
11349
+ intercom: z.ZodOptional<z.ZodObject<{
11350
+ appId: z.ZodString;
11351
+ }, "strip", z.ZodTypeAny, {
11352
+ appId: string;
11353
+ }, {
11354
+ appId: string;
11355
+ }>>;
11356
+ koala: z.ZodOptional<z.ZodObject<{
11357
+ publicApiKey: z.ZodString;
11358
+ }, "strip", z.ZodTypeAny, {
11359
+ publicApiKey: string;
11360
+ }, {
11361
+ publicApiKey: string;
11362
+ }>>;
11363
+ logrocket: z.ZodOptional<z.ZodObject<{
11364
+ appId: z.ZodString;
11365
+ }, "strip", z.ZodTypeAny, {
11366
+ appId: string;
11367
+ }, {
11368
+ appId: string;
11369
+ }>>;
11370
+ mixpanel: z.ZodOptional<z.ZodObject<{
11371
+ projectToken: z.ZodString;
11372
+ }, "strip", z.ZodTypeAny, {
11373
+ projectToken: string;
11374
+ }, {
11375
+ projectToken: string;
11376
+ }>>;
11377
+ osano: z.ZodOptional<z.ZodObject<{
11378
+ scriptSource: z.ZodString;
11379
+ }, "strip", z.ZodTypeAny, {
11380
+ scriptSource: string;
11381
+ }, {
11382
+ scriptSource: string;
11383
+ }>>;
11384
+ pirsch: z.ZodOptional<z.ZodObject<{
11385
+ id: z.ZodString;
11386
+ }, "strip", z.ZodTypeAny, {
11387
+ id: string;
11388
+ }, {
11389
+ id: string;
11390
+ }>>;
11391
+ posthog: z.ZodOptional<z.ZodObject<{
11392
+ apiKey: z.ZodString;
11393
+ apiHost: z.ZodOptional<z.ZodString>;
11394
+ }, "strip", z.ZodTypeAny, {
11395
+ apiKey: string;
11396
+ apiHost?: string | undefined;
11397
+ }, {
11398
+ apiKey: string;
11399
+ apiHost?: string | undefined;
11400
+ }>>;
11401
+ plausible: z.ZodOptional<z.ZodObject<{
11402
+ domain: z.ZodEffects<z.ZodString, string, string>;
11403
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
11404
+ }, "strip", z.ZodTypeAny, {
11405
+ domain: string;
11406
+ server?: string | undefined;
11407
+ }, {
11408
+ domain: string;
11409
+ server?: string | undefined;
11410
+ }>>;
11411
+ segment: z.ZodOptional<z.ZodObject<{
11412
+ key: z.ZodString;
11413
+ }, "strip", z.ZodTypeAny, {
11414
+ key: string;
11415
+ }, {
11416
+ key: string;
11417
+ }>>;
11418
+ telemetry: z.ZodOptional<z.ZodObject<{
11419
+ enabled: z.ZodOptional<z.ZodBoolean>;
11420
+ }, "strip", z.ZodTypeAny, {
11421
+ enabled?: boolean | undefined;
11422
+ }, {
11423
+ enabled?: boolean | undefined;
11424
+ }>>;
11425
+ cookies: z.ZodOptional<z.ZodObject<{
11426
+ key: z.ZodOptional<z.ZodString>;
11427
+ value: z.ZodOptional<z.ZodString>;
11428
+ }, "strip", z.ZodTypeAny, {
11429
+ key?: string | undefined;
11430
+ value?: string | undefined;
11431
+ }, {
11432
+ key?: string | undefined;
11433
+ value?: string | undefined;
11434
+ }>>;
11435
+ }, "strict", z.ZodTypeAny, {
11436
+ amplitude?: {
11437
+ apiKey: string;
11438
+ } | undefined;
11439
+ clearbit?: {
11440
+ publicApiKey: string;
11441
+ } | undefined;
11442
+ fathom?: {
11443
+ siteId: string;
11444
+ } | undefined;
11445
+ frontchat?: {
11446
+ snippetId: string;
11447
+ } | undefined;
11448
+ ga4?: {
11449
+ measurementId: string;
11450
+ } | undefined;
11451
+ gtm?: {
11452
+ tagId: string;
11453
+ } | undefined;
11454
+ heap?: {
11455
+ appId: string;
11456
+ } | undefined;
11457
+ hotjar?: {
11458
+ hjid: string;
11459
+ hjsv: string;
11460
+ } | undefined;
11461
+ intercom?: {
11462
+ appId: string;
11463
+ } | undefined;
11464
+ koala?: {
11465
+ publicApiKey: string;
11466
+ } | undefined;
11467
+ logrocket?: {
11468
+ appId: string;
11469
+ } | undefined;
11470
+ mixpanel?: {
11471
+ projectToken: string;
11472
+ } | undefined;
11473
+ osano?: {
11474
+ scriptSource: string;
11475
+ } | undefined;
11476
+ pirsch?: {
11477
+ id: string;
11478
+ } | undefined;
11479
+ posthog?: {
11480
+ apiKey: string;
11481
+ apiHost?: string | undefined;
11482
+ } | undefined;
11483
+ plausible?: {
11484
+ domain: string;
11485
+ server?: string | undefined;
11486
+ } | undefined;
11487
+ segment?: {
11488
+ key: string;
11489
+ } | undefined;
11490
+ telemetry?: {
11491
+ enabled?: boolean | undefined;
11492
+ } | undefined;
11493
+ cookies?: {
11494
+ key?: string | undefined;
11495
+ value?: string | undefined;
11496
+ } | undefined;
11497
+ }, {
11498
+ amplitude?: {
11499
+ apiKey: string;
11500
+ } | undefined;
11501
+ clearbit?: {
11502
+ publicApiKey: string;
11503
+ } | undefined;
11504
+ fathom?: {
11505
+ siteId: string;
11506
+ } | undefined;
11507
+ frontchat?: {
11508
+ snippetId: string;
11509
+ } | undefined;
11510
+ ga4?: {
11511
+ measurementId: string;
11512
+ } | undefined;
11513
+ gtm?: {
11514
+ tagId: string;
11515
+ } | undefined;
11516
+ heap?: {
11517
+ appId: string;
11518
+ } | undefined;
11519
+ hotjar?: {
11520
+ hjid: string;
11521
+ hjsv: string;
11522
+ } | undefined;
11523
+ intercom?: {
11524
+ appId: string;
11525
+ } | undefined;
11526
+ koala?: {
11527
+ publicApiKey: string;
11528
+ } | undefined;
11529
+ logrocket?: {
11530
+ appId: string;
11531
+ } | undefined;
11532
+ mixpanel?: {
11533
+ projectToken: string;
11534
+ } | undefined;
11535
+ osano?: {
11536
+ scriptSource: string;
11537
+ } | undefined;
11538
+ pirsch?: {
11539
+ id: string;
11540
+ } | undefined;
11541
+ posthog?: {
11542
+ apiKey: string;
11543
+ apiHost?: string | undefined;
11544
+ } | undefined;
11545
+ plausible?: {
11546
+ domain: string;
11547
+ server?: string | undefined;
11548
+ } | undefined;
11549
+ segment?: {
11550
+ key: string;
11551
+ } | undefined;
11552
+ telemetry?: {
11553
+ enabled?: boolean | undefined;
11554
+ } | undefined;
11555
+ cookies?: {
11556
+ key?: string | undefined;
11557
+ value?: string | undefined;
11558
+ } | undefined;
11559
+ }>>;
11560
+ banner: z.ZodOptional<z.ZodObject<{
11561
+ content: z.ZodString;
11562
+ dismissible: z.ZodOptional<z.ZodBoolean>;
11563
+ }, "strip", z.ZodTypeAny, {
11564
+ content: string;
11565
+ dismissible?: boolean | undefined;
11566
+ }, {
11567
+ content: string;
11568
+ dismissible?: boolean | undefined;
11569
+ }>>;
11570
+ errors: z.ZodOptional<z.ZodObject<{
11571
+ '404': z.ZodObject<{
11572
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11573
+ }, "strip", z.ZodTypeAny, {
11574
+ redirect: boolean;
11575
+ }, {
11576
+ redirect?: boolean | undefined;
11577
+ }>;
11578
+ }, "strip", z.ZodTypeAny, {
11579
+ '404': {
11580
+ redirect: boolean;
11581
+ };
11582
+ }, {
11583
+ '404': {
11584
+ redirect?: boolean | undefined;
11585
+ };
11586
+ }>>;
11587
+ contextual: z.ZodOptional<z.ZodObject<{
11588
+ options: z.ZodEffects<z.ZodArray<z.ZodEnum<["copy", "view", "chatgpt", "claude"]>, "many">, ("copy" | "view" | "chatgpt" | "claude")[], ("copy" | "view" | "chatgpt" | "claude")[]>;
11589
+ }, "strip", z.ZodTypeAny, {
11590
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
11591
+ }, {
11592
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
11593
+ }>>;
11594
+ theme: z.ZodLiteral<"aspen">;
11595
+ }, "strip", z.ZodTypeAny, {
11596
+ name: string;
11597
+ $schema: string;
11598
+ theme: "aspen";
11599
+ colors: {
11600
+ primary: string;
11601
+ light?: string | undefined;
11602
+ dark?: string | undefined;
11603
+ };
11604
+ navigation: ({
11605
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
11606
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11607
+ } | {
11608
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
11609
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11610
+ } | {
11611
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
11612
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11613
+ } | {
11614
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
11615
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11616
+ } | {
11617
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
11618
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11619
+ } | {
11620
+ groups: ({
11621
+ openapi: (string | string[] | {
11622
+ source: string;
11623
+ directory?: string | undefined;
11624
+ }) & (string | string[] | {
11625
+ source: string;
11626
+ directory?: string | undefined;
11627
+ } | undefined);
11628
+ group: string;
11629
+ icon?: string | {
11630
+ name: string;
11631
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11632
+ library?: "fontawesome" | "lucide" | undefined;
11633
+ } | undefined;
11634
+ hidden?: boolean | undefined;
11635
+ root?: string | undefined;
11636
+ } | {
11637
+ group: string;
11638
+ asyncapi: (string | string[] | {
11639
+ source: string;
11640
+ directory?: string | undefined;
11641
+ }) & (string | string[] | {
11642
+ source: string;
11643
+ directory?: string | undefined;
11644
+ } | undefined);
11645
+ icon?: string | {
11646
+ name: string;
11647
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11648
+ library?: "fontawesome" | "lucide" | undefined;
11649
+ } | undefined;
11650
+ hidden?: boolean | undefined;
11651
+ root?: string | undefined;
11652
+ } | {
11653
+ group: string;
11654
+ pages: any[];
11655
+ icon?: string | {
11656
+ name: string;
11657
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11658
+ library?: "fontawesome" | "lucide" | undefined;
11659
+ } | undefined;
11660
+ hidden?: boolean | undefined;
11661
+ root?: string | undefined;
11662
+ })[];
11663
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11664
+ } | {
11665
+ pages: any[];
11666
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11667
+ }) & ({
11668
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
11669
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11670
+ } | {
11671
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
11672
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11673
+ } | {
11674
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
11675
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11676
+ } | {
11677
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
11678
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11679
+ } | {
11680
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
11681
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11682
+ } | {
11683
+ groups: ({
11684
+ openapi: (string | string[] | {
11685
+ source: string;
11686
+ directory?: string | undefined;
11687
+ }) & (string | string[] | {
11688
+ source: string;
11689
+ directory?: string | undefined;
11690
+ } | undefined);
11691
+ group: string;
11692
+ icon?: string | {
11693
+ name: string;
11694
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11695
+ library?: "fontawesome" | "lucide" | undefined;
11696
+ } | undefined;
11697
+ hidden?: boolean | undefined;
11698
+ root?: string | undefined;
11699
+ } | {
11700
+ group: string;
11701
+ asyncapi: (string | string[] | {
11702
+ source: string;
11703
+ directory?: string | undefined;
11704
+ }) & (string | string[] | {
11705
+ source: string;
11706
+ directory?: string | undefined;
11707
+ } | undefined);
11708
+ icon?: string | {
11709
+ name: string;
11710
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11711
+ library?: "fontawesome" | "lucide" | undefined;
11712
+ } | undefined;
11713
+ hidden?: boolean | undefined;
11714
+ root?: string | undefined;
11715
+ } | {
11716
+ group: string;
11717
+ pages: any[];
11718
+ icon?: string | {
11719
+ name: string;
11720
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11721
+ library?: "fontawesome" | "lucide" | undefined;
11722
+ } | undefined;
11723
+ hidden?: boolean | undefined;
11724
+ root?: string | undefined;
11725
+ })[];
11726
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11727
+ } | {
11728
+ pages: any[];
11729
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11730
+ } | undefined);
11731
+ description?: string | undefined;
11732
+ logo?: string | {
11733
+ light: string;
11734
+ dark: string;
11735
+ href?: string | undefined;
11736
+ } | undefined;
11737
+ favicon?: string | {
11738
+ light: string;
11739
+ dark: string;
11740
+ } | undefined;
11741
+ api?: {
11742
+ openapi?: string | string[] | {
11743
+ source: string;
11744
+ directory?: string | undefined;
11745
+ } | undefined;
11746
+ asyncapi?: string | string[] | {
11747
+ source: string;
11748
+ directory?: string | undefined;
11749
+ } | undefined;
11750
+ params?: {
11751
+ expanded?: "all" | "closed" | undefined;
11752
+ } | undefined;
11753
+ playground?: {
11754
+ display?: "simple" | "none" | "interactive" | undefined;
11755
+ proxy?: boolean | undefined;
11756
+ } | undefined;
11757
+ examples?: {
11758
+ defaults?: "all" | "required" | undefined;
11759
+ languages?: string[] | undefined;
11760
+ } | undefined;
11761
+ mdx?: {
11762
+ auth?: {
11763
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
11764
+ name?: string | undefined;
11765
+ } | undefined;
11766
+ server?: string | string[] | undefined;
11767
+ } | undefined;
11768
+ } | undefined;
11769
+ appearance?: {
11770
+ default?: "light" | "dark" | "system" | undefined;
11771
+ strict?: boolean | undefined;
11772
+ } | undefined;
11773
+ background?: {
11774
+ image?: string | {
11775
+ light: string;
11776
+ dark: string;
11777
+ } | undefined;
11778
+ decoration?: "gradient" | "grid" | "windows" | undefined;
11779
+ color?: {
11780
+ light?: string | undefined;
11781
+ dark?: string | undefined;
11782
+ } | undefined;
11783
+ } | undefined;
11784
+ navbar?: {
11785
+ links?: {
11786
+ href: string;
11787
+ label: string;
11788
+ }[] | undefined;
11789
+ primary?: {
11790
+ type: "button";
11791
+ href: string;
11792
+ label: string;
11793
+ } | {
11794
+ type: "github";
11795
+ href: string;
11796
+ } | undefined;
11797
+ } | undefined;
11798
+ footer?: {
11799
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
11800
+ links?: {
11801
+ items: {
11802
+ href: string;
11803
+ label: string;
11804
+ }[];
11805
+ header?: string | undefined;
11806
+ }[] | undefined;
11807
+ } | undefined;
11808
+ search?: {
11809
+ prompt?: string | undefined;
11810
+ } | undefined;
11811
+ seo?: {
11812
+ metatags?: Record<string, string> | undefined;
11813
+ indexing?: "all" | "navigable" | undefined;
11814
+ } | undefined;
11815
+ fonts?: {
11816
+ family: string;
11817
+ weight?: number | undefined;
11818
+ source?: string | undefined;
11819
+ format?: "woff" | "woff2" | undefined;
11820
+ } | {
11821
+ heading?: {
11822
+ family: string;
11823
+ weight?: number | undefined;
11824
+ source?: string | undefined;
11825
+ format?: "woff" | "woff2" | undefined;
11826
+ } | undefined;
11827
+ body?: {
11828
+ family: string;
11829
+ weight?: number | undefined;
11830
+ source?: string | undefined;
11831
+ format?: "woff" | "woff2" | undefined;
11832
+ } | undefined;
11833
+ } | undefined;
11834
+ icons?: {
11835
+ library: "fontawesome" | "lucide";
11836
+ } | undefined;
11837
+ styling?: {
11838
+ eyebrows?: "section" | "breadcrumbs" | undefined;
11839
+ codeblocks?: "dark" | "system" | undefined;
11840
+ } | undefined;
11841
+ redirects?: {
11842
+ source: string;
11843
+ destination: string;
11844
+ permanent?: boolean | undefined;
11845
+ }[] | undefined;
11846
+ integrations?: {
11847
+ amplitude?: {
11848
+ apiKey: string;
11849
+ } | undefined;
11850
+ clearbit?: {
11851
+ publicApiKey: string;
11852
+ } | undefined;
11853
+ fathom?: {
11854
+ siteId: string;
11855
+ } | undefined;
11856
+ frontchat?: {
11857
+ snippetId: string;
11858
+ } | undefined;
11859
+ ga4?: {
11860
+ measurementId: string;
11861
+ } | undefined;
11862
+ gtm?: {
11863
+ tagId: string;
11864
+ } | undefined;
11865
+ heap?: {
11866
+ appId: string;
11867
+ } | undefined;
11868
+ hotjar?: {
11869
+ hjid: string;
11870
+ hjsv: string;
11871
+ } | undefined;
11872
+ intercom?: {
11873
+ appId: string;
11874
+ } | undefined;
11875
+ koala?: {
11876
+ publicApiKey: string;
11877
+ } | undefined;
11878
+ logrocket?: {
11879
+ appId: string;
11880
+ } | undefined;
11881
+ mixpanel?: {
11882
+ projectToken: string;
11883
+ } | undefined;
11884
+ osano?: {
11885
+ scriptSource: string;
11886
+ } | undefined;
11887
+ pirsch?: {
11888
+ id: string;
11889
+ } | undefined;
11890
+ posthog?: {
11891
+ apiKey: string;
11892
+ apiHost?: string | undefined;
11893
+ } | undefined;
11894
+ plausible?: {
11895
+ domain: string;
11896
+ server?: string | undefined;
11897
+ } | undefined;
11898
+ segment?: {
11899
+ key: string;
11900
+ } | undefined;
11901
+ telemetry?: {
11902
+ enabled?: boolean | undefined;
11903
+ } | undefined;
11904
+ cookies?: {
11905
+ key?: string | undefined;
11906
+ value?: string | undefined;
11907
+ } | undefined;
11908
+ } | undefined;
11909
+ banner?: {
11910
+ content: string;
11911
+ dismissible?: boolean | undefined;
11912
+ } | undefined;
11913
+ errors?: {
11914
+ '404': {
11915
+ redirect: boolean;
11916
+ };
11917
+ } | undefined;
11918
+ contextual?: {
11919
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
11920
+ } | undefined;
11921
+ }, {
11922
+ name: string;
11923
+ theme: "aspen";
11924
+ colors: {
11925
+ primary: string;
11926
+ light?: string | undefined;
11927
+ dark?: string | undefined;
11928
+ };
11929
+ navigation: ({
11930
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
11931
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11932
+ } | {
11933
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
11934
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11935
+ } | {
11936
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
11937
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11938
+ } | {
11939
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
11940
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11941
+ } | {
11942
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
11943
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11944
+ } | {
11945
+ groups: ({
11946
+ openapi: (string | string[] | {
11947
+ source: string;
11948
+ directory?: string | undefined;
11949
+ }) & (string | string[] | {
11950
+ source: string;
11951
+ directory?: string | undefined;
11952
+ } | undefined);
11953
+ group: string;
11954
+ icon?: string | {
11955
+ name: string;
11956
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11957
+ library?: "fontawesome" | "lucide" | undefined;
11958
+ } | undefined;
11959
+ hidden?: boolean | undefined;
11960
+ root?: string | undefined;
11961
+ } | {
11962
+ group: string;
11963
+ asyncapi: (string | string[] | {
11964
+ source: string;
11965
+ directory?: string | undefined;
11966
+ }) & (string | string[] | {
11967
+ source: string;
11968
+ directory?: string | undefined;
11969
+ } | undefined);
11970
+ icon?: string | {
11971
+ name: string;
11972
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11973
+ library?: "fontawesome" | "lucide" | undefined;
11974
+ } | undefined;
11975
+ hidden?: boolean | undefined;
11976
+ root?: string | undefined;
11977
+ } | {
11978
+ group: string;
11979
+ pages: any[];
11980
+ icon?: string | {
11981
+ name: string;
11982
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11983
+ library?: "fontawesome" | "lucide" | undefined;
11984
+ } | undefined;
11985
+ hidden?: boolean | undefined;
11986
+ root?: string | undefined;
11987
+ })[];
11988
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11989
+ } | {
11990
+ pages: any[];
11991
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11992
+ }) & ({
11993
+ languages: import("./properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
11994
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11995
+ } | {
11996
+ versions: import("./properties/navigation/divisionNav.js").VersionNavigation<"default">[];
11997
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
11998
+ } | {
11999
+ tabs: import("./properties/navigation/divisionNav.js").TabNavigation<"default">[];
12000
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
12001
+ } | {
12002
+ dropdowns: import("./properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
12003
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
12004
+ } | {
12005
+ anchors: import("./properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
12006
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
12007
+ } | {
12008
+ groups: ({
12009
+ openapi: (string | string[] | {
12010
+ source: string;
12011
+ directory?: string | undefined;
12012
+ }) & (string | string[] | {
12013
+ source: string;
12014
+ directory?: string | undefined;
12015
+ } | undefined);
12016
+ group: string;
12017
+ icon?: string | {
12018
+ name: string;
12019
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12020
+ library?: "fontawesome" | "lucide" | undefined;
12021
+ } | undefined;
12022
+ hidden?: boolean | undefined;
12023
+ root?: string | undefined;
12024
+ } | {
12025
+ group: string;
12026
+ asyncapi: (string | string[] | {
12027
+ source: string;
12028
+ directory?: string | undefined;
12029
+ }) & (string | string[] | {
12030
+ source: string;
12031
+ directory?: string | undefined;
12032
+ } | undefined);
12033
+ icon?: string | {
12034
+ name: string;
12035
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12036
+ library?: "fontawesome" | "lucide" | undefined;
12037
+ } | undefined;
12038
+ hidden?: boolean | undefined;
12039
+ root?: string | undefined;
12040
+ } | {
12041
+ group: string;
12042
+ pages: any[];
12043
+ icon?: string | {
12044
+ name: string;
12045
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12046
+ library?: "fontawesome" | "lucide" | undefined;
12047
+ } | undefined;
12048
+ hidden?: boolean | undefined;
12049
+ root?: string | undefined;
12050
+ })[];
12051
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
12052
+ } | {
12053
+ pages: any[];
12054
+ global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
12055
+ } | undefined);
12056
+ $schema?: string | undefined;
12057
+ description?: string | undefined;
12058
+ logo?: string | {
12059
+ light: string;
12060
+ dark: string;
12061
+ href?: string | undefined;
12062
+ } | undefined;
12063
+ favicon?: string | {
12064
+ light: string;
12065
+ dark: string;
12066
+ } | undefined;
12067
+ api?: {
12068
+ openapi?: string | string[] | {
12069
+ source: string;
12070
+ directory?: string | undefined;
12071
+ } | undefined;
12072
+ asyncapi?: string | string[] | {
12073
+ source: string;
12074
+ directory?: string | undefined;
12075
+ } | undefined;
12076
+ params?: {
12077
+ expanded?: "all" | "closed" | undefined;
12078
+ } | undefined;
12079
+ playground?: {
12080
+ display?: "simple" | "none" | "interactive" | undefined;
12081
+ proxy?: boolean | undefined;
12082
+ } | undefined;
12083
+ examples?: {
12084
+ defaults?: "all" | "required" | undefined;
12085
+ languages?: string[] | undefined;
12086
+ } | undefined;
12087
+ mdx?: {
12088
+ auth?: {
12089
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
12090
+ name?: string | undefined;
12091
+ } | undefined;
12092
+ server?: string | string[] | undefined;
12093
+ } | undefined;
12094
+ } | undefined;
12095
+ appearance?: {
12096
+ default?: "light" | "dark" | "system" | undefined;
12097
+ strict?: boolean | undefined;
12098
+ } | undefined;
12099
+ background?: {
12100
+ image?: string | {
12101
+ light: string;
12102
+ dark: string;
12103
+ } | undefined;
12104
+ decoration?: "gradient" | "grid" | "windows" | undefined;
12105
+ color?: {
12106
+ light?: string | undefined;
12107
+ dark?: string | undefined;
12108
+ } | undefined;
12109
+ } | undefined;
12110
+ navbar?: {
12111
+ links?: {
12112
+ href: string;
12113
+ label: string;
12114
+ }[] | undefined;
12115
+ primary?: {
12116
+ type: "button";
12117
+ href: string;
12118
+ label: string;
12119
+ } | {
12120
+ type: "github";
12121
+ href: string;
12122
+ } | undefined;
12123
+ } | undefined;
12124
+ footer?: {
12125
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
12126
+ links?: {
12127
+ items: {
12128
+ href: string;
12129
+ label: string;
12130
+ }[];
12131
+ header?: string | undefined;
12132
+ }[] | undefined;
12133
+ } | undefined;
12134
+ search?: {
12135
+ prompt?: string | undefined;
12136
+ } | undefined;
12137
+ seo?: {
12138
+ metatags?: Record<string, string> | undefined;
12139
+ indexing?: "all" | "navigable" | undefined;
12140
+ } | undefined;
12141
+ fonts?: {
12142
+ family: string;
12143
+ weight?: number | undefined;
12144
+ source?: string | undefined;
12145
+ format?: "woff" | "woff2" | undefined;
12146
+ } | {
12147
+ heading?: {
12148
+ family: string;
12149
+ weight?: number | undefined;
12150
+ source?: string | undefined;
12151
+ format?: "woff" | "woff2" | undefined;
12152
+ } | undefined;
12153
+ body?: {
12154
+ family: string;
12155
+ weight?: number | undefined;
12156
+ source?: string | undefined;
12157
+ format?: "woff" | "woff2" | undefined;
12158
+ } | undefined;
12159
+ } | undefined;
12160
+ icons?: {
12161
+ library: "fontawesome" | "lucide";
12162
+ } | undefined;
12163
+ styling?: {
12164
+ eyebrows?: "section" | "breadcrumbs" | undefined;
12165
+ codeblocks?: "dark" | "system" | undefined;
12166
+ } | undefined;
12167
+ redirects?: {
12168
+ source: string;
12169
+ destination: string;
12170
+ permanent?: boolean | undefined;
12171
+ }[] | undefined;
12172
+ integrations?: {
12173
+ amplitude?: {
12174
+ apiKey: string;
12175
+ } | undefined;
12176
+ clearbit?: {
12177
+ publicApiKey: string;
12178
+ } | undefined;
12179
+ fathom?: {
12180
+ siteId: string;
12181
+ } | undefined;
12182
+ frontchat?: {
12183
+ snippetId: string;
12184
+ } | undefined;
12185
+ ga4?: {
12186
+ measurementId: string;
12187
+ } | undefined;
12188
+ gtm?: {
12189
+ tagId: string;
12190
+ } | undefined;
12191
+ heap?: {
12192
+ appId: string;
12193
+ } | undefined;
12194
+ hotjar?: {
12195
+ hjid: string;
12196
+ hjsv: string;
12197
+ } | undefined;
12198
+ intercom?: {
12199
+ appId: string;
12200
+ } | undefined;
12201
+ koala?: {
12202
+ publicApiKey: string;
12203
+ } | undefined;
12204
+ logrocket?: {
12205
+ appId: string;
12206
+ } | undefined;
12207
+ mixpanel?: {
12208
+ projectToken: string;
12209
+ } | undefined;
12210
+ osano?: {
12211
+ scriptSource: string;
12212
+ } | undefined;
12213
+ pirsch?: {
12214
+ id: string;
12215
+ } | undefined;
12216
+ posthog?: {
12217
+ apiKey: string;
12218
+ apiHost?: string | undefined;
12219
+ } | undefined;
12220
+ plausible?: {
12221
+ domain: string;
12222
+ server?: string | undefined;
12223
+ } | undefined;
12224
+ segment?: {
12225
+ key: string;
12226
+ } | undefined;
12227
+ telemetry?: {
12228
+ enabled?: boolean | undefined;
12229
+ } | undefined;
12230
+ cookies?: {
12231
+ key?: string | undefined;
12232
+ value?: string | undefined;
12233
+ } | undefined;
12234
+ } | undefined;
12235
+ banner?: {
12236
+ content: string;
12237
+ dismissible?: boolean | undefined;
12238
+ } | undefined;
12239
+ errors?: {
12240
+ '404': {
12241
+ redirect?: boolean | undefined;
12242
+ };
12243
+ } | undefined;
12244
+ contextual?: {
12245
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
12246
+ } | undefined;
10498
12247
  }>]>;