@mintlify/validation 0.1.296 → 0.1.298

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 (24) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +317 -19812
  2. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +2 -2
  3. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +23 -9
  4. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +27 -6
  5. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +2 -2
  6. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +23 -9
  7. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +2 -264
  8. package/dist/mint-config/schemas/v2/properties/navigation/global.js +2 -1
  9. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +24 -2912
  10. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +2 -2
  11. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +23 -9
  12. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +2 -2
  13. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +20 -9
  14. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +2 -2
  15. package/dist/mint-config/schemas/v2/properties/navigation/version.js +23 -9
  16. package/dist/mint-config/schemas/v2/themes/linden.d.ts +75 -3974
  17. package/dist/mint-config/schemas/v2/themes/maple.d.ts +75 -3974
  18. package/dist/mint-config/schemas/v2/themes/mint.d.ts +75 -3974
  19. package/dist/mint-config/schemas/v2/themes/palm.d.ts +75 -3974
  20. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +21 -2548
  21. package/dist/mint-config/schemas/v2/themes/willow.d.ts +75 -3974
  22. package/dist/mint-config/validateConfig.d.ts +168 -7028
  23. package/dist/tsconfig.build.tsbuildinfo +1 -1
  24. package/package.json +3 -3
@@ -244,2120 +244,52 @@ export declare const standardConfigSchema: {
244
244
  } | undefined;
245
245
  }>>;
246
246
  navigation: import("zod").ZodUnion<[import("zod").ZodObject<{
247
- global: import("zod").ZodOptional<import("zod").ZodObject<{
248
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
249
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
250
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
251
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
252
- href: import("zod").ZodString;
253
- }, "strip", import("zod").ZodTypeAny, {
254
- href: string;
255
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
256
- default?: boolean | undefined;
257
- hidden?: boolean | undefined;
258
- }, {
259
- href: string;
260
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
261
- default?: boolean | undefined;
262
- hidden?: boolean | undefined;
263
- }>, "many">>;
264
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
265
- version: import("zod").ZodString;
266
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
267
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
268
- href: import("zod").ZodString;
269
- }, "strip", import("zod").ZodTypeAny, {
270
- version: string;
271
- href: string;
272
- default?: boolean | undefined;
273
- hidden?: boolean | undefined;
274
- }, {
275
- version: string;
276
- href: string;
277
- default?: boolean | undefined;
278
- hidden?: boolean | undefined;
279
- }>, "many">>;
280
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
281
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
282
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
283
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
284
- }, "strip", import("zod").ZodTypeAny, {
285
- name: string;
286
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
287
- }, {
288
- name: string;
289
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
290
- }>]>>;
291
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
292
- tab: import("zod").ZodString;
293
- href: import("zod").ZodString;
294
- }, "strip", import("zod").ZodTypeAny, {
295
- href: string;
296
- tab: string;
297
- icon?: string | {
298
- name: string;
299
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
300
- } | undefined;
301
- hidden?: boolean | undefined;
302
- }, {
303
- href: string;
304
- tab: string;
305
- icon?: string | {
306
- name: string;
307
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
308
- } | undefined;
309
- hidden?: boolean | undefined;
310
- }>, "many">>;
311
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
312
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
313
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
314
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
315
- }, "strip", import("zod").ZodTypeAny, {
316
- name: string;
317
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
318
- }, {
319
- name: string;
320
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
321
- }>]>>;
322
- color: import("zod").ZodOptional<import("zod").ZodObject<{
323
- light: import("zod").ZodOptional<import("zod").ZodString>;
324
- dark: import("zod").ZodOptional<import("zod").ZodString>;
325
- }, "strict", import("zod").ZodTypeAny, {
326
- light?: string | undefined;
327
- dark?: string | undefined;
328
- }, {
329
- light?: string | undefined;
330
- dark?: string | undefined;
331
- }>>;
332
- description: import("zod").ZodOptional<import("zod").ZodString>;
333
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
334
- dropdown: import("zod").ZodString;
335
- href: import("zod").ZodString;
336
- }, "strip", import("zod").ZodTypeAny, {
337
- href: string;
338
- dropdown: string;
339
- icon?: string | {
340
- name: string;
341
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
342
- } | undefined;
343
- color?: {
344
- light?: string | undefined;
345
- dark?: string | undefined;
346
- } | undefined;
347
- description?: string | undefined;
348
- hidden?: boolean | undefined;
349
- }, {
350
- href: string;
351
- dropdown: string;
352
- icon?: string | {
353
- name: string;
354
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
355
- } | undefined;
356
- color?: {
357
- light?: string | undefined;
358
- dark?: string | undefined;
359
- } | undefined;
360
- description?: string | undefined;
361
- hidden?: boolean | undefined;
362
- }>, "many">>;
363
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
364
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
365
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
366
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
367
- }, "strip", import("zod").ZodTypeAny, {
368
- name: string;
369
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
370
- }, {
371
- name: string;
372
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
373
- }>]>>;
374
- color: import("zod").ZodOptional<import("zod").ZodObject<{
375
- light: import("zod").ZodOptional<import("zod").ZodString>;
376
- dark: import("zod").ZodOptional<import("zod").ZodString>;
377
- }, "strict", import("zod").ZodTypeAny, {
378
- light?: string | undefined;
379
- dark?: string | undefined;
380
- }, {
381
- light?: string | undefined;
382
- dark?: string | undefined;
383
- }>>;
384
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
385
- anchor: import("zod").ZodString;
386
- href: import("zod").ZodString;
387
- }, "strip", import("zod").ZodTypeAny, {
388
- href: string;
389
- anchor: string;
390
- icon?: string | {
391
- name: string;
392
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
393
- } | undefined;
394
- color?: {
395
- light?: string | undefined;
396
- dark?: string | undefined;
397
- } | undefined;
398
- hidden?: boolean | undefined;
399
- }, {
400
- href: string;
401
- anchor: string;
402
- icon?: string | {
403
- name: string;
404
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
405
- } | undefined;
406
- color?: {
407
- light?: string | undefined;
408
- dark?: string | undefined;
409
- } | undefined;
410
- hidden?: boolean | undefined;
411
- }>, "many">>;
412
- }, "strict", import("zod").ZodTypeAny, {
413
- languages?: {
414
- href: string;
415
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
416
- default?: boolean | undefined;
417
- hidden?: boolean | undefined;
418
- }[] | undefined;
419
- versions?: {
420
- version: string;
421
- href: string;
422
- default?: boolean | undefined;
423
- hidden?: boolean | undefined;
424
- }[] | undefined;
425
- tabs?: {
426
- href: string;
427
- tab: string;
428
- icon?: string | {
429
- name: string;
430
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
431
- } | undefined;
432
- hidden?: boolean | undefined;
433
- }[] | undefined;
434
- dropdowns?: {
435
- href: string;
436
- dropdown: string;
437
- icon?: string | {
438
- name: string;
439
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
440
- } | undefined;
441
- color?: {
442
- light?: string | undefined;
443
- dark?: string | undefined;
444
- } | undefined;
445
- description?: string | undefined;
446
- hidden?: boolean | undefined;
447
- }[] | undefined;
448
- anchors?: {
449
- href: string;
450
- anchor: string;
451
- icon?: string | {
452
- name: string;
453
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
454
- } | undefined;
455
- color?: {
456
- light?: string | undefined;
457
- dark?: string | undefined;
458
- } | undefined;
459
- hidden?: boolean | undefined;
460
- }[] | undefined;
461
- }, {
462
- languages?: {
463
- href: string;
464
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
465
- default?: boolean | undefined;
466
- hidden?: boolean | undefined;
467
- }[] | undefined;
468
- versions?: {
469
- version: string;
470
- href: string;
471
- default?: boolean | undefined;
472
- hidden?: boolean | undefined;
473
- }[] | undefined;
474
- tabs?: {
475
- href: string;
476
- tab: string;
477
- icon?: string | {
478
- name: string;
479
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
480
- } | undefined;
481
- hidden?: boolean | undefined;
482
- }[] | undefined;
483
- dropdowns?: {
484
- href: string;
485
- dropdown: string;
486
- icon?: string | {
487
- name: string;
488
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
489
- } | undefined;
490
- color?: {
491
- light?: string | undefined;
492
- dark?: string | undefined;
493
- } | undefined;
494
- description?: string | undefined;
495
- hidden?: boolean | undefined;
496
- }[] | undefined;
497
- anchors?: {
498
- href: string;
499
- anchor: string;
500
- icon?: string | {
501
- name: string;
502
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
503
- } | undefined;
504
- color?: {
505
- light?: string | undefined;
506
- dark?: string | undefined;
507
- } | undefined;
508
- hidden?: boolean | undefined;
509
- }[] | undefined;
510
- }>>;
247
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
511
248
  languages: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
512
249
  }, "strip", import("zod").ZodTypeAny, {
513
250
  languages: import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
514
- global?: {
515
- languages?: {
516
- href: string;
517
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
518
- default?: boolean | undefined;
519
- hidden?: boolean | undefined;
520
- }[] | undefined;
521
- versions?: {
522
- version: string;
523
- href: string;
524
- default?: boolean | undefined;
525
- hidden?: boolean | undefined;
526
- }[] | undefined;
527
- tabs?: {
528
- href: string;
529
- tab: string;
530
- icon?: string | {
531
- name: string;
532
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
533
- } | undefined;
534
- hidden?: boolean | undefined;
535
- }[] | undefined;
536
- dropdowns?: {
537
- href: string;
538
- dropdown: string;
539
- icon?: string | {
540
- name: string;
541
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
542
- } | undefined;
543
- color?: {
544
- light?: string | undefined;
545
- dark?: string | undefined;
546
- } | undefined;
547
- description?: string | undefined;
548
- hidden?: boolean | undefined;
549
- }[] | undefined;
550
- anchors?: {
551
- href: string;
552
- anchor: string;
553
- icon?: string | {
554
- name: string;
555
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
556
- } | undefined;
557
- color?: {
558
- light?: string | undefined;
559
- dark?: string | undefined;
560
- } | undefined;
561
- hidden?: boolean | undefined;
562
- }[] | undefined;
563
- } | undefined;
251
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
564
252
  }, {
565
253
  languages: import("../../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
566
- global?: {
567
- languages?: {
568
- href: string;
569
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
570
- default?: boolean | undefined;
571
- hidden?: boolean | undefined;
572
- }[] | undefined;
573
- versions?: {
574
- version: string;
575
- href: string;
576
- default?: boolean | undefined;
577
- hidden?: boolean | undefined;
578
- }[] | undefined;
579
- tabs?: {
580
- href: string;
581
- tab: string;
582
- icon?: string | {
583
- name: string;
584
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
585
- } | undefined;
586
- hidden?: boolean | undefined;
587
- }[] | undefined;
588
- dropdowns?: {
589
- href: string;
590
- dropdown: string;
591
- icon?: string | {
592
- name: string;
593
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
594
- } | undefined;
595
- color?: {
596
- light?: string | undefined;
597
- dark?: string | undefined;
598
- } | undefined;
599
- description?: string | undefined;
600
- hidden?: boolean | undefined;
601
- }[] | undefined;
602
- anchors?: {
603
- href: string;
604
- anchor: string;
605
- icon?: string | {
606
- name: string;
607
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
608
- } | undefined;
609
- color?: {
610
- light?: string | undefined;
611
- dark?: string | undefined;
612
- } | undefined;
613
- hidden?: boolean | undefined;
614
- }[] | undefined;
615
- } | undefined;
254
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
616
255
  }>, import("zod").ZodObject<{
617
- global: import("zod").ZodOptional<import("zod").ZodObject<{
618
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
619
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
620
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
621
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
622
- href: import("zod").ZodString;
623
- }, "strip", import("zod").ZodTypeAny, {
624
- href: string;
625
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
626
- default?: boolean | undefined;
627
- hidden?: boolean | undefined;
628
- }, {
629
- href: string;
630
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
631
- default?: boolean | undefined;
632
- hidden?: boolean | undefined;
633
- }>, "many">>;
634
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
635
- version: import("zod").ZodString;
636
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
637
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
638
- href: import("zod").ZodString;
639
- }, "strip", import("zod").ZodTypeAny, {
640
- version: string;
641
- href: string;
642
- default?: boolean | undefined;
643
- hidden?: boolean | undefined;
644
- }, {
645
- version: string;
646
- href: string;
647
- default?: boolean | undefined;
648
- hidden?: boolean | undefined;
649
- }>, "many">>;
650
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
651
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
652
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
653
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
654
- }, "strip", import("zod").ZodTypeAny, {
655
- name: string;
656
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
657
- }, {
658
- name: string;
659
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
660
- }>]>>;
661
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
662
- tab: import("zod").ZodString;
663
- href: import("zod").ZodString;
664
- }, "strip", import("zod").ZodTypeAny, {
665
- href: string;
666
- tab: string;
667
- icon?: string | {
668
- name: string;
669
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
670
- } | undefined;
671
- hidden?: boolean | undefined;
672
- }, {
673
- href: string;
674
- tab: string;
675
- icon?: string | {
676
- name: string;
677
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
678
- } | undefined;
679
- hidden?: boolean | undefined;
680
- }>, "many">>;
681
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
682
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
683
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
684
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
685
- }, "strip", import("zod").ZodTypeAny, {
686
- name: string;
687
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
688
- }, {
689
- name: string;
690
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
691
- }>]>>;
692
- color: import("zod").ZodOptional<import("zod").ZodObject<{
693
- light: import("zod").ZodOptional<import("zod").ZodString>;
694
- dark: import("zod").ZodOptional<import("zod").ZodString>;
695
- }, "strict", import("zod").ZodTypeAny, {
696
- light?: string | undefined;
697
- dark?: string | undefined;
698
- }, {
699
- light?: string | undefined;
700
- dark?: string | undefined;
701
- }>>;
702
- description: import("zod").ZodOptional<import("zod").ZodString>;
703
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
704
- dropdown: import("zod").ZodString;
705
- href: import("zod").ZodString;
706
- }, "strip", import("zod").ZodTypeAny, {
707
- href: string;
708
- dropdown: string;
709
- icon?: string | {
710
- name: string;
711
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
712
- } | undefined;
713
- color?: {
714
- light?: string | undefined;
715
- dark?: string | undefined;
716
- } | undefined;
717
- description?: string | undefined;
718
- hidden?: boolean | undefined;
719
- }, {
720
- href: string;
721
- dropdown: string;
722
- icon?: string | {
723
- name: string;
724
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
725
- } | undefined;
726
- color?: {
727
- light?: string | undefined;
728
- dark?: string | undefined;
729
- } | undefined;
730
- description?: string | undefined;
731
- hidden?: boolean | undefined;
732
- }>, "many">>;
733
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
734
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
735
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
736
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
737
- }, "strip", import("zod").ZodTypeAny, {
738
- name: string;
739
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
740
- }, {
741
- name: string;
742
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
743
- }>]>>;
744
- color: import("zod").ZodOptional<import("zod").ZodObject<{
745
- light: import("zod").ZodOptional<import("zod").ZodString>;
746
- dark: import("zod").ZodOptional<import("zod").ZodString>;
747
- }, "strict", import("zod").ZodTypeAny, {
748
- light?: string | undefined;
749
- dark?: string | undefined;
750
- }, {
751
- light?: string | undefined;
752
- dark?: string | undefined;
753
- }>>;
754
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
755
- anchor: import("zod").ZodString;
756
- href: import("zod").ZodString;
757
- }, "strip", import("zod").ZodTypeAny, {
758
- href: string;
759
- anchor: string;
760
- icon?: string | {
761
- name: string;
762
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
763
- } | undefined;
764
- color?: {
765
- light?: string | undefined;
766
- dark?: string | undefined;
767
- } | undefined;
768
- hidden?: boolean | undefined;
769
- }, {
770
- href: string;
771
- anchor: string;
772
- icon?: string | {
773
- name: string;
774
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
775
- } | undefined;
776
- color?: {
777
- light?: string | undefined;
778
- dark?: string | undefined;
779
- } | undefined;
780
- hidden?: boolean | undefined;
781
- }>, "many">>;
782
- }, "strict", import("zod").ZodTypeAny, {
783
- languages?: {
784
- href: string;
785
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
786
- default?: boolean | undefined;
787
- hidden?: boolean | undefined;
788
- }[] | undefined;
789
- versions?: {
790
- version: string;
791
- href: string;
792
- default?: boolean | undefined;
793
- hidden?: boolean | undefined;
794
- }[] | undefined;
795
- tabs?: {
796
- href: string;
797
- tab: string;
798
- icon?: string | {
799
- name: string;
800
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
801
- } | undefined;
802
- hidden?: boolean | undefined;
803
- }[] | undefined;
804
- dropdowns?: {
805
- href: string;
806
- dropdown: string;
807
- icon?: string | {
808
- name: string;
809
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
810
- } | undefined;
811
- color?: {
812
- light?: string | undefined;
813
- dark?: string | undefined;
814
- } | undefined;
815
- description?: string | undefined;
816
- hidden?: boolean | undefined;
817
- }[] | undefined;
818
- anchors?: {
819
- href: string;
820
- anchor: string;
821
- icon?: string | {
822
- name: string;
823
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
824
- } | undefined;
825
- color?: {
826
- light?: string | undefined;
827
- dark?: string | undefined;
828
- } | undefined;
829
- hidden?: boolean | undefined;
830
- }[] | undefined;
831
- }, {
832
- languages?: {
833
- href: string;
834
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
835
- default?: boolean | undefined;
836
- hidden?: boolean | undefined;
837
- }[] | undefined;
838
- versions?: {
839
- version: string;
840
- href: string;
841
- default?: boolean | undefined;
842
- hidden?: boolean | undefined;
843
- }[] | undefined;
844
- tabs?: {
845
- href: string;
846
- tab: string;
847
- icon?: string | {
848
- name: string;
849
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
850
- } | undefined;
851
- hidden?: boolean | undefined;
852
- }[] | undefined;
853
- dropdowns?: {
854
- href: string;
855
- dropdown: string;
856
- icon?: string | {
857
- name: string;
858
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
859
- } | undefined;
860
- color?: {
861
- light?: string | undefined;
862
- dark?: string | undefined;
863
- } | undefined;
864
- description?: string | undefined;
865
- hidden?: boolean | undefined;
866
- }[] | undefined;
867
- anchors?: {
868
- href: string;
869
- anchor: string;
870
- icon?: string | {
871
- name: string;
872
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
873
- } | undefined;
874
- color?: {
875
- light?: string | undefined;
876
- dark?: string | undefined;
877
- } | undefined;
878
- hidden?: boolean | undefined;
879
- }[] | undefined;
880
- }>>;
256
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
881
257
  versions: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
882
258
  }, "strip", import("zod").ZodTypeAny, {
883
259
  versions: import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
884
- global?: {
885
- languages?: {
886
- href: string;
887
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
888
- default?: boolean | undefined;
889
- hidden?: boolean | undefined;
890
- }[] | undefined;
891
- versions?: {
892
- version: string;
893
- href: string;
894
- default?: boolean | undefined;
895
- hidden?: boolean | undefined;
896
- }[] | undefined;
897
- tabs?: {
898
- href: string;
899
- tab: string;
900
- icon?: string | {
901
- name: string;
902
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
903
- } | undefined;
904
- hidden?: boolean | undefined;
905
- }[] | undefined;
906
- dropdowns?: {
907
- href: string;
908
- dropdown: string;
909
- icon?: string | {
910
- name: string;
911
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
912
- } | undefined;
913
- color?: {
914
- light?: string | undefined;
915
- dark?: string | undefined;
916
- } | undefined;
917
- description?: string | undefined;
918
- hidden?: boolean | undefined;
919
- }[] | undefined;
920
- anchors?: {
921
- href: string;
922
- anchor: string;
923
- icon?: string | {
924
- name: string;
925
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
926
- } | undefined;
927
- color?: {
928
- light?: string | undefined;
929
- dark?: string | undefined;
930
- } | undefined;
931
- hidden?: boolean | undefined;
932
- }[] | undefined;
933
- } | undefined;
260
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
934
261
  }, {
935
262
  versions: import("../../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
936
- global?: {
937
- languages?: {
938
- href: string;
939
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
940
- default?: boolean | undefined;
941
- hidden?: boolean | undefined;
942
- }[] | undefined;
943
- versions?: {
944
- version: string;
945
- href: string;
946
- default?: boolean | undefined;
947
- hidden?: boolean | undefined;
948
- }[] | undefined;
949
- tabs?: {
950
- href: string;
951
- tab: string;
952
- icon?: string | {
953
- name: string;
954
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
955
- } | undefined;
956
- hidden?: boolean | undefined;
957
- }[] | undefined;
958
- dropdowns?: {
959
- href: string;
960
- dropdown: string;
961
- icon?: string | {
962
- name: string;
963
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
964
- } | undefined;
965
- color?: {
966
- light?: string | undefined;
967
- dark?: string | undefined;
968
- } | undefined;
969
- description?: string | undefined;
970
- hidden?: boolean | undefined;
971
- }[] | undefined;
972
- anchors?: {
973
- href: string;
974
- anchor: string;
975
- icon?: string | {
976
- name: string;
977
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
978
- } | undefined;
979
- color?: {
980
- light?: string | undefined;
981
- dark?: string | undefined;
982
- } | undefined;
983
- hidden?: boolean | undefined;
984
- }[] | undefined;
985
- } | undefined;
263
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
986
264
  }>, import("zod").ZodObject<{
987
- global: import("zod").ZodOptional<import("zod").ZodObject<{
988
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
989
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
990
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
991
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
992
- href: import("zod").ZodString;
993
- }, "strip", import("zod").ZodTypeAny, {
994
- href: string;
995
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
996
- default?: boolean | undefined;
997
- hidden?: boolean | undefined;
998
- }, {
999
- href: string;
1000
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1001
- default?: boolean | undefined;
1002
- hidden?: boolean | undefined;
1003
- }>, "many">>;
1004
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1005
- version: import("zod").ZodString;
1006
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
1007
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1008
- href: import("zod").ZodString;
1009
- }, "strip", import("zod").ZodTypeAny, {
1010
- version: string;
1011
- href: string;
1012
- default?: boolean | undefined;
1013
- hidden?: boolean | undefined;
1014
- }, {
1015
- version: string;
1016
- href: string;
1017
- default?: boolean | undefined;
1018
- hidden?: boolean | undefined;
1019
- }>, "many">>;
1020
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1021
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1022
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1023
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1024
- }, "strip", import("zod").ZodTypeAny, {
1025
- name: string;
1026
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1027
- }, {
1028
- name: string;
1029
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1030
- }>]>>;
1031
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1032
- tab: import("zod").ZodString;
1033
- href: import("zod").ZodString;
1034
- }, "strip", import("zod").ZodTypeAny, {
1035
- href: string;
1036
- tab: string;
1037
- icon?: string | {
1038
- name: string;
1039
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1040
- } | undefined;
1041
- hidden?: boolean | undefined;
1042
- }, {
1043
- href: string;
1044
- tab: string;
1045
- icon?: string | {
1046
- name: string;
1047
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1048
- } | undefined;
1049
- hidden?: boolean | undefined;
1050
- }>, "many">>;
1051
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1052
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1053
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1054
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1055
- }, "strip", import("zod").ZodTypeAny, {
1056
- name: string;
1057
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1058
- }, {
1059
- name: string;
1060
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1061
- }>]>>;
1062
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1063
- light: import("zod").ZodOptional<import("zod").ZodString>;
1064
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1065
- }, "strict", import("zod").ZodTypeAny, {
1066
- light?: string | undefined;
1067
- dark?: string | undefined;
1068
- }, {
1069
- light?: string | undefined;
1070
- dark?: string | undefined;
1071
- }>>;
1072
- description: import("zod").ZodOptional<import("zod").ZodString>;
1073
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1074
- dropdown: import("zod").ZodString;
1075
- href: import("zod").ZodString;
1076
- }, "strip", import("zod").ZodTypeAny, {
1077
- href: string;
1078
- dropdown: string;
1079
- icon?: string | {
1080
- name: string;
1081
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1082
- } | undefined;
1083
- color?: {
1084
- light?: string | undefined;
1085
- dark?: string | undefined;
1086
- } | undefined;
1087
- description?: string | undefined;
1088
- hidden?: boolean | undefined;
1089
- }, {
1090
- href: string;
1091
- dropdown: string;
1092
- icon?: string | {
1093
- name: string;
1094
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1095
- } | undefined;
1096
- color?: {
1097
- light?: string | undefined;
1098
- dark?: string | undefined;
1099
- } | undefined;
1100
- description?: string | undefined;
1101
- hidden?: boolean | undefined;
1102
- }>, "many">>;
1103
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1104
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1105
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1106
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1107
- }, "strip", import("zod").ZodTypeAny, {
1108
- name: string;
1109
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1110
- }, {
1111
- name: string;
1112
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1113
- }>]>>;
1114
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1115
- light: import("zod").ZodOptional<import("zod").ZodString>;
1116
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1117
- }, "strict", import("zod").ZodTypeAny, {
1118
- light?: string | undefined;
1119
- dark?: string | undefined;
1120
- }, {
1121
- light?: string | undefined;
1122
- dark?: string | undefined;
1123
- }>>;
1124
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1125
- anchor: import("zod").ZodString;
1126
- href: import("zod").ZodString;
1127
- }, "strip", import("zod").ZodTypeAny, {
1128
- href: string;
1129
- anchor: string;
1130
- icon?: string | {
1131
- name: string;
1132
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1133
- } | undefined;
1134
- color?: {
1135
- light?: string | undefined;
1136
- dark?: string | undefined;
1137
- } | undefined;
1138
- hidden?: boolean | undefined;
1139
- }, {
1140
- href: string;
1141
- anchor: string;
1142
- icon?: string | {
1143
- name: string;
1144
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1145
- } | undefined;
1146
- color?: {
1147
- light?: string | undefined;
1148
- dark?: string | undefined;
1149
- } | undefined;
1150
- hidden?: boolean | undefined;
1151
- }>, "many">>;
1152
- }, "strict", import("zod").ZodTypeAny, {
1153
- languages?: {
1154
- href: string;
1155
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1156
- default?: boolean | undefined;
1157
- hidden?: boolean | undefined;
1158
- }[] | undefined;
1159
- versions?: {
1160
- version: string;
1161
- href: string;
1162
- default?: boolean | undefined;
1163
- hidden?: boolean | undefined;
1164
- }[] | undefined;
1165
- tabs?: {
1166
- href: string;
1167
- tab: string;
1168
- icon?: string | {
1169
- name: string;
1170
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1171
- } | undefined;
1172
- hidden?: boolean | undefined;
1173
- }[] | undefined;
1174
- dropdowns?: {
1175
- href: string;
1176
- dropdown: string;
1177
- icon?: string | {
1178
- name: string;
1179
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1180
- } | undefined;
1181
- color?: {
1182
- light?: string | undefined;
1183
- dark?: string | undefined;
1184
- } | undefined;
1185
- description?: string | undefined;
1186
- hidden?: boolean | undefined;
1187
- }[] | undefined;
1188
- anchors?: {
1189
- href: string;
1190
- anchor: string;
1191
- icon?: string | {
1192
- name: string;
1193
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1194
- } | undefined;
1195
- color?: {
1196
- light?: string | undefined;
1197
- dark?: string | undefined;
1198
- } | undefined;
1199
- hidden?: boolean | undefined;
1200
- }[] | undefined;
1201
- }, {
1202
- languages?: {
1203
- href: string;
1204
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1205
- default?: boolean | undefined;
1206
- hidden?: boolean | undefined;
1207
- }[] | undefined;
1208
- versions?: {
1209
- version: string;
1210
- href: string;
1211
- default?: boolean | undefined;
1212
- hidden?: boolean | undefined;
1213
- }[] | undefined;
1214
- tabs?: {
1215
- href: string;
1216
- tab: string;
1217
- icon?: string | {
1218
- name: string;
1219
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1220
- } | undefined;
1221
- hidden?: boolean | undefined;
1222
- }[] | undefined;
1223
- dropdowns?: {
1224
- href: string;
1225
- dropdown: string;
1226
- icon?: string | {
1227
- name: string;
1228
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1229
- } | undefined;
1230
- color?: {
1231
- light?: string | undefined;
1232
- dark?: string | undefined;
1233
- } | undefined;
1234
- description?: string | undefined;
1235
- hidden?: boolean | undefined;
1236
- }[] | undefined;
1237
- anchors?: {
1238
- href: string;
1239
- anchor: string;
1240
- icon?: string | {
1241
- name: string;
1242
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1243
- } | undefined;
1244
- color?: {
1245
- light?: string | undefined;
1246
- dark?: string | undefined;
1247
- } | undefined;
1248
- hidden?: boolean | undefined;
1249
- }[] | undefined;
1250
- }>>;
265
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
1251
266
  tabs: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").TabNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
1252
267
  }, "strip", import("zod").ZodTypeAny, {
1253
268
  tabs: import("../../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1254
- global?: {
1255
- languages?: {
1256
- href: string;
1257
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1258
- default?: boolean | undefined;
1259
- hidden?: boolean | undefined;
1260
- }[] | undefined;
1261
- versions?: {
1262
- version: string;
1263
- href: string;
1264
- default?: boolean | undefined;
1265
- hidden?: boolean | undefined;
1266
- }[] | undefined;
1267
- tabs?: {
1268
- href: string;
1269
- tab: string;
1270
- icon?: string | {
1271
- name: string;
1272
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1273
- } | undefined;
1274
- hidden?: boolean | undefined;
1275
- }[] | undefined;
1276
- dropdowns?: {
1277
- href: string;
1278
- dropdown: string;
1279
- icon?: string | {
1280
- name: string;
1281
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1282
- } | undefined;
1283
- color?: {
1284
- light?: string | undefined;
1285
- dark?: string | undefined;
1286
- } | undefined;
1287
- description?: string | undefined;
1288
- hidden?: boolean | undefined;
1289
- }[] | undefined;
1290
- anchors?: {
1291
- href: string;
1292
- anchor: string;
1293
- icon?: string | {
1294
- name: string;
1295
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1296
- } | undefined;
1297
- color?: {
1298
- light?: string | undefined;
1299
- dark?: string | undefined;
1300
- } | undefined;
1301
- hidden?: boolean | undefined;
1302
- }[] | undefined;
1303
- } | undefined;
269
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1304
270
  }, {
1305
271
  tabs: import("../../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1306
- global?: {
1307
- languages?: {
1308
- href: string;
1309
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1310
- default?: boolean | undefined;
1311
- hidden?: boolean | undefined;
1312
- }[] | undefined;
1313
- versions?: {
1314
- version: string;
1315
- href: string;
1316
- default?: boolean | undefined;
1317
- hidden?: boolean | undefined;
1318
- }[] | undefined;
1319
- tabs?: {
1320
- href: string;
1321
- tab: string;
1322
- icon?: string | {
1323
- name: string;
1324
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1325
- } | undefined;
1326
- hidden?: boolean | undefined;
1327
- }[] | undefined;
1328
- dropdowns?: {
1329
- href: string;
1330
- dropdown: string;
1331
- icon?: string | {
1332
- name: string;
1333
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1334
- } | undefined;
1335
- color?: {
1336
- light?: string | undefined;
1337
- dark?: string | undefined;
1338
- } | undefined;
1339
- description?: string | undefined;
1340
- hidden?: boolean | undefined;
1341
- }[] | undefined;
1342
- anchors?: {
1343
- href: string;
1344
- anchor: string;
1345
- icon?: string | {
1346
- name: string;
1347
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1348
- } | undefined;
1349
- color?: {
1350
- light?: string | undefined;
1351
- dark?: string | undefined;
1352
- } | undefined;
1353
- hidden?: boolean | undefined;
1354
- }[] | undefined;
1355
- } | undefined;
272
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1356
273
  }>, import("zod").ZodObject<{
1357
- global: import("zod").ZodOptional<import("zod").ZodObject<{
1358
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1359
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
1360
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1361
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1362
- href: import("zod").ZodString;
1363
- }, "strip", import("zod").ZodTypeAny, {
1364
- href: string;
1365
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1366
- default?: boolean | undefined;
1367
- hidden?: boolean | undefined;
1368
- }, {
1369
- href: string;
1370
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1371
- default?: boolean | undefined;
1372
- hidden?: boolean | undefined;
1373
- }>, "many">>;
1374
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1375
- version: import("zod").ZodString;
1376
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
1377
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1378
- href: import("zod").ZodString;
1379
- }, "strip", import("zod").ZodTypeAny, {
1380
- version: string;
1381
- href: string;
1382
- default?: boolean | undefined;
1383
- hidden?: boolean | undefined;
1384
- }, {
1385
- version: string;
1386
- href: string;
1387
- default?: boolean | undefined;
1388
- hidden?: boolean | undefined;
1389
- }>, "many">>;
1390
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1391
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1392
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1393
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1394
- }, "strip", import("zod").ZodTypeAny, {
1395
- name: string;
1396
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1397
- }, {
1398
- name: string;
1399
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1400
- }>]>>;
1401
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1402
- tab: import("zod").ZodString;
1403
- href: import("zod").ZodString;
1404
- }, "strip", import("zod").ZodTypeAny, {
1405
- href: string;
1406
- tab: string;
1407
- icon?: string | {
1408
- name: string;
1409
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1410
- } | undefined;
1411
- hidden?: boolean | undefined;
1412
- }, {
1413
- href: string;
1414
- tab: string;
1415
- icon?: string | {
1416
- name: string;
1417
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1418
- } | undefined;
1419
- hidden?: boolean | undefined;
1420
- }>, "many">>;
1421
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1422
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1423
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1424
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1425
- }, "strip", import("zod").ZodTypeAny, {
1426
- name: string;
1427
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1428
- }, {
1429
- name: string;
1430
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1431
- }>]>>;
1432
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1433
- light: import("zod").ZodOptional<import("zod").ZodString>;
1434
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1435
- }, "strict", import("zod").ZodTypeAny, {
1436
- light?: string | undefined;
1437
- dark?: string | undefined;
1438
- }, {
1439
- light?: string | undefined;
1440
- dark?: string | undefined;
1441
- }>>;
1442
- description: import("zod").ZodOptional<import("zod").ZodString>;
1443
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1444
- dropdown: import("zod").ZodString;
1445
- href: import("zod").ZodString;
1446
- }, "strip", import("zod").ZodTypeAny, {
1447
- href: string;
1448
- dropdown: string;
1449
- icon?: string | {
1450
- name: string;
1451
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1452
- } | undefined;
1453
- color?: {
1454
- light?: string | undefined;
1455
- dark?: string | undefined;
1456
- } | undefined;
1457
- description?: string | undefined;
1458
- hidden?: boolean | undefined;
1459
- }, {
1460
- href: string;
1461
- dropdown: string;
1462
- icon?: string | {
1463
- name: string;
1464
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1465
- } | undefined;
1466
- color?: {
1467
- light?: string | undefined;
1468
- dark?: string | undefined;
1469
- } | undefined;
1470
- description?: string | undefined;
1471
- hidden?: boolean | undefined;
1472
- }>, "many">>;
1473
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1474
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1475
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1476
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1477
- }, "strip", import("zod").ZodTypeAny, {
1478
- name: string;
1479
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1480
- }, {
1481
- name: string;
1482
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1483
- }>]>>;
1484
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1485
- light: import("zod").ZodOptional<import("zod").ZodString>;
1486
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1487
- }, "strict", import("zod").ZodTypeAny, {
1488
- light?: string | undefined;
1489
- dark?: string | undefined;
1490
- }, {
1491
- light?: string | undefined;
1492
- dark?: string | undefined;
1493
- }>>;
1494
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1495
- anchor: import("zod").ZodString;
1496
- href: import("zod").ZodString;
1497
- }, "strip", import("zod").ZodTypeAny, {
1498
- href: string;
1499
- anchor: string;
1500
- icon?: string | {
1501
- name: string;
1502
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1503
- } | undefined;
1504
- color?: {
1505
- light?: string | undefined;
1506
- dark?: string | undefined;
1507
- } | undefined;
1508
- hidden?: boolean | undefined;
1509
- }, {
1510
- href: string;
1511
- anchor: string;
1512
- icon?: string | {
1513
- name: string;
1514
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1515
- } | undefined;
1516
- color?: {
1517
- light?: string | undefined;
1518
- dark?: string | undefined;
1519
- } | undefined;
1520
- hidden?: boolean | undefined;
1521
- }>, "many">>;
1522
- }, "strict", import("zod").ZodTypeAny, {
1523
- languages?: {
1524
- href: string;
1525
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1526
- default?: boolean | undefined;
1527
- hidden?: boolean | undefined;
1528
- }[] | undefined;
1529
- versions?: {
1530
- version: string;
1531
- href: string;
1532
- default?: boolean | undefined;
1533
- hidden?: boolean | undefined;
1534
- }[] | undefined;
1535
- tabs?: {
1536
- href: string;
1537
- tab: string;
1538
- icon?: string | {
1539
- name: string;
1540
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1541
- } | undefined;
1542
- hidden?: boolean | undefined;
1543
- }[] | undefined;
1544
- dropdowns?: {
1545
- href: string;
1546
- dropdown: string;
1547
- icon?: string | {
1548
- name: string;
1549
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1550
- } | undefined;
1551
- color?: {
1552
- light?: string | undefined;
1553
- dark?: string | undefined;
1554
- } | undefined;
1555
- description?: string | undefined;
1556
- hidden?: boolean | undefined;
1557
- }[] | undefined;
1558
- anchors?: {
1559
- href: string;
1560
- anchor: string;
1561
- icon?: string | {
1562
- name: string;
1563
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1564
- } | undefined;
1565
- color?: {
1566
- light?: string | undefined;
1567
- dark?: string | undefined;
1568
- } | undefined;
1569
- hidden?: boolean | undefined;
1570
- }[] | undefined;
1571
- }, {
1572
- languages?: {
1573
- href: string;
1574
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1575
- default?: boolean | undefined;
1576
- hidden?: boolean | undefined;
1577
- }[] | undefined;
1578
- versions?: {
1579
- version: string;
1580
- href: string;
1581
- default?: boolean | undefined;
1582
- hidden?: boolean | undefined;
1583
- }[] | undefined;
1584
- tabs?: {
1585
- href: string;
1586
- tab: string;
1587
- icon?: string | {
1588
- name: string;
1589
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1590
- } | undefined;
1591
- hidden?: boolean | undefined;
1592
- }[] | undefined;
1593
- dropdowns?: {
1594
- href: string;
1595
- dropdown: string;
1596
- icon?: string | {
1597
- name: string;
1598
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1599
- } | undefined;
1600
- color?: {
1601
- light?: string | undefined;
1602
- dark?: string | undefined;
1603
- } | undefined;
1604
- description?: string | undefined;
1605
- hidden?: boolean | undefined;
1606
- }[] | undefined;
1607
- anchors?: {
1608
- href: string;
1609
- anchor: string;
1610
- icon?: string | {
1611
- name: string;
1612
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1613
- } | undefined;
1614
- color?: {
1615
- light?: string | undefined;
1616
- dark?: string | undefined;
1617
- } | undefined;
1618
- hidden?: boolean | undefined;
1619
- }[] | undefined;
1620
- }>>;
274
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
1621
275
  dropdowns: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
1622
276
  }, "strip", import("zod").ZodTypeAny, {
1623
277
  dropdowns: import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1624
- global?: {
1625
- languages?: {
1626
- href: string;
1627
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1628
- default?: boolean | undefined;
1629
- hidden?: boolean | undefined;
1630
- }[] | undefined;
1631
- versions?: {
1632
- version: string;
1633
- href: string;
1634
- default?: boolean | undefined;
1635
- hidden?: boolean | undefined;
1636
- }[] | undefined;
1637
- tabs?: {
1638
- href: string;
1639
- tab: string;
1640
- icon?: string | {
1641
- name: string;
1642
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1643
- } | undefined;
1644
- hidden?: boolean | undefined;
1645
- }[] | undefined;
1646
- dropdowns?: {
1647
- href: string;
1648
- dropdown: string;
1649
- icon?: string | {
1650
- name: string;
1651
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1652
- } | undefined;
1653
- color?: {
1654
- light?: string | undefined;
1655
- dark?: string | undefined;
1656
- } | undefined;
1657
- description?: string | undefined;
1658
- hidden?: boolean | undefined;
1659
- }[] | undefined;
1660
- anchors?: {
1661
- href: string;
1662
- anchor: string;
1663
- icon?: string | {
1664
- name: string;
1665
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1666
- } | undefined;
1667
- color?: {
1668
- light?: string | undefined;
1669
- dark?: string | undefined;
1670
- } | undefined;
1671
- hidden?: boolean | undefined;
1672
- }[] | undefined;
1673
- } | undefined;
278
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1674
279
  }, {
1675
280
  dropdowns: import("../../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1676
- global?: {
1677
- languages?: {
1678
- href: string;
1679
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1680
- default?: boolean | undefined;
1681
- hidden?: boolean | undefined;
1682
- }[] | undefined;
1683
- versions?: {
1684
- version: string;
1685
- href: string;
1686
- default?: boolean | undefined;
1687
- hidden?: boolean | undefined;
1688
- }[] | undefined;
1689
- tabs?: {
1690
- href: string;
1691
- tab: string;
1692
- icon?: string | {
1693
- name: string;
1694
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1695
- } | undefined;
1696
- hidden?: boolean | undefined;
1697
- }[] | undefined;
1698
- dropdowns?: {
1699
- href: string;
1700
- dropdown: string;
1701
- icon?: string | {
1702
- name: string;
1703
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1704
- } | undefined;
1705
- color?: {
1706
- light?: string | undefined;
1707
- dark?: string | undefined;
1708
- } | undefined;
1709
- description?: string | undefined;
1710
- hidden?: boolean | undefined;
1711
- }[] | undefined;
1712
- anchors?: {
1713
- href: string;
1714
- anchor: string;
1715
- icon?: string | {
1716
- name: string;
1717
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1718
- } | undefined;
1719
- color?: {
1720
- light?: string | undefined;
1721
- dark?: string | undefined;
1722
- } | undefined;
1723
- hidden?: boolean | undefined;
1724
- }[] | undefined;
1725
- } | undefined;
281
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1726
282
  }>, import("zod").ZodObject<{
1727
- global: import("zod").ZodOptional<import("zod").ZodObject<{
1728
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1729
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
1730
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1731
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1732
- href: import("zod").ZodString;
1733
- }, "strip", import("zod").ZodTypeAny, {
1734
- href: string;
1735
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1736
- default?: boolean | undefined;
1737
- hidden?: boolean | undefined;
1738
- }, {
1739
- href: string;
1740
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1741
- default?: boolean | undefined;
1742
- hidden?: boolean | undefined;
1743
- }>, "many">>;
1744
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1745
- version: import("zod").ZodString;
1746
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
1747
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1748
- href: import("zod").ZodString;
1749
- }, "strip", import("zod").ZodTypeAny, {
1750
- version: string;
1751
- href: string;
1752
- default?: boolean | undefined;
1753
- hidden?: boolean | undefined;
1754
- }, {
1755
- version: string;
1756
- href: string;
1757
- default?: boolean | undefined;
1758
- hidden?: boolean | undefined;
1759
- }>, "many">>;
1760
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1761
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1762
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1763
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1764
- }, "strip", import("zod").ZodTypeAny, {
1765
- name: string;
1766
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1767
- }, {
1768
- name: string;
1769
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1770
- }>]>>;
1771
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1772
- tab: import("zod").ZodString;
1773
- href: import("zod").ZodString;
1774
- }, "strip", import("zod").ZodTypeAny, {
1775
- href: string;
1776
- tab: string;
1777
- icon?: string | {
1778
- name: string;
1779
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1780
- } | undefined;
1781
- hidden?: boolean | undefined;
1782
- }, {
1783
- href: string;
1784
- tab: string;
1785
- icon?: string | {
1786
- name: string;
1787
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1788
- } | undefined;
1789
- hidden?: boolean | undefined;
1790
- }>, "many">>;
1791
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1792
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1793
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1794
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1795
- }, "strip", import("zod").ZodTypeAny, {
1796
- name: string;
1797
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1798
- }, {
1799
- name: string;
1800
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1801
- }>]>>;
1802
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1803
- light: import("zod").ZodOptional<import("zod").ZodString>;
1804
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1805
- }, "strict", import("zod").ZodTypeAny, {
1806
- light?: string | undefined;
1807
- dark?: string | undefined;
1808
- }, {
1809
- light?: string | undefined;
1810
- dark?: string | undefined;
1811
- }>>;
1812
- description: import("zod").ZodOptional<import("zod").ZodString>;
1813
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1814
- dropdown: import("zod").ZodString;
1815
- href: import("zod").ZodString;
1816
- }, "strip", import("zod").ZodTypeAny, {
1817
- href: string;
1818
- dropdown: string;
1819
- icon?: string | {
1820
- name: string;
1821
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1822
- } | undefined;
1823
- color?: {
1824
- light?: string | undefined;
1825
- dark?: string | undefined;
1826
- } | undefined;
1827
- description?: string | undefined;
1828
- hidden?: boolean | undefined;
1829
- }, {
1830
- href: string;
1831
- dropdown: string;
1832
- icon?: string | {
1833
- name: string;
1834
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1835
- } | undefined;
1836
- color?: {
1837
- light?: string | undefined;
1838
- dark?: string | undefined;
1839
- } | undefined;
1840
- description?: string | undefined;
1841
- hidden?: boolean | undefined;
1842
- }>, "many">>;
1843
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
1844
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
1845
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1846
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1847
- }, "strip", import("zod").ZodTypeAny, {
1848
- name: string;
1849
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1850
- }, {
1851
- name: string;
1852
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1853
- }>]>>;
1854
- color: import("zod").ZodOptional<import("zod").ZodObject<{
1855
- light: import("zod").ZodOptional<import("zod").ZodString>;
1856
- dark: import("zod").ZodOptional<import("zod").ZodString>;
1857
- }, "strict", import("zod").ZodTypeAny, {
1858
- light?: string | undefined;
1859
- dark?: string | undefined;
1860
- }, {
1861
- light?: string | undefined;
1862
- dark?: string | undefined;
1863
- }>>;
1864
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
1865
- anchor: import("zod").ZodString;
1866
- href: import("zod").ZodString;
1867
- }, "strip", import("zod").ZodTypeAny, {
1868
- href: string;
1869
- anchor: string;
1870
- icon?: string | {
1871
- name: string;
1872
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1873
- } | undefined;
1874
- color?: {
1875
- light?: string | undefined;
1876
- dark?: string | undefined;
1877
- } | undefined;
1878
- hidden?: boolean | undefined;
1879
- }, {
1880
- href: string;
1881
- anchor: string;
1882
- icon?: string | {
1883
- name: string;
1884
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1885
- } | undefined;
1886
- color?: {
1887
- light?: string | undefined;
1888
- dark?: string | undefined;
1889
- } | undefined;
1890
- hidden?: boolean | undefined;
1891
- }>, "many">>;
1892
- }, "strict", import("zod").ZodTypeAny, {
1893
- languages?: {
1894
- href: string;
1895
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1896
- default?: boolean | undefined;
1897
- hidden?: boolean | undefined;
1898
- }[] | undefined;
1899
- versions?: {
1900
- version: string;
1901
- href: string;
1902
- default?: boolean | undefined;
1903
- hidden?: boolean | undefined;
1904
- }[] | undefined;
1905
- tabs?: {
1906
- href: string;
1907
- tab: string;
1908
- icon?: string | {
1909
- name: string;
1910
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1911
- } | undefined;
1912
- hidden?: boolean | undefined;
1913
- }[] | undefined;
1914
- dropdowns?: {
1915
- href: string;
1916
- dropdown: string;
1917
- icon?: string | {
1918
- name: string;
1919
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1920
- } | undefined;
1921
- color?: {
1922
- light?: string | undefined;
1923
- dark?: string | undefined;
1924
- } | undefined;
1925
- description?: string | undefined;
1926
- hidden?: boolean | undefined;
1927
- }[] | undefined;
1928
- anchors?: {
1929
- href: string;
1930
- anchor: string;
1931
- icon?: string | {
1932
- name: string;
1933
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1934
- } | undefined;
1935
- color?: {
1936
- light?: string | undefined;
1937
- dark?: string | undefined;
1938
- } | undefined;
1939
- hidden?: boolean | undefined;
1940
- }[] | undefined;
1941
- }, {
1942
- languages?: {
1943
- href: string;
1944
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1945
- default?: boolean | undefined;
1946
- hidden?: boolean | undefined;
1947
- }[] | undefined;
1948
- versions?: {
1949
- version: string;
1950
- href: string;
1951
- default?: boolean | undefined;
1952
- hidden?: boolean | undefined;
1953
- }[] | undefined;
1954
- tabs?: {
1955
- href: string;
1956
- tab: string;
1957
- icon?: string | {
1958
- name: string;
1959
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1960
- } | undefined;
1961
- hidden?: boolean | undefined;
1962
- }[] | undefined;
1963
- dropdowns?: {
1964
- href: string;
1965
- dropdown: string;
1966
- icon?: string | {
1967
- name: string;
1968
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1969
- } | undefined;
1970
- color?: {
1971
- light?: string | undefined;
1972
- dark?: string | undefined;
1973
- } | undefined;
1974
- description?: string | undefined;
1975
- hidden?: boolean | undefined;
1976
- }[] | undefined;
1977
- anchors?: {
1978
- href: string;
1979
- anchor: string;
1980
- icon?: string | {
1981
- name: string;
1982
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1983
- } | undefined;
1984
- color?: {
1985
- light?: string | undefined;
1986
- dark?: string | undefined;
1987
- } | undefined;
1988
- hidden?: boolean | undefined;
1989
- }[] | undefined;
1990
- }>>;
283
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
1991
284
  anchors: import("zod").ZodArray<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
1992
285
  }, "strip", import("zod").ZodTypeAny, {
1993
286
  anchors: import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1994
- global?: {
1995
- languages?: {
1996
- href: string;
1997
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1998
- default?: boolean | undefined;
1999
- hidden?: boolean | undefined;
2000
- }[] | undefined;
2001
- versions?: {
2002
- version: string;
2003
- href: string;
2004
- default?: boolean | undefined;
2005
- hidden?: boolean | undefined;
2006
- }[] | undefined;
2007
- tabs?: {
2008
- href: string;
2009
- tab: string;
2010
- icon?: string | {
2011
- name: string;
2012
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2013
- } | undefined;
2014
- hidden?: boolean | undefined;
2015
- }[] | undefined;
2016
- dropdowns?: {
2017
- href: string;
2018
- dropdown: string;
2019
- icon?: string | {
2020
- name: string;
2021
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2022
- } | undefined;
2023
- color?: {
2024
- light?: string | undefined;
2025
- dark?: string | undefined;
2026
- } | undefined;
2027
- description?: string | undefined;
2028
- hidden?: boolean | undefined;
2029
- }[] | undefined;
2030
- anchors?: {
2031
- href: string;
2032
- anchor: string;
2033
- icon?: string | {
2034
- name: string;
2035
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2036
- } | undefined;
2037
- color?: {
2038
- light?: string | undefined;
2039
- dark?: string | undefined;
2040
- } | undefined;
2041
- hidden?: boolean | undefined;
2042
- }[] | undefined;
2043
- } | undefined;
287
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2044
288
  }, {
2045
289
  anchors: import("../../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
2046
- global?: {
2047
- languages?: {
2048
- href: string;
2049
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2050
- default?: boolean | undefined;
2051
- hidden?: boolean | undefined;
2052
- }[] | undefined;
2053
- versions?: {
2054
- version: string;
2055
- href: string;
2056
- default?: boolean | undefined;
2057
- hidden?: boolean | undefined;
2058
- }[] | undefined;
2059
- tabs?: {
2060
- href: string;
2061
- tab: string;
2062
- icon?: string | {
2063
- name: string;
2064
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2065
- } | undefined;
2066
- hidden?: boolean | undefined;
2067
- }[] | undefined;
2068
- dropdowns?: {
2069
- href: string;
2070
- dropdown: string;
2071
- icon?: string | {
2072
- name: string;
2073
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2074
- } | undefined;
2075
- color?: {
2076
- light?: string | undefined;
2077
- dark?: string | undefined;
2078
- } | undefined;
2079
- description?: string | undefined;
2080
- hidden?: boolean | undefined;
2081
- }[] | undefined;
2082
- anchors?: {
2083
- href: string;
2084
- anchor: string;
2085
- icon?: string | {
2086
- name: string;
2087
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2088
- } | undefined;
2089
- color?: {
2090
- light?: string | undefined;
2091
- dark?: string | undefined;
2092
- } | undefined;
2093
- hidden?: boolean | undefined;
2094
- }[] | undefined;
2095
- } | undefined;
290
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2096
291
  }>, import("zod").ZodObject<{
2097
- global: import("zod").ZodOptional<import("zod").ZodObject<{
2098
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2099
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
2100
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2101
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2102
- href: import("zod").ZodString;
2103
- }, "strip", import("zod").ZodTypeAny, {
2104
- href: string;
2105
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2106
- default?: boolean | undefined;
2107
- hidden?: boolean | undefined;
2108
- }, {
2109
- href: string;
2110
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2111
- default?: boolean | undefined;
2112
- hidden?: boolean | undefined;
2113
- }>, "many">>;
2114
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2115
- version: import("zod").ZodString;
2116
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
2117
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2118
- href: import("zod").ZodString;
2119
- }, "strip", import("zod").ZodTypeAny, {
2120
- version: string;
2121
- href: string;
2122
- default?: boolean | undefined;
2123
- hidden?: boolean | undefined;
2124
- }, {
2125
- version: string;
2126
- href: string;
2127
- default?: boolean | undefined;
2128
- hidden?: boolean | undefined;
2129
- }>, "many">>;
2130
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2131
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2132
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2133
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2134
- }, "strip", import("zod").ZodTypeAny, {
2135
- name: string;
2136
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2137
- }, {
2138
- name: string;
2139
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2140
- }>]>>;
2141
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2142
- tab: import("zod").ZodString;
2143
- href: import("zod").ZodString;
2144
- }, "strip", import("zod").ZodTypeAny, {
2145
- href: string;
2146
- tab: string;
2147
- icon?: string | {
2148
- name: string;
2149
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2150
- } | undefined;
2151
- hidden?: boolean | undefined;
2152
- }, {
2153
- href: string;
2154
- tab: string;
2155
- icon?: string | {
2156
- name: string;
2157
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2158
- } | undefined;
2159
- hidden?: boolean | undefined;
2160
- }>, "many">>;
2161
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2162
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2163
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2164
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2165
- }, "strip", import("zod").ZodTypeAny, {
2166
- name: string;
2167
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2168
- }, {
2169
- name: string;
2170
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2171
- }>]>>;
2172
- color: import("zod").ZodOptional<import("zod").ZodObject<{
2173
- light: import("zod").ZodOptional<import("zod").ZodString>;
2174
- dark: import("zod").ZodOptional<import("zod").ZodString>;
2175
- }, "strict", import("zod").ZodTypeAny, {
2176
- light?: string | undefined;
2177
- dark?: string | undefined;
2178
- }, {
2179
- light?: string | undefined;
2180
- dark?: string | undefined;
2181
- }>>;
2182
- description: import("zod").ZodOptional<import("zod").ZodString>;
2183
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2184
- dropdown: import("zod").ZodString;
2185
- href: import("zod").ZodString;
2186
- }, "strip", import("zod").ZodTypeAny, {
2187
- href: string;
2188
- dropdown: string;
2189
- icon?: string | {
2190
- name: string;
2191
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2192
- } | undefined;
2193
- color?: {
2194
- light?: string | undefined;
2195
- dark?: string | undefined;
2196
- } | undefined;
2197
- description?: string | undefined;
2198
- hidden?: boolean | undefined;
2199
- }, {
2200
- href: string;
2201
- dropdown: string;
2202
- icon?: string | {
2203
- name: string;
2204
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2205
- } | undefined;
2206
- color?: {
2207
- light?: string | undefined;
2208
- dark?: string | undefined;
2209
- } | undefined;
2210
- description?: string | undefined;
2211
- hidden?: boolean | undefined;
2212
- }>, "many">>;
2213
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2214
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2215
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2216
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2217
- }, "strip", import("zod").ZodTypeAny, {
2218
- name: string;
2219
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2220
- }, {
2221
- name: string;
2222
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2223
- }>]>>;
2224
- color: import("zod").ZodOptional<import("zod").ZodObject<{
2225
- light: import("zod").ZodOptional<import("zod").ZodString>;
2226
- dark: import("zod").ZodOptional<import("zod").ZodString>;
2227
- }, "strict", import("zod").ZodTypeAny, {
2228
- light?: string | undefined;
2229
- dark?: string | undefined;
2230
- }, {
2231
- light?: string | undefined;
2232
- dark?: string | undefined;
2233
- }>>;
2234
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2235
- anchor: import("zod").ZodString;
2236
- href: import("zod").ZodString;
2237
- }, "strip", import("zod").ZodTypeAny, {
2238
- href: string;
2239
- anchor: string;
2240
- icon?: string | {
2241
- name: string;
2242
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2243
- } | undefined;
2244
- color?: {
2245
- light?: string | undefined;
2246
- dark?: string | undefined;
2247
- } | undefined;
2248
- hidden?: boolean | undefined;
2249
- }, {
2250
- href: string;
2251
- anchor: string;
2252
- icon?: string | {
2253
- name: string;
2254
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2255
- } | undefined;
2256
- color?: {
2257
- light?: string | undefined;
2258
- dark?: string | undefined;
2259
- } | undefined;
2260
- hidden?: boolean | undefined;
2261
- }>, "many">>;
2262
- }, "strict", import("zod").ZodTypeAny, {
2263
- languages?: {
2264
- href: string;
2265
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2266
- default?: boolean | undefined;
2267
- hidden?: boolean | undefined;
2268
- }[] | undefined;
2269
- versions?: {
2270
- version: string;
2271
- href: string;
2272
- default?: boolean | undefined;
2273
- hidden?: boolean | undefined;
2274
- }[] | undefined;
2275
- tabs?: {
2276
- href: string;
2277
- tab: string;
2278
- icon?: string | {
2279
- name: string;
2280
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2281
- } | undefined;
2282
- hidden?: boolean | undefined;
2283
- }[] | undefined;
2284
- dropdowns?: {
2285
- href: string;
2286
- dropdown: string;
2287
- icon?: string | {
2288
- name: string;
2289
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2290
- } | undefined;
2291
- color?: {
2292
- light?: string | undefined;
2293
- dark?: string | undefined;
2294
- } | undefined;
2295
- description?: string | undefined;
2296
- hidden?: boolean | undefined;
2297
- }[] | undefined;
2298
- anchors?: {
2299
- href: string;
2300
- anchor: string;
2301
- icon?: string | {
2302
- name: string;
2303
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2304
- } | undefined;
2305
- color?: {
2306
- light?: string | undefined;
2307
- dark?: string | undefined;
2308
- } | undefined;
2309
- hidden?: boolean | undefined;
2310
- }[] | undefined;
2311
- }, {
2312
- languages?: {
2313
- href: string;
2314
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2315
- default?: boolean | undefined;
2316
- hidden?: boolean | undefined;
2317
- }[] | undefined;
2318
- versions?: {
2319
- version: string;
2320
- href: string;
2321
- default?: boolean | undefined;
2322
- hidden?: boolean | undefined;
2323
- }[] | undefined;
2324
- tabs?: {
2325
- href: string;
2326
- tab: string;
2327
- icon?: string | {
2328
- name: string;
2329
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2330
- } | undefined;
2331
- hidden?: boolean | undefined;
2332
- }[] | undefined;
2333
- dropdowns?: {
2334
- href: string;
2335
- dropdown: string;
2336
- icon?: string | {
2337
- name: string;
2338
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2339
- } | undefined;
2340
- color?: {
2341
- light?: string | undefined;
2342
- dark?: string | undefined;
2343
- } | undefined;
2344
- description?: string | undefined;
2345
- hidden?: boolean | undefined;
2346
- }[] | undefined;
2347
- anchors?: {
2348
- href: string;
2349
- anchor: string;
2350
- icon?: string | {
2351
- name: string;
2352
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2353
- } | undefined;
2354
- color?: {
2355
- light?: string | undefined;
2356
- dark?: string | undefined;
2357
- } | undefined;
2358
- hidden?: boolean | undefined;
2359
- }[] | undefined;
2360
- }>>;
292
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
2361
293
  groups: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
2362
294
  icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2363
295
  style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -2472,56 +404,7 @@ export declare const standardConfigSchema: {
2472
404
  hidden?: boolean | undefined;
2473
405
  root?: string | undefined;
2474
406
  })[];
2475
- global?: {
2476
- languages?: {
2477
- href: string;
2478
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2479
- default?: boolean | undefined;
2480
- hidden?: boolean | undefined;
2481
- }[] | undefined;
2482
- versions?: {
2483
- version: string;
2484
- href: string;
2485
- default?: boolean | undefined;
2486
- hidden?: boolean | undefined;
2487
- }[] | undefined;
2488
- tabs?: {
2489
- href: string;
2490
- tab: string;
2491
- icon?: string | {
2492
- name: string;
2493
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2494
- } | undefined;
2495
- hidden?: boolean | undefined;
2496
- }[] | undefined;
2497
- dropdowns?: {
2498
- href: string;
2499
- dropdown: string;
2500
- icon?: string | {
2501
- name: string;
2502
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2503
- } | undefined;
2504
- color?: {
2505
- light?: string | undefined;
2506
- dark?: string | undefined;
2507
- } | undefined;
2508
- description?: string | undefined;
2509
- hidden?: boolean | undefined;
2510
- }[] | undefined;
2511
- anchors?: {
2512
- href: string;
2513
- anchor: string;
2514
- icon?: string | {
2515
- name: string;
2516
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2517
- } | undefined;
2518
- color?: {
2519
- light?: string | undefined;
2520
- dark?: string | undefined;
2521
- } | undefined;
2522
- hidden?: boolean | undefined;
2523
- }[] | undefined;
2524
- } | undefined;
407
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2525
408
  }, {
2526
409
  groups: ({
2527
410
  openapi: (string | string[] | {
@@ -2548,426 +431,16 @@ export declare const standardConfigSchema: {
2548
431
  hidden?: boolean | undefined;
2549
432
  root?: string | undefined;
2550
433
  })[];
2551
- global?: {
2552
- languages?: {
2553
- href: string;
2554
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2555
- default?: boolean | undefined;
2556
- hidden?: boolean | undefined;
2557
- }[] | undefined;
2558
- versions?: {
2559
- version: string;
2560
- href: string;
2561
- default?: boolean | undefined;
2562
- hidden?: boolean | undefined;
2563
- }[] | undefined;
2564
- tabs?: {
2565
- href: string;
2566
- tab: string;
2567
- icon?: string | {
2568
- name: string;
2569
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2570
- } | undefined;
2571
- hidden?: boolean | undefined;
2572
- }[] | undefined;
2573
- dropdowns?: {
2574
- href: string;
2575
- dropdown: string;
2576
- icon?: string | {
2577
- name: string;
2578
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2579
- } | undefined;
2580
- color?: {
2581
- light?: string | undefined;
2582
- dark?: string | undefined;
2583
- } | undefined;
2584
- description?: string | undefined;
2585
- hidden?: boolean | undefined;
2586
- }[] | undefined;
2587
- anchors?: {
2588
- href: string;
2589
- anchor: string;
2590
- icon?: string | {
2591
- name: string;
2592
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2593
- } | undefined;
2594
- color?: {
2595
- light?: string | undefined;
2596
- dark?: string | undefined;
2597
- } | undefined;
2598
- hidden?: boolean | undefined;
2599
- }[] | undefined;
2600
- } | undefined;
434
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2601
435
  }>, import("zod").ZodObject<{
2602
- global: import("zod").ZodOptional<import("zod").ZodObject<{
2603
- languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2604
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
2605
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2606
- language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2607
- href: import("zod").ZodString;
2608
- }, "strip", import("zod").ZodTypeAny, {
2609
- href: string;
2610
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2611
- default?: boolean | undefined;
2612
- hidden?: boolean | undefined;
2613
- }, {
2614
- href: string;
2615
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2616
- default?: boolean | undefined;
2617
- hidden?: boolean | undefined;
2618
- }>, "many">>;
2619
- versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2620
- version: import("zod").ZodString;
2621
- default: import("zod").ZodOptional<import("zod").ZodBoolean>;
2622
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2623
- href: import("zod").ZodString;
2624
- }, "strip", import("zod").ZodTypeAny, {
2625
- version: string;
2626
- href: string;
2627
- default?: boolean | undefined;
2628
- hidden?: boolean | undefined;
2629
- }, {
2630
- version: string;
2631
- href: string;
2632
- default?: boolean | undefined;
2633
- hidden?: boolean | undefined;
2634
- }>, "many">>;
2635
- tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2636
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2637
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2638
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2639
- }, "strip", import("zod").ZodTypeAny, {
2640
- name: string;
2641
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2642
- }, {
2643
- name: string;
2644
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2645
- }>]>>;
2646
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2647
- tab: import("zod").ZodString;
2648
- href: import("zod").ZodString;
2649
- }, "strip", import("zod").ZodTypeAny, {
2650
- href: string;
2651
- tab: string;
2652
- icon?: string | {
2653
- name: string;
2654
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2655
- } | undefined;
2656
- hidden?: boolean | undefined;
2657
- }, {
2658
- href: string;
2659
- tab: string;
2660
- icon?: string | {
2661
- name: string;
2662
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2663
- } | undefined;
2664
- hidden?: boolean | undefined;
2665
- }>, "many">>;
2666
- dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2667
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2668
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2669
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2670
- }, "strip", import("zod").ZodTypeAny, {
2671
- name: string;
2672
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2673
- }, {
2674
- name: string;
2675
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2676
- }>]>>;
2677
- color: import("zod").ZodOptional<import("zod").ZodObject<{
2678
- light: import("zod").ZodOptional<import("zod").ZodString>;
2679
- dark: import("zod").ZodOptional<import("zod").ZodString>;
2680
- }, "strict", import("zod").ZodTypeAny, {
2681
- light?: string | undefined;
2682
- dark?: string | undefined;
2683
- }, {
2684
- light?: string | undefined;
2685
- dark?: string | undefined;
2686
- }>>;
2687
- description: import("zod").ZodOptional<import("zod").ZodString>;
2688
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2689
- dropdown: import("zod").ZodString;
2690
- href: import("zod").ZodString;
2691
- }, "strip", import("zod").ZodTypeAny, {
2692
- href: string;
2693
- dropdown: string;
2694
- icon?: string | {
2695
- name: string;
2696
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2697
- } | undefined;
2698
- color?: {
2699
- light?: string | undefined;
2700
- dark?: string | undefined;
2701
- } | undefined;
2702
- description?: string | undefined;
2703
- hidden?: boolean | undefined;
2704
- }, {
2705
- href: string;
2706
- dropdown: string;
2707
- icon?: string | {
2708
- name: string;
2709
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2710
- } | undefined;
2711
- color?: {
2712
- light?: string | undefined;
2713
- dark?: string | undefined;
2714
- } | undefined;
2715
- description?: string | undefined;
2716
- hidden?: boolean | undefined;
2717
- }>, "many">>;
2718
- anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2719
- icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
2720
- style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2721
- name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2722
- }, "strip", import("zod").ZodTypeAny, {
2723
- name: string;
2724
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2725
- }, {
2726
- name: string;
2727
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2728
- }>]>>;
2729
- color: import("zod").ZodOptional<import("zod").ZodObject<{
2730
- light: import("zod").ZodOptional<import("zod").ZodString>;
2731
- dark: import("zod").ZodOptional<import("zod").ZodString>;
2732
- }, "strict", import("zod").ZodTypeAny, {
2733
- light?: string | undefined;
2734
- dark?: string | undefined;
2735
- }, {
2736
- light?: string | undefined;
2737
- dark?: string | undefined;
2738
- }>>;
2739
- hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
2740
- anchor: import("zod").ZodString;
2741
- href: import("zod").ZodString;
2742
- }, "strip", import("zod").ZodTypeAny, {
2743
- href: string;
2744
- anchor: string;
2745
- icon?: string | {
2746
- name: string;
2747
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2748
- } | undefined;
2749
- color?: {
2750
- light?: string | undefined;
2751
- dark?: string | undefined;
2752
- } | undefined;
2753
- hidden?: boolean | undefined;
2754
- }, {
2755
- href: string;
2756
- anchor: string;
2757
- icon?: string | {
2758
- name: string;
2759
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2760
- } | undefined;
2761
- color?: {
2762
- light?: string | undefined;
2763
- dark?: string | undefined;
2764
- } | undefined;
2765
- hidden?: boolean | undefined;
2766
- }>, "many">>;
2767
- }, "strict", import("zod").ZodTypeAny, {
2768
- languages?: {
2769
- href: string;
2770
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2771
- default?: boolean | undefined;
2772
- hidden?: boolean | undefined;
2773
- }[] | undefined;
2774
- versions?: {
2775
- version: string;
2776
- href: string;
2777
- default?: boolean | undefined;
2778
- hidden?: boolean | undefined;
2779
- }[] | undefined;
2780
- tabs?: {
2781
- href: string;
2782
- tab: string;
2783
- icon?: string | {
2784
- name: string;
2785
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2786
- } | undefined;
2787
- hidden?: boolean | undefined;
2788
- }[] | undefined;
2789
- dropdowns?: {
2790
- href: string;
2791
- dropdown: string;
2792
- icon?: string | {
2793
- name: string;
2794
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2795
- } | undefined;
2796
- color?: {
2797
- light?: string | undefined;
2798
- dark?: string | undefined;
2799
- } | undefined;
2800
- description?: string | undefined;
2801
- hidden?: boolean | undefined;
2802
- }[] | undefined;
2803
- anchors?: {
2804
- href: string;
2805
- anchor: string;
2806
- icon?: string | {
2807
- name: string;
2808
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2809
- } | undefined;
2810
- color?: {
2811
- light?: string | undefined;
2812
- dark?: string | undefined;
2813
- } | undefined;
2814
- hidden?: boolean | undefined;
2815
- }[] | undefined;
2816
- }, {
2817
- languages?: {
2818
- href: string;
2819
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2820
- default?: boolean | undefined;
2821
- hidden?: boolean | undefined;
2822
- }[] | undefined;
2823
- versions?: {
2824
- version: string;
2825
- href: string;
2826
- default?: boolean | undefined;
2827
- hidden?: boolean | undefined;
2828
- }[] | undefined;
2829
- tabs?: {
2830
- href: string;
2831
- tab: string;
2832
- icon?: string | {
2833
- name: string;
2834
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2835
- } | undefined;
2836
- hidden?: boolean | undefined;
2837
- }[] | undefined;
2838
- dropdowns?: {
2839
- href: string;
2840
- dropdown: string;
2841
- icon?: string | {
2842
- name: string;
2843
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2844
- } | undefined;
2845
- color?: {
2846
- light?: string | undefined;
2847
- dark?: string | undefined;
2848
- } | undefined;
2849
- description?: string | undefined;
2850
- hidden?: boolean | undefined;
2851
- }[] | undefined;
2852
- anchors?: {
2853
- href: string;
2854
- anchor: string;
2855
- icon?: string | {
2856
- name: string;
2857
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2858
- } | undefined;
2859
- color?: {
2860
- light?: string | undefined;
2861
- dark?: string | undefined;
2862
- } | undefined;
2863
- hidden?: boolean | undefined;
2864
- }[] | undefined;
2865
- }>>;
436
+ global: import("zod").ZodOptional<import("zod").ZodType<import("../../properties/navigation/divisionNav.js").GlobalNavigation, import("zod").ZodTypeDef, import("../../properties/navigation/divisionNav.js").GlobalNavigation>>;
2866
437
  pages: import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">;
2867
438
  }, "strip", import("zod").ZodTypeAny, {
2868
439
  pages: any[];
2869
- global?: {
2870
- languages?: {
2871
- href: string;
2872
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2873
- default?: boolean | undefined;
2874
- hidden?: boolean | undefined;
2875
- }[] | undefined;
2876
- versions?: {
2877
- version: string;
2878
- href: string;
2879
- default?: boolean | undefined;
2880
- hidden?: boolean | undefined;
2881
- }[] | undefined;
2882
- tabs?: {
2883
- href: string;
2884
- tab: string;
2885
- icon?: string | {
2886
- name: string;
2887
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2888
- } | undefined;
2889
- hidden?: boolean | undefined;
2890
- }[] | undefined;
2891
- dropdowns?: {
2892
- href: string;
2893
- dropdown: string;
2894
- icon?: string | {
2895
- name: string;
2896
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2897
- } | undefined;
2898
- color?: {
2899
- light?: string | undefined;
2900
- dark?: string | undefined;
2901
- } | undefined;
2902
- description?: string | undefined;
2903
- hidden?: boolean | undefined;
2904
- }[] | undefined;
2905
- anchors?: {
2906
- href: string;
2907
- anchor: string;
2908
- icon?: string | {
2909
- name: string;
2910
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2911
- } | undefined;
2912
- color?: {
2913
- light?: string | undefined;
2914
- dark?: string | undefined;
2915
- } | undefined;
2916
- hidden?: boolean | undefined;
2917
- }[] | undefined;
2918
- } | undefined;
440
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2919
441
  }, {
2920
442
  pages: any[];
2921
- global?: {
2922
- languages?: {
2923
- href: string;
2924
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2925
- default?: boolean | undefined;
2926
- hidden?: boolean | undefined;
2927
- }[] | undefined;
2928
- versions?: {
2929
- version: string;
2930
- href: string;
2931
- default?: boolean | undefined;
2932
- hidden?: boolean | undefined;
2933
- }[] | undefined;
2934
- tabs?: {
2935
- href: string;
2936
- tab: string;
2937
- icon?: string | {
2938
- name: string;
2939
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2940
- } | undefined;
2941
- hidden?: boolean | undefined;
2942
- }[] | undefined;
2943
- dropdowns?: {
2944
- href: string;
2945
- dropdown: string;
2946
- icon?: string | {
2947
- name: string;
2948
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2949
- } | undefined;
2950
- color?: {
2951
- light?: string | undefined;
2952
- dark?: string | undefined;
2953
- } | undefined;
2954
- description?: string | undefined;
2955
- hidden?: boolean | undefined;
2956
- }[] | undefined;
2957
- anchors?: {
2958
- href: string;
2959
- anchor: string;
2960
- icon?: string | {
2961
- name: string;
2962
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2963
- } | undefined;
2964
- color?: {
2965
- light?: string | undefined;
2966
- dark?: string | undefined;
2967
- } | undefined;
2968
- hidden?: boolean | undefined;
2969
- }[] | undefined;
2970
- } | undefined;
443
+ global?: import("../../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
2971
444
  }>]>;
2972
445
  footer: import("zod").ZodOptional<import("zod").ZodObject<{
2973
446
  socials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, import("zod").ZodString>>;