@mintlify/validation 0.1.297 → 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 +2 -2
@@ -6,2120 +6,52 @@ import { DecoratedLanguageConfig, LanguageConfig } from './languages.js';
6
6
  import { DecoratedTabConfig, TabConfig } from './tabs.js';
7
7
  import { DecoratedVersionConfig, VersionConfig } from './version.js';
8
8
  export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
9
- global: z.ZodOptional<z.ZodObject<{
10
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
11
- default: z.ZodOptional<z.ZodBoolean>;
12
- hidden: z.ZodOptional<z.ZodBoolean>;
13
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
14
- href: z.ZodString;
15
- }, "strip", z.ZodTypeAny, {
16
- href: string;
17
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
18
- default?: boolean | undefined;
19
- hidden?: boolean | undefined;
20
- }, {
21
- href: string;
22
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
23
- default?: boolean | undefined;
24
- hidden?: boolean | undefined;
25
- }>, "many">>;
26
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
27
- version: z.ZodString;
28
- default: z.ZodOptional<z.ZodBoolean>;
29
- hidden: z.ZodOptional<z.ZodBoolean>;
30
- href: z.ZodString;
31
- }, "strip", z.ZodTypeAny, {
32
- version: string;
33
- href: string;
34
- default?: boolean | undefined;
35
- hidden?: boolean | undefined;
36
- }, {
37
- version: string;
38
- href: string;
39
- default?: boolean | undefined;
40
- hidden?: boolean | undefined;
41
- }>, "many">>;
42
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
43
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
44
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
45
- name: z.ZodEffects<z.ZodString, string, string>;
46
- }, "strip", z.ZodTypeAny, {
47
- name: string;
48
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
49
- }, {
50
- name: string;
51
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
52
- }>]>>;
53
- hidden: z.ZodOptional<z.ZodBoolean>;
54
- tab: z.ZodString;
55
- href: z.ZodString;
56
- }, "strip", z.ZodTypeAny, {
57
- href: string;
58
- tab: string;
59
- icon?: string | {
60
- name: string;
61
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
62
- } | undefined;
63
- hidden?: boolean | undefined;
64
- }, {
65
- href: string;
66
- tab: string;
67
- icon?: string | {
68
- name: string;
69
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
70
- } | undefined;
71
- hidden?: boolean | undefined;
72
- }>, "many">>;
73
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
74
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
75
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
76
- name: z.ZodEffects<z.ZodString, string, string>;
77
- }, "strip", z.ZodTypeAny, {
78
- name: string;
79
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
80
- }, {
81
- name: string;
82
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
83
- }>]>>;
84
- color: z.ZodOptional<z.ZodObject<{
85
- light: z.ZodOptional<z.ZodString>;
86
- dark: z.ZodOptional<z.ZodString>;
87
- }, "strict", z.ZodTypeAny, {
88
- light?: string | undefined;
89
- dark?: string | undefined;
90
- }, {
91
- light?: string | undefined;
92
- dark?: string | undefined;
93
- }>>;
94
- description: z.ZodOptional<z.ZodString>;
95
- hidden: z.ZodOptional<z.ZodBoolean>;
96
- dropdown: z.ZodString;
97
- href: z.ZodString;
98
- }, "strip", z.ZodTypeAny, {
99
- href: string;
100
- dropdown: string;
101
- icon?: string | {
102
- name: string;
103
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
104
- } | undefined;
105
- color?: {
106
- light?: string | undefined;
107
- dark?: string | undefined;
108
- } | undefined;
109
- description?: string | undefined;
110
- hidden?: boolean | undefined;
111
- }, {
112
- href: string;
113
- dropdown: string;
114
- icon?: string | {
115
- name: string;
116
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
117
- } | undefined;
118
- color?: {
119
- light?: string | undefined;
120
- dark?: string | undefined;
121
- } | undefined;
122
- description?: string | undefined;
123
- hidden?: boolean | undefined;
124
- }>, "many">>;
125
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
126
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
127
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
128
- name: z.ZodEffects<z.ZodString, string, string>;
129
- }, "strip", z.ZodTypeAny, {
130
- name: string;
131
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
132
- }, {
133
- name: string;
134
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
135
- }>]>>;
136
- color: z.ZodOptional<z.ZodObject<{
137
- light: z.ZodOptional<z.ZodString>;
138
- dark: z.ZodOptional<z.ZodString>;
139
- }, "strict", z.ZodTypeAny, {
140
- light?: string | undefined;
141
- dark?: string | undefined;
142
- }, {
143
- light?: string | undefined;
144
- dark?: string | undefined;
145
- }>>;
146
- hidden: z.ZodOptional<z.ZodBoolean>;
147
- anchor: z.ZodString;
148
- href: z.ZodString;
149
- }, "strip", z.ZodTypeAny, {
150
- href: string;
151
- anchor: string;
152
- icon?: string | {
153
- name: string;
154
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
155
- } | undefined;
156
- color?: {
157
- light?: string | undefined;
158
- dark?: string | undefined;
159
- } | undefined;
160
- hidden?: boolean | undefined;
161
- }, {
162
- href: string;
163
- anchor: string;
164
- icon?: string | {
165
- name: string;
166
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
167
- } | undefined;
168
- color?: {
169
- light?: string | undefined;
170
- dark?: string | undefined;
171
- } | undefined;
172
- hidden?: boolean | undefined;
173
- }>, "many">>;
174
- }, "strict", z.ZodTypeAny, {
175
- languages?: {
176
- href: string;
177
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
178
- default?: boolean | undefined;
179
- hidden?: boolean | undefined;
180
- }[] | undefined;
181
- versions?: {
182
- version: string;
183
- href: string;
184
- default?: boolean | undefined;
185
- hidden?: boolean | undefined;
186
- }[] | undefined;
187
- tabs?: {
188
- href: string;
189
- tab: string;
190
- icon?: string | {
191
- name: string;
192
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
193
- } | undefined;
194
- hidden?: boolean | undefined;
195
- }[] | undefined;
196
- dropdowns?: {
197
- href: string;
198
- dropdown: string;
199
- icon?: string | {
200
- name: string;
201
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
202
- } | undefined;
203
- color?: {
204
- light?: string | undefined;
205
- dark?: string | undefined;
206
- } | undefined;
207
- description?: string | undefined;
208
- hidden?: boolean | undefined;
209
- }[] | undefined;
210
- anchors?: {
211
- href: string;
212
- anchor: string;
213
- icon?: string | {
214
- name: string;
215
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
216
- } | undefined;
217
- color?: {
218
- light?: string | undefined;
219
- dark?: string | undefined;
220
- } | undefined;
221
- hidden?: boolean | undefined;
222
- }[] | undefined;
223
- }, {
224
- languages?: {
225
- href: string;
226
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
227
- default?: boolean | undefined;
228
- hidden?: boolean | undefined;
229
- }[] | undefined;
230
- versions?: {
231
- version: string;
232
- href: string;
233
- default?: boolean | undefined;
234
- hidden?: boolean | undefined;
235
- }[] | undefined;
236
- tabs?: {
237
- href: string;
238
- tab: string;
239
- icon?: string | {
240
- name: string;
241
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
242
- } | undefined;
243
- hidden?: boolean | undefined;
244
- }[] | undefined;
245
- dropdowns?: {
246
- href: string;
247
- dropdown: string;
248
- icon?: string | {
249
- name: string;
250
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
251
- } | undefined;
252
- color?: {
253
- light?: string | undefined;
254
- dark?: string | undefined;
255
- } | undefined;
256
- description?: string | undefined;
257
- hidden?: boolean | undefined;
258
- }[] | undefined;
259
- anchors?: {
260
- href: string;
261
- anchor: string;
262
- icon?: string | {
263
- name: string;
264
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
265
- } | undefined;
266
- color?: {
267
- light?: string | undefined;
268
- dark?: string | undefined;
269
- } | undefined;
270
- hidden?: boolean | undefined;
271
- }[] | undefined;
272
- }>>;
9
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
273
10
  languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"default">>, "many">;
274
11
  }, "strip", z.ZodTypeAny, {
275
12
  languages: import("./divisionNav.js").LanguageNavigation<"default">[];
276
- global?: {
277
- languages?: {
278
- href: string;
279
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
280
- default?: boolean | undefined;
281
- hidden?: boolean | undefined;
282
- }[] | undefined;
283
- versions?: {
284
- version: string;
285
- href: string;
286
- default?: boolean | undefined;
287
- hidden?: boolean | undefined;
288
- }[] | undefined;
289
- tabs?: {
290
- href: string;
291
- tab: string;
292
- icon?: string | {
293
- name: string;
294
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
295
- } | undefined;
296
- hidden?: boolean | undefined;
297
- }[] | undefined;
298
- dropdowns?: {
299
- href: string;
300
- dropdown: string;
301
- icon?: string | {
302
- name: string;
303
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
304
- } | undefined;
305
- color?: {
306
- light?: string | undefined;
307
- dark?: string | undefined;
308
- } | undefined;
309
- description?: string | undefined;
310
- hidden?: boolean | undefined;
311
- }[] | undefined;
312
- anchors?: {
313
- href: string;
314
- anchor: string;
315
- icon?: string | {
316
- name: string;
317
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
318
- } | undefined;
319
- color?: {
320
- light?: string | undefined;
321
- dark?: string | undefined;
322
- } | undefined;
323
- hidden?: boolean | undefined;
324
- }[] | undefined;
325
- } | undefined;
13
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
326
14
  }, {
327
15
  languages: import("./divisionNav.js").LanguageNavigation<"default">[];
328
- global?: {
329
- languages?: {
330
- href: string;
331
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
332
- default?: boolean | undefined;
333
- hidden?: boolean | undefined;
334
- }[] | undefined;
335
- versions?: {
336
- version: string;
337
- href: string;
338
- default?: boolean | undefined;
339
- hidden?: boolean | undefined;
340
- }[] | undefined;
341
- tabs?: {
342
- href: string;
343
- tab: string;
344
- icon?: string | {
345
- name: string;
346
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
347
- } | undefined;
348
- hidden?: boolean | undefined;
349
- }[] | undefined;
350
- dropdowns?: {
351
- href: string;
352
- dropdown: string;
353
- icon?: string | {
354
- name: string;
355
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
356
- } | undefined;
357
- color?: {
358
- light?: string | undefined;
359
- dark?: string | undefined;
360
- } | undefined;
361
- description?: string | undefined;
362
- hidden?: boolean | undefined;
363
- }[] | undefined;
364
- anchors?: {
365
- href: string;
366
- anchor: string;
367
- icon?: string | {
368
- name: string;
369
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
370
- } | undefined;
371
- color?: {
372
- light?: string | undefined;
373
- dark?: string | undefined;
374
- } | undefined;
375
- hidden?: boolean | undefined;
376
- }[] | undefined;
377
- } | undefined;
16
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
378
17
  }>, z.ZodObject<{
379
- global: z.ZodOptional<z.ZodObject<{
380
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
381
- default: z.ZodOptional<z.ZodBoolean>;
382
- hidden: z.ZodOptional<z.ZodBoolean>;
383
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
384
- href: z.ZodString;
385
- }, "strip", z.ZodTypeAny, {
386
- href: string;
387
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
388
- default?: boolean | undefined;
389
- hidden?: boolean | undefined;
390
- }, {
391
- href: string;
392
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
393
- default?: boolean | undefined;
394
- hidden?: boolean | undefined;
395
- }>, "many">>;
396
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
397
- version: z.ZodString;
398
- default: z.ZodOptional<z.ZodBoolean>;
399
- hidden: z.ZodOptional<z.ZodBoolean>;
400
- href: z.ZodString;
401
- }, "strip", z.ZodTypeAny, {
402
- version: string;
403
- href: string;
404
- default?: boolean | undefined;
405
- hidden?: boolean | undefined;
406
- }, {
407
- version: string;
408
- href: string;
409
- default?: boolean | undefined;
410
- hidden?: boolean | undefined;
411
- }>, "many">>;
412
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
413
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
414
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
415
- name: z.ZodEffects<z.ZodString, string, string>;
416
- }, "strip", z.ZodTypeAny, {
417
- name: string;
418
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
419
- }, {
420
- name: string;
421
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
422
- }>]>>;
423
- hidden: z.ZodOptional<z.ZodBoolean>;
424
- tab: z.ZodString;
425
- href: z.ZodString;
426
- }, "strip", z.ZodTypeAny, {
427
- href: string;
428
- tab: string;
429
- icon?: string | {
430
- name: string;
431
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
432
- } | undefined;
433
- hidden?: boolean | undefined;
434
- }, {
435
- href: string;
436
- tab: 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
- hidden?: boolean | undefined;
442
- }>, "many">>;
443
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
444
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
445
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
446
- name: z.ZodEffects<z.ZodString, string, string>;
447
- }, "strip", z.ZodTypeAny, {
448
- name: string;
449
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
450
- }, {
451
- name: string;
452
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
453
- }>]>>;
454
- color: z.ZodOptional<z.ZodObject<{
455
- light: z.ZodOptional<z.ZodString>;
456
- dark: z.ZodOptional<z.ZodString>;
457
- }, "strict", z.ZodTypeAny, {
458
- light?: string | undefined;
459
- dark?: string | undefined;
460
- }, {
461
- light?: string | undefined;
462
- dark?: string | undefined;
463
- }>>;
464
- description: z.ZodOptional<z.ZodString>;
465
- hidden: z.ZodOptional<z.ZodBoolean>;
466
- dropdown: z.ZodString;
467
- href: z.ZodString;
468
- }, "strip", z.ZodTypeAny, {
469
- href: string;
470
- dropdown: string;
471
- icon?: string | {
472
- name: string;
473
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
474
- } | undefined;
475
- color?: {
476
- light?: string | undefined;
477
- dark?: string | undefined;
478
- } | undefined;
479
- description?: string | undefined;
480
- hidden?: boolean | undefined;
481
- }, {
482
- href: string;
483
- dropdown: string;
484
- icon?: string | {
485
- name: string;
486
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
487
- } | undefined;
488
- color?: {
489
- light?: string | undefined;
490
- dark?: string | undefined;
491
- } | undefined;
492
- description?: string | undefined;
493
- hidden?: boolean | undefined;
494
- }>, "many">>;
495
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
496
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
497
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
498
- name: z.ZodEffects<z.ZodString, string, string>;
499
- }, "strip", z.ZodTypeAny, {
500
- name: string;
501
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
502
- }, {
503
- name: string;
504
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
505
- }>]>>;
506
- color: z.ZodOptional<z.ZodObject<{
507
- light: z.ZodOptional<z.ZodString>;
508
- dark: z.ZodOptional<z.ZodString>;
509
- }, "strict", z.ZodTypeAny, {
510
- light?: string | undefined;
511
- dark?: string | undefined;
512
- }, {
513
- light?: string | undefined;
514
- dark?: string | undefined;
515
- }>>;
516
- hidden: z.ZodOptional<z.ZodBoolean>;
517
- anchor: z.ZodString;
518
- href: z.ZodString;
519
- }, "strip", z.ZodTypeAny, {
520
- href: string;
521
- anchor: string;
522
- icon?: string | {
523
- name: string;
524
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
525
- } | undefined;
526
- color?: {
527
- light?: string | undefined;
528
- dark?: string | undefined;
529
- } | undefined;
530
- hidden?: boolean | undefined;
531
- }, {
532
- href: string;
533
- anchor: string;
534
- icon?: string | {
535
- name: string;
536
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
537
- } | undefined;
538
- color?: {
539
- light?: string | undefined;
540
- dark?: string | undefined;
541
- } | undefined;
542
- hidden?: boolean | undefined;
543
- }>, "many">>;
544
- }, "strict", z.ZodTypeAny, {
545
- languages?: {
546
- href: string;
547
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
548
- default?: boolean | undefined;
549
- hidden?: boolean | undefined;
550
- }[] | undefined;
551
- versions?: {
552
- version: string;
553
- href: string;
554
- default?: boolean | undefined;
555
- hidden?: boolean | undefined;
556
- }[] | undefined;
557
- tabs?: {
558
- href: string;
559
- tab: string;
560
- icon?: string | {
561
- name: string;
562
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
563
- } | undefined;
564
- hidden?: boolean | undefined;
565
- }[] | undefined;
566
- dropdowns?: {
567
- href: string;
568
- dropdown: string;
569
- icon?: string | {
570
- name: string;
571
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
572
- } | undefined;
573
- color?: {
574
- light?: string | undefined;
575
- dark?: string | undefined;
576
- } | undefined;
577
- description?: string | undefined;
578
- hidden?: boolean | undefined;
579
- }[] | undefined;
580
- anchors?: {
581
- href: string;
582
- anchor: string;
583
- icon?: string | {
584
- name: string;
585
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
586
- } | undefined;
587
- color?: {
588
- light?: string | undefined;
589
- dark?: string | undefined;
590
- } | undefined;
591
- hidden?: boolean | undefined;
592
- }[] | undefined;
593
- }, {
594
- languages?: {
595
- href: string;
596
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
597
- default?: boolean | undefined;
598
- hidden?: boolean | undefined;
599
- }[] | undefined;
600
- versions?: {
601
- version: string;
602
- href: string;
603
- default?: boolean | undefined;
604
- hidden?: boolean | undefined;
605
- }[] | undefined;
606
- tabs?: {
607
- href: string;
608
- tab: string;
609
- icon?: string | {
610
- name: string;
611
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
612
- } | undefined;
613
- hidden?: boolean | undefined;
614
- }[] | undefined;
615
- dropdowns?: {
616
- href: string;
617
- dropdown: string;
618
- icon?: string | {
619
- name: string;
620
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
621
- } | undefined;
622
- color?: {
623
- light?: string | undefined;
624
- dark?: string | undefined;
625
- } | undefined;
626
- description?: string | undefined;
627
- hidden?: boolean | undefined;
628
- }[] | undefined;
629
- anchors?: {
630
- href: string;
631
- anchor: string;
632
- icon?: string | {
633
- name: string;
634
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
635
- } | undefined;
636
- color?: {
637
- light?: string | undefined;
638
- dark?: string | undefined;
639
- } | undefined;
640
- hidden?: boolean | undefined;
641
- }[] | undefined;
642
- }>>;
18
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
643
19
  versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"default">>, "many">;
644
20
  }, "strip", z.ZodTypeAny, {
645
21
  versions: import("./divisionNav.js").VersionNavigation<"default">[];
646
- global?: {
647
- languages?: {
648
- href: string;
649
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
650
- default?: boolean | undefined;
651
- hidden?: boolean | undefined;
652
- }[] | undefined;
653
- versions?: {
654
- version: string;
655
- href: string;
656
- default?: boolean | undefined;
657
- hidden?: boolean | undefined;
658
- }[] | undefined;
659
- tabs?: {
660
- href: string;
661
- tab: string;
662
- icon?: string | {
663
- name: string;
664
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
665
- } | undefined;
666
- hidden?: boolean | undefined;
667
- }[] | undefined;
668
- dropdowns?: {
669
- href: string;
670
- dropdown: string;
671
- icon?: string | {
672
- name: string;
673
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
674
- } | undefined;
675
- color?: {
676
- light?: string | undefined;
677
- dark?: string | undefined;
678
- } | undefined;
679
- description?: string | undefined;
680
- hidden?: boolean | undefined;
681
- }[] | undefined;
682
- anchors?: {
683
- href: string;
684
- anchor: string;
685
- icon?: string | {
686
- name: string;
687
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
688
- } | undefined;
689
- color?: {
690
- light?: string | undefined;
691
- dark?: string | undefined;
692
- } | undefined;
693
- hidden?: boolean | undefined;
694
- }[] | undefined;
695
- } | undefined;
22
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
696
23
  }, {
697
24
  versions: import("./divisionNav.js").VersionNavigation<"default">[];
698
- global?: {
699
- languages?: {
700
- href: string;
701
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
702
- default?: boolean | undefined;
703
- hidden?: boolean | undefined;
704
- }[] | undefined;
705
- versions?: {
706
- version: string;
707
- href: string;
708
- default?: boolean | undefined;
709
- hidden?: boolean | undefined;
710
- }[] | undefined;
711
- tabs?: {
712
- href: string;
713
- tab: string;
714
- icon?: string | {
715
- name: string;
716
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
717
- } | undefined;
718
- hidden?: boolean | undefined;
719
- }[] | undefined;
720
- dropdowns?: {
721
- href: string;
722
- dropdown: string;
723
- icon?: string | {
724
- name: string;
725
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
726
- } | undefined;
727
- color?: {
728
- light?: string | undefined;
729
- dark?: string | undefined;
730
- } | undefined;
731
- description?: string | undefined;
732
- hidden?: boolean | undefined;
733
- }[] | undefined;
734
- anchors?: {
735
- href: string;
736
- anchor: string;
737
- icon?: string | {
738
- name: string;
739
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
740
- } | undefined;
741
- color?: {
742
- light?: string | undefined;
743
- dark?: string | undefined;
744
- } | undefined;
745
- hidden?: boolean | undefined;
746
- }[] | undefined;
747
- } | undefined;
25
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
748
26
  }>, z.ZodObject<{
749
- global: z.ZodOptional<z.ZodObject<{
750
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
751
- default: z.ZodOptional<z.ZodBoolean>;
752
- hidden: z.ZodOptional<z.ZodBoolean>;
753
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
754
- href: z.ZodString;
755
- }, "strip", z.ZodTypeAny, {
756
- href: string;
757
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
758
- default?: boolean | undefined;
759
- hidden?: boolean | undefined;
760
- }, {
761
- href: string;
762
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
763
- default?: boolean | undefined;
764
- hidden?: boolean | undefined;
765
- }>, "many">>;
766
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
767
- version: z.ZodString;
768
- default: z.ZodOptional<z.ZodBoolean>;
769
- hidden: z.ZodOptional<z.ZodBoolean>;
770
- href: z.ZodString;
771
- }, "strip", z.ZodTypeAny, {
772
- version: string;
773
- href: string;
774
- default?: boolean | undefined;
775
- hidden?: boolean | undefined;
776
- }, {
777
- version: string;
778
- href: string;
779
- default?: boolean | undefined;
780
- hidden?: boolean | undefined;
781
- }>, "many">>;
782
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
783
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
784
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
785
- name: z.ZodEffects<z.ZodString, string, string>;
786
- }, "strip", z.ZodTypeAny, {
787
- name: string;
788
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
789
- }, {
790
- name: string;
791
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
792
- }>]>>;
793
- hidden: z.ZodOptional<z.ZodBoolean>;
794
- tab: z.ZodString;
795
- href: z.ZodString;
796
- }, "strip", z.ZodTypeAny, {
797
- href: string;
798
- tab: string;
799
- icon?: string | {
800
- name: string;
801
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
802
- } | undefined;
803
- hidden?: boolean | undefined;
804
- }, {
805
- href: string;
806
- tab: 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
- hidden?: boolean | undefined;
812
- }>, "many">>;
813
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
814
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
815
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
816
- name: z.ZodEffects<z.ZodString, string, string>;
817
- }, "strip", z.ZodTypeAny, {
818
- name: string;
819
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
820
- }, {
821
- name: string;
822
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
823
- }>]>>;
824
- color: z.ZodOptional<z.ZodObject<{
825
- light: z.ZodOptional<z.ZodString>;
826
- dark: z.ZodOptional<z.ZodString>;
827
- }, "strict", z.ZodTypeAny, {
828
- light?: string | undefined;
829
- dark?: string | undefined;
830
- }, {
831
- light?: string | undefined;
832
- dark?: string | undefined;
833
- }>>;
834
- description: z.ZodOptional<z.ZodString>;
835
- hidden: z.ZodOptional<z.ZodBoolean>;
836
- dropdown: z.ZodString;
837
- href: z.ZodString;
838
- }, "strip", z.ZodTypeAny, {
839
- href: string;
840
- dropdown: string;
841
- icon?: string | {
842
- name: string;
843
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
844
- } | undefined;
845
- color?: {
846
- light?: string | undefined;
847
- dark?: string | undefined;
848
- } | undefined;
849
- description?: string | undefined;
850
- hidden?: boolean | undefined;
851
- }, {
852
- href: string;
853
- dropdown: string;
854
- icon?: string | {
855
- name: string;
856
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
857
- } | undefined;
858
- color?: {
859
- light?: string | undefined;
860
- dark?: string | undefined;
861
- } | undefined;
862
- description?: string | undefined;
863
- hidden?: boolean | undefined;
864
- }>, "many">>;
865
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
866
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
867
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
868
- name: z.ZodEffects<z.ZodString, string, string>;
869
- }, "strip", z.ZodTypeAny, {
870
- name: string;
871
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
872
- }, {
873
- name: string;
874
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
875
- }>]>>;
876
- color: z.ZodOptional<z.ZodObject<{
877
- light: z.ZodOptional<z.ZodString>;
878
- dark: z.ZodOptional<z.ZodString>;
879
- }, "strict", z.ZodTypeAny, {
880
- light?: string | undefined;
881
- dark?: string | undefined;
882
- }, {
883
- light?: string | undefined;
884
- dark?: string | undefined;
885
- }>>;
886
- hidden: z.ZodOptional<z.ZodBoolean>;
887
- anchor: z.ZodString;
888
- href: z.ZodString;
889
- }, "strip", z.ZodTypeAny, {
890
- href: string;
891
- anchor: string;
892
- icon?: string | {
893
- name: string;
894
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
895
- } | undefined;
896
- color?: {
897
- light?: string | undefined;
898
- dark?: string | undefined;
899
- } | undefined;
900
- hidden?: boolean | undefined;
901
- }, {
902
- href: string;
903
- anchor: string;
904
- icon?: string | {
905
- name: string;
906
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
907
- } | undefined;
908
- color?: {
909
- light?: string | undefined;
910
- dark?: string | undefined;
911
- } | undefined;
912
- hidden?: boolean | undefined;
913
- }>, "many">>;
914
- }, "strict", z.ZodTypeAny, {
915
- languages?: {
916
- href: string;
917
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
918
- default?: boolean | undefined;
919
- hidden?: boolean | undefined;
920
- }[] | undefined;
921
- versions?: {
922
- version: string;
923
- href: string;
924
- default?: boolean | undefined;
925
- hidden?: boolean | undefined;
926
- }[] | undefined;
927
- tabs?: {
928
- href: string;
929
- tab: string;
930
- icon?: string | {
931
- name: string;
932
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
933
- } | undefined;
934
- hidden?: boolean | undefined;
935
- }[] | undefined;
936
- dropdowns?: {
937
- href: string;
938
- dropdown: string;
939
- icon?: string | {
940
- name: string;
941
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
942
- } | undefined;
943
- color?: {
944
- light?: string | undefined;
945
- dark?: string | undefined;
946
- } | undefined;
947
- description?: string | undefined;
948
- hidden?: boolean | undefined;
949
- }[] | undefined;
950
- anchors?: {
951
- href: string;
952
- anchor: string;
953
- icon?: string | {
954
- name: string;
955
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
956
- } | undefined;
957
- color?: {
958
- light?: string | undefined;
959
- dark?: string | undefined;
960
- } | undefined;
961
- hidden?: boolean | undefined;
962
- }[] | undefined;
963
- }, {
964
- languages?: {
965
- href: string;
966
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
967
- default?: boolean | undefined;
968
- hidden?: boolean | undefined;
969
- }[] | undefined;
970
- versions?: {
971
- version: string;
972
- href: string;
973
- default?: boolean | undefined;
974
- hidden?: boolean | undefined;
975
- }[] | undefined;
976
- tabs?: {
977
- href: string;
978
- tab: string;
979
- icon?: string | {
980
- name: string;
981
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
982
- } | undefined;
983
- hidden?: boolean | undefined;
984
- }[] | undefined;
985
- dropdowns?: {
986
- href: string;
987
- dropdown: string;
988
- icon?: string | {
989
- name: string;
990
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
991
- } | undefined;
992
- color?: {
993
- light?: string | undefined;
994
- dark?: string | undefined;
995
- } | undefined;
996
- description?: string | undefined;
997
- hidden?: boolean | undefined;
998
- }[] | undefined;
999
- anchors?: {
1000
- href: string;
1001
- anchor: string;
1002
- icon?: string | {
1003
- name: string;
1004
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1005
- } | undefined;
1006
- color?: {
1007
- light?: string | undefined;
1008
- dark?: string | undefined;
1009
- } | undefined;
1010
- hidden?: boolean | undefined;
1011
- }[] | undefined;
1012
- }>>;
27
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
1013
28
  tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"default">>, "many">;
1014
29
  }, "strip", z.ZodTypeAny, {
1015
30
  tabs: import("./divisionNav.js").TabNavigation<"default">[];
1016
- global?: {
1017
- languages?: {
1018
- href: string;
1019
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1020
- default?: boolean | undefined;
1021
- hidden?: boolean | undefined;
1022
- }[] | undefined;
1023
- versions?: {
1024
- version: string;
1025
- href: string;
1026
- default?: boolean | undefined;
1027
- hidden?: boolean | undefined;
1028
- }[] | undefined;
1029
- tabs?: {
1030
- href: string;
1031
- tab: string;
1032
- icon?: string | {
1033
- name: string;
1034
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1035
- } | undefined;
1036
- hidden?: boolean | undefined;
1037
- }[] | undefined;
1038
- dropdowns?: {
1039
- href: string;
1040
- dropdown: string;
1041
- icon?: string | {
1042
- name: string;
1043
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1044
- } | undefined;
1045
- color?: {
1046
- light?: string | undefined;
1047
- dark?: string | undefined;
1048
- } | undefined;
1049
- description?: string | undefined;
1050
- hidden?: boolean | undefined;
1051
- }[] | undefined;
1052
- anchors?: {
1053
- href: string;
1054
- anchor: string;
1055
- icon?: string | {
1056
- name: string;
1057
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1058
- } | undefined;
1059
- color?: {
1060
- light?: string | undefined;
1061
- dark?: string | undefined;
1062
- } | undefined;
1063
- hidden?: boolean | undefined;
1064
- }[] | undefined;
1065
- } | undefined;
31
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1066
32
  }, {
1067
33
  tabs: import("./divisionNav.js").TabNavigation<"default">[];
1068
- global?: {
1069
- languages?: {
1070
- href: string;
1071
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1072
- default?: boolean | undefined;
1073
- hidden?: boolean | undefined;
1074
- }[] | undefined;
1075
- versions?: {
1076
- version: string;
1077
- href: string;
1078
- default?: boolean | undefined;
1079
- hidden?: boolean | undefined;
1080
- }[] | undefined;
1081
- tabs?: {
1082
- href: string;
1083
- tab: string;
1084
- icon?: string | {
1085
- name: string;
1086
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1087
- } | undefined;
1088
- hidden?: boolean | undefined;
1089
- }[] | undefined;
1090
- dropdowns?: {
1091
- href: string;
1092
- dropdown: string;
1093
- icon?: string | {
1094
- name: string;
1095
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1096
- } | undefined;
1097
- color?: {
1098
- light?: string | undefined;
1099
- dark?: string | undefined;
1100
- } | undefined;
1101
- description?: string | undefined;
1102
- hidden?: boolean | undefined;
1103
- }[] | undefined;
1104
- anchors?: {
1105
- href: string;
1106
- anchor: string;
1107
- icon?: string | {
1108
- name: string;
1109
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1110
- } | undefined;
1111
- color?: {
1112
- light?: string | undefined;
1113
- dark?: string | undefined;
1114
- } | undefined;
1115
- hidden?: boolean | undefined;
1116
- }[] | undefined;
1117
- } | undefined;
34
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1118
35
  }>, z.ZodObject<{
1119
- global: z.ZodOptional<z.ZodObject<{
1120
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1121
- default: z.ZodOptional<z.ZodBoolean>;
1122
- hidden: z.ZodOptional<z.ZodBoolean>;
1123
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1124
- href: z.ZodString;
1125
- }, "strip", z.ZodTypeAny, {
1126
- href: string;
1127
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1128
- default?: boolean | undefined;
1129
- hidden?: boolean | undefined;
1130
- }, {
1131
- href: string;
1132
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1133
- default?: boolean | undefined;
1134
- hidden?: boolean | undefined;
1135
- }>, "many">>;
1136
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1137
- version: z.ZodString;
1138
- default: z.ZodOptional<z.ZodBoolean>;
1139
- hidden: z.ZodOptional<z.ZodBoolean>;
1140
- href: z.ZodString;
1141
- }, "strip", z.ZodTypeAny, {
1142
- version: string;
1143
- href: string;
1144
- default?: boolean | undefined;
1145
- hidden?: boolean | undefined;
1146
- }, {
1147
- version: string;
1148
- href: string;
1149
- default?: boolean | undefined;
1150
- hidden?: boolean | undefined;
1151
- }>, "many">>;
1152
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1153
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1154
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1155
- name: z.ZodEffects<z.ZodString, string, string>;
1156
- }, "strip", z.ZodTypeAny, {
1157
- name: string;
1158
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1159
- }, {
1160
- name: string;
1161
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1162
- }>]>>;
1163
- hidden: z.ZodOptional<z.ZodBoolean>;
1164
- tab: z.ZodString;
1165
- href: z.ZodString;
1166
- }, "strip", z.ZodTypeAny, {
1167
- href: string;
1168
- tab: string;
1169
- icon?: string | {
1170
- name: string;
1171
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1172
- } | undefined;
1173
- hidden?: boolean | undefined;
1174
- }, {
1175
- href: string;
1176
- tab: 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
- hidden?: boolean | undefined;
1182
- }>, "many">>;
1183
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
1184
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1185
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1186
- name: z.ZodEffects<z.ZodString, string, string>;
1187
- }, "strip", z.ZodTypeAny, {
1188
- name: string;
1189
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1190
- }, {
1191
- name: string;
1192
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1193
- }>]>>;
1194
- color: z.ZodOptional<z.ZodObject<{
1195
- light: z.ZodOptional<z.ZodString>;
1196
- dark: z.ZodOptional<z.ZodString>;
1197
- }, "strict", z.ZodTypeAny, {
1198
- light?: string | undefined;
1199
- dark?: string | undefined;
1200
- }, {
1201
- light?: string | undefined;
1202
- dark?: string | undefined;
1203
- }>>;
1204
- description: z.ZodOptional<z.ZodString>;
1205
- hidden: z.ZodOptional<z.ZodBoolean>;
1206
- dropdown: z.ZodString;
1207
- href: z.ZodString;
1208
- }, "strip", z.ZodTypeAny, {
1209
- href: string;
1210
- dropdown: string;
1211
- icon?: string | {
1212
- name: string;
1213
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1214
- } | undefined;
1215
- color?: {
1216
- light?: string | undefined;
1217
- dark?: string | undefined;
1218
- } | undefined;
1219
- description?: string | undefined;
1220
- hidden?: boolean | undefined;
1221
- }, {
1222
- href: string;
1223
- dropdown: string;
1224
- icon?: string | {
1225
- name: string;
1226
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1227
- } | undefined;
1228
- color?: {
1229
- light?: string | undefined;
1230
- dark?: string | undefined;
1231
- } | undefined;
1232
- description?: string | undefined;
1233
- hidden?: boolean | undefined;
1234
- }>, "many">>;
1235
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1236
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1237
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1238
- name: z.ZodEffects<z.ZodString, string, string>;
1239
- }, "strip", z.ZodTypeAny, {
1240
- name: string;
1241
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1242
- }, {
1243
- name: string;
1244
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1245
- }>]>>;
1246
- color: z.ZodOptional<z.ZodObject<{
1247
- light: z.ZodOptional<z.ZodString>;
1248
- dark: z.ZodOptional<z.ZodString>;
1249
- }, "strict", z.ZodTypeAny, {
1250
- light?: string | undefined;
1251
- dark?: string | undefined;
1252
- }, {
1253
- light?: string | undefined;
1254
- dark?: string | undefined;
1255
- }>>;
1256
- hidden: z.ZodOptional<z.ZodBoolean>;
1257
- anchor: z.ZodString;
1258
- href: z.ZodString;
1259
- }, "strip", z.ZodTypeAny, {
1260
- href: string;
1261
- anchor: string;
1262
- icon?: string | {
1263
- name: string;
1264
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1265
- } | undefined;
1266
- color?: {
1267
- light?: string | undefined;
1268
- dark?: string | undefined;
1269
- } | undefined;
1270
- hidden?: boolean | undefined;
1271
- }, {
1272
- href: string;
1273
- anchor: string;
1274
- icon?: string | {
1275
- name: string;
1276
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1277
- } | undefined;
1278
- color?: {
1279
- light?: string | undefined;
1280
- dark?: string | undefined;
1281
- } | undefined;
1282
- hidden?: boolean | undefined;
1283
- }>, "many">>;
1284
- }, "strict", z.ZodTypeAny, {
1285
- languages?: {
1286
- href: string;
1287
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1288
- default?: boolean | undefined;
1289
- hidden?: boolean | undefined;
1290
- }[] | undefined;
1291
- versions?: {
1292
- version: string;
1293
- href: string;
1294
- default?: boolean | undefined;
1295
- hidden?: boolean | undefined;
1296
- }[] | undefined;
1297
- tabs?: {
1298
- href: string;
1299
- tab: string;
1300
- icon?: string | {
1301
- name: string;
1302
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1303
- } | undefined;
1304
- hidden?: boolean | undefined;
1305
- }[] | undefined;
1306
- dropdowns?: {
1307
- href: string;
1308
- dropdown: string;
1309
- icon?: string | {
1310
- name: string;
1311
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1312
- } | undefined;
1313
- color?: {
1314
- light?: string | undefined;
1315
- dark?: string | undefined;
1316
- } | undefined;
1317
- description?: string | undefined;
1318
- hidden?: boolean | undefined;
1319
- }[] | undefined;
1320
- anchors?: {
1321
- href: string;
1322
- anchor: string;
1323
- icon?: string | {
1324
- name: string;
1325
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1326
- } | undefined;
1327
- color?: {
1328
- light?: string | undefined;
1329
- dark?: string | undefined;
1330
- } | undefined;
1331
- hidden?: boolean | undefined;
1332
- }[] | undefined;
1333
- }, {
1334
- languages?: {
1335
- href: string;
1336
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1337
- default?: boolean | undefined;
1338
- hidden?: boolean | undefined;
1339
- }[] | undefined;
1340
- versions?: {
1341
- version: string;
1342
- href: string;
1343
- default?: boolean | undefined;
1344
- hidden?: boolean | undefined;
1345
- }[] | undefined;
1346
- tabs?: {
1347
- href: string;
1348
- tab: string;
1349
- icon?: string | {
1350
- name: string;
1351
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1352
- } | undefined;
1353
- hidden?: boolean | undefined;
1354
- }[] | undefined;
1355
- dropdowns?: {
1356
- href: string;
1357
- dropdown: string;
1358
- icon?: string | {
1359
- name: string;
1360
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1361
- } | undefined;
1362
- color?: {
1363
- light?: string | undefined;
1364
- dark?: string | undefined;
1365
- } | undefined;
1366
- description?: string | undefined;
1367
- hidden?: boolean | undefined;
1368
- }[] | undefined;
1369
- anchors?: {
1370
- href: string;
1371
- anchor: string;
1372
- icon?: string | {
1373
- name: string;
1374
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1375
- } | undefined;
1376
- color?: {
1377
- light?: string | undefined;
1378
- dark?: string | undefined;
1379
- } | undefined;
1380
- hidden?: boolean | undefined;
1381
- }[] | undefined;
1382
- }>>;
36
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
1383
37
  dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"default">>, "many">;
1384
38
  }, "strip", z.ZodTypeAny, {
1385
39
  dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
1386
- global?: {
1387
- languages?: {
1388
- href: string;
1389
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1390
- default?: boolean | undefined;
1391
- hidden?: boolean | undefined;
1392
- }[] | undefined;
1393
- versions?: {
1394
- version: string;
1395
- href: string;
1396
- default?: boolean | undefined;
1397
- hidden?: boolean | undefined;
1398
- }[] | undefined;
1399
- tabs?: {
1400
- href: string;
1401
- tab: string;
1402
- icon?: string | {
1403
- name: string;
1404
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1405
- } | undefined;
1406
- hidden?: boolean | undefined;
1407
- }[] | undefined;
1408
- dropdowns?: {
1409
- href: string;
1410
- dropdown: string;
1411
- icon?: string | {
1412
- name: string;
1413
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1414
- } | undefined;
1415
- color?: {
1416
- light?: string | undefined;
1417
- dark?: string | undefined;
1418
- } | undefined;
1419
- description?: string | undefined;
1420
- hidden?: boolean | undefined;
1421
- }[] | undefined;
1422
- anchors?: {
1423
- href: string;
1424
- anchor: string;
1425
- icon?: string | {
1426
- name: string;
1427
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1428
- } | undefined;
1429
- color?: {
1430
- light?: string | undefined;
1431
- dark?: string | undefined;
1432
- } | undefined;
1433
- hidden?: boolean | undefined;
1434
- }[] | undefined;
1435
- } | undefined;
40
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1436
41
  }, {
1437
42
  dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
1438
- global?: {
1439
- languages?: {
1440
- href: string;
1441
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1442
- default?: boolean | undefined;
1443
- hidden?: boolean | undefined;
1444
- }[] | undefined;
1445
- versions?: {
1446
- version: string;
1447
- href: string;
1448
- default?: boolean | undefined;
1449
- hidden?: boolean | undefined;
1450
- }[] | undefined;
1451
- tabs?: {
1452
- href: string;
1453
- tab: string;
1454
- icon?: string | {
1455
- name: string;
1456
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1457
- } | undefined;
1458
- hidden?: boolean | undefined;
1459
- }[] | undefined;
1460
- dropdowns?: {
1461
- href: string;
1462
- dropdown: string;
1463
- icon?: string | {
1464
- name: string;
1465
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1466
- } | undefined;
1467
- color?: {
1468
- light?: string | undefined;
1469
- dark?: string | undefined;
1470
- } | undefined;
1471
- description?: string | undefined;
1472
- hidden?: boolean | undefined;
1473
- }[] | undefined;
1474
- anchors?: {
1475
- href: string;
1476
- anchor: string;
1477
- icon?: string | {
1478
- name: string;
1479
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1480
- } | undefined;
1481
- color?: {
1482
- light?: string | undefined;
1483
- dark?: string | undefined;
1484
- } | undefined;
1485
- hidden?: boolean | undefined;
1486
- }[] | undefined;
1487
- } | undefined;
43
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1488
44
  }>, z.ZodObject<{
1489
- global: z.ZodOptional<z.ZodObject<{
1490
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1491
- default: z.ZodOptional<z.ZodBoolean>;
1492
- hidden: z.ZodOptional<z.ZodBoolean>;
1493
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1494
- href: z.ZodString;
1495
- }, "strip", z.ZodTypeAny, {
1496
- href: string;
1497
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1498
- default?: boolean | undefined;
1499
- hidden?: boolean | undefined;
1500
- }, {
1501
- href: string;
1502
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1503
- default?: boolean | undefined;
1504
- hidden?: boolean | undefined;
1505
- }>, "many">>;
1506
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1507
- version: z.ZodString;
1508
- default: z.ZodOptional<z.ZodBoolean>;
1509
- hidden: z.ZodOptional<z.ZodBoolean>;
1510
- href: z.ZodString;
1511
- }, "strip", z.ZodTypeAny, {
1512
- version: string;
1513
- href: string;
1514
- default?: boolean | undefined;
1515
- hidden?: boolean | undefined;
1516
- }, {
1517
- version: string;
1518
- href: string;
1519
- default?: boolean | undefined;
1520
- hidden?: boolean | undefined;
1521
- }>, "many">>;
1522
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1523
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1524
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1525
- name: z.ZodEffects<z.ZodString, string, string>;
1526
- }, "strip", z.ZodTypeAny, {
1527
- name: string;
1528
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1529
- }, {
1530
- name: string;
1531
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1532
- }>]>>;
1533
- hidden: z.ZodOptional<z.ZodBoolean>;
1534
- tab: z.ZodString;
1535
- href: z.ZodString;
1536
- }, "strip", z.ZodTypeAny, {
1537
- href: string;
1538
- tab: string;
1539
- icon?: string | {
1540
- name: string;
1541
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1542
- } | undefined;
1543
- hidden?: boolean | undefined;
1544
- }, {
1545
- href: string;
1546
- tab: 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
- hidden?: boolean | undefined;
1552
- }>, "many">>;
1553
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
1554
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1555
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1556
- name: z.ZodEffects<z.ZodString, string, string>;
1557
- }, "strip", z.ZodTypeAny, {
1558
- name: string;
1559
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1560
- }, {
1561
- name: string;
1562
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1563
- }>]>>;
1564
- color: z.ZodOptional<z.ZodObject<{
1565
- light: z.ZodOptional<z.ZodString>;
1566
- dark: z.ZodOptional<z.ZodString>;
1567
- }, "strict", z.ZodTypeAny, {
1568
- light?: string | undefined;
1569
- dark?: string | undefined;
1570
- }, {
1571
- light?: string | undefined;
1572
- dark?: string | undefined;
1573
- }>>;
1574
- description: z.ZodOptional<z.ZodString>;
1575
- hidden: z.ZodOptional<z.ZodBoolean>;
1576
- dropdown: z.ZodString;
1577
- href: z.ZodString;
1578
- }, "strip", z.ZodTypeAny, {
1579
- href: string;
1580
- dropdown: string;
1581
- icon?: string | {
1582
- name: string;
1583
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1584
- } | undefined;
1585
- color?: {
1586
- light?: string | undefined;
1587
- dark?: string | undefined;
1588
- } | undefined;
1589
- description?: string | undefined;
1590
- hidden?: boolean | undefined;
1591
- }, {
1592
- href: string;
1593
- dropdown: string;
1594
- icon?: string | {
1595
- name: string;
1596
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1597
- } | undefined;
1598
- color?: {
1599
- light?: string | undefined;
1600
- dark?: string | undefined;
1601
- } | undefined;
1602
- description?: string | undefined;
1603
- hidden?: boolean | undefined;
1604
- }>, "many">>;
1605
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1606
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1607
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1608
- name: z.ZodEffects<z.ZodString, string, string>;
1609
- }, "strip", z.ZodTypeAny, {
1610
- name: string;
1611
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1612
- }, {
1613
- name: string;
1614
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1615
- }>]>>;
1616
- color: z.ZodOptional<z.ZodObject<{
1617
- light: z.ZodOptional<z.ZodString>;
1618
- dark: z.ZodOptional<z.ZodString>;
1619
- }, "strict", z.ZodTypeAny, {
1620
- light?: string | undefined;
1621
- dark?: string | undefined;
1622
- }, {
1623
- light?: string | undefined;
1624
- dark?: string | undefined;
1625
- }>>;
1626
- hidden: z.ZodOptional<z.ZodBoolean>;
1627
- anchor: z.ZodString;
1628
- href: z.ZodString;
1629
- }, "strip", z.ZodTypeAny, {
1630
- href: string;
1631
- anchor: string;
1632
- icon?: string | {
1633
- name: string;
1634
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1635
- } | undefined;
1636
- color?: {
1637
- light?: string | undefined;
1638
- dark?: string | undefined;
1639
- } | undefined;
1640
- hidden?: boolean | undefined;
1641
- }, {
1642
- href: string;
1643
- anchor: string;
1644
- icon?: string | {
1645
- name: string;
1646
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1647
- } | undefined;
1648
- color?: {
1649
- light?: string | undefined;
1650
- dark?: string | undefined;
1651
- } | undefined;
1652
- hidden?: boolean | undefined;
1653
- }>, "many">>;
1654
- }, "strict", z.ZodTypeAny, {
1655
- languages?: {
1656
- href: string;
1657
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1658
- default?: boolean | undefined;
1659
- hidden?: boolean | undefined;
1660
- }[] | undefined;
1661
- versions?: {
1662
- version: string;
1663
- href: string;
1664
- default?: boolean | undefined;
1665
- hidden?: boolean | undefined;
1666
- }[] | undefined;
1667
- tabs?: {
1668
- href: string;
1669
- tab: string;
1670
- icon?: string | {
1671
- name: string;
1672
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1673
- } | undefined;
1674
- hidden?: boolean | undefined;
1675
- }[] | undefined;
1676
- dropdowns?: {
1677
- href: string;
1678
- dropdown: string;
1679
- icon?: string | {
1680
- name: string;
1681
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1682
- } | undefined;
1683
- color?: {
1684
- light?: string | undefined;
1685
- dark?: string | undefined;
1686
- } | undefined;
1687
- description?: string | undefined;
1688
- hidden?: boolean | undefined;
1689
- }[] | undefined;
1690
- anchors?: {
1691
- href: string;
1692
- anchor: string;
1693
- icon?: string | {
1694
- name: string;
1695
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1696
- } | undefined;
1697
- color?: {
1698
- light?: string | undefined;
1699
- dark?: string | undefined;
1700
- } | undefined;
1701
- hidden?: boolean | undefined;
1702
- }[] | undefined;
1703
- }, {
1704
- languages?: {
1705
- href: string;
1706
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1707
- default?: boolean | undefined;
1708
- hidden?: boolean | undefined;
1709
- }[] | undefined;
1710
- versions?: {
1711
- version: string;
1712
- href: string;
1713
- default?: boolean | undefined;
1714
- hidden?: boolean | undefined;
1715
- }[] | undefined;
1716
- tabs?: {
1717
- href: string;
1718
- tab: string;
1719
- icon?: string | {
1720
- name: string;
1721
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1722
- } | undefined;
1723
- hidden?: boolean | undefined;
1724
- }[] | undefined;
1725
- dropdowns?: {
1726
- href: string;
1727
- dropdown: string;
1728
- icon?: string | {
1729
- name: string;
1730
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1731
- } | undefined;
1732
- color?: {
1733
- light?: string | undefined;
1734
- dark?: string | undefined;
1735
- } | undefined;
1736
- description?: string | undefined;
1737
- hidden?: boolean | undefined;
1738
- }[] | undefined;
1739
- anchors?: {
1740
- href: string;
1741
- anchor: string;
1742
- icon?: string | {
1743
- name: string;
1744
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1745
- } | undefined;
1746
- color?: {
1747
- light?: string | undefined;
1748
- dark?: string | undefined;
1749
- } | undefined;
1750
- hidden?: boolean | undefined;
1751
- }[] | undefined;
1752
- }>>;
45
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
1753
46
  anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"default">>, "many">;
1754
47
  }, "strip", z.ZodTypeAny, {
1755
48
  anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
1756
- global?: {
1757
- languages?: {
1758
- href: string;
1759
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1760
- default?: boolean | undefined;
1761
- hidden?: boolean | undefined;
1762
- }[] | undefined;
1763
- versions?: {
1764
- version: string;
1765
- href: string;
1766
- default?: boolean | undefined;
1767
- hidden?: boolean | undefined;
1768
- }[] | undefined;
1769
- tabs?: {
1770
- href: string;
1771
- tab: string;
1772
- icon?: string | {
1773
- name: string;
1774
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1775
- } | undefined;
1776
- hidden?: boolean | undefined;
1777
- }[] | undefined;
1778
- dropdowns?: {
1779
- href: string;
1780
- dropdown: string;
1781
- icon?: string | {
1782
- name: string;
1783
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1784
- } | undefined;
1785
- color?: {
1786
- light?: string | undefined;
1787
- dark?: string | undefined;
1788
- } | undefined;
1789
- description?: string | undefined;
1790
- hidden?: boolean | undefined;
1791
- }[] | undefined;
1792
- anchors?: {
1793
- href: string;
1794
- anchor: string;
1795
- icon?: string | {
1796
- name: string;
1797
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1798
- } | undefined;
1799
- color?: {
1800
- light?: string | undefined;
1801
- dark?: string | undefined;
1802
- } | undefined;
1803
- hidden?: boolean | undefined;
1804
- }[] | undefined;
1805
- } | undefined;
49
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1806
50
  }, {
1807
51
  anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
1808
- global?: {
1809
- languages?: {
1810
- href: string;
1811
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1812
- default?: boolean | undefined;
1813
- hidden?: boolean | undefined;
1814
- }[] | undefined;
1815
- versions?: {
1816
- version: string;
1817
- href: string;
1818
- default?: boolean | undefined;
1819
- hidden?: boolean | undefined;
1820
- }[] | undefined;
1821
- tabs?: {
1822
- href: string;
1823
- tab: string;
1824
- icon?: string | {
1825
- name: string;
1826
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1827
- } | undefined;
1828
- hidden?: boolean | undefined;
1829
- }[] | undefined;
1830
- dropdowns?: {
1831
- href: string;
1832
- dropdown: string;
1833
- icon?: string | {
1834
- name: string;
1835
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1836
- } | undefined;
1837
- color?: {
1838
- light?: string | undefined;
1839
- dark?: string | undefined;
1840
- } | undefined;
1841
- description?: string | undefined;
1842
- hidden?: boolean | undefined;
1843
- }[] | undefined;
1844
- anchors?: {
1845
- href: string;
1846
- anchor: string;
1847
- icon?: string | {
1848
- name: string;
1849
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1850
- } | undefined;
1851
- color?: {
1852
- light?: string | undefined;
1853
- dark?: string | undefined;
1854
- } | undefined;
1855
- hidden?: boolean | undefined;
1856
- }[] | undefined;
1857
- } | undefined;
52
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
1858
53
  }>, z.ZodObject<{
1859
- global: z.ZodOptional<z.ZodObject<{
1860
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1861
- default: z.ZodOptional<z.ZodBoolean>;
1862
- hidden: z.ZodOptional<z.ZodBoolean>;
1863
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1864
- href: z.ZodString;
1865
- }, "strip", z.ZodTypeAny, {
1866
- href: string;
1867
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1868
- default?: boolean | undefined;
1869
- hidden?: boolean | undefined;
1870
- }, {
1871
- href: string;
1872
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1873
- default?: boolean | undefined;
1874
- hidden?: boolean | undefined;
1875
- }>, "many">>;
1876
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1877
- version: z.ZodString;
1878
- default: z.ZodOptional<z.ZodBoolean>;
1879
- hidden: z.ZodOptional<z.ZodBoolean>;
1880
- href: z.ZodString;
1881
- }, "strip", z.ZodTypeAny, {
1882
- version: string;
1883
- href: string;
1884
- default?: boolean | undefined;
1885
- hidden?: boolean | undefined;
1886
- }, {
1887
- version: string;
1888
- href: string;
1889
- default?: boolean | undefined;
1890
- hidden?: boolean | undefined;
1891
- }>, "many">>;
1892
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1893
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1894
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1895
- name: z.ZodEffects<z.ZodString, string, string>;
1896
- }, "strip", z.ZodTypeAny, {
1897
- name: string;
1898
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1899
- }, {
1900
- name: string;
1901
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1902
- }>]>>;
1903
- hidden: z.ZodOptional<z.ZodBoolean>;
1904
- tab: z.ZodString;
1905
- href: z.ZodString;
1906
- }, "strip", z.ZodTypeAny, {
1907
- href: string;
1908
- tab: string;
1909
- icon?: string | {
1910
- name: string;
1911
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1912
- } | undefined;
1913
- hidden?: boolean | undefined;
1914
- }, {
1915
- href: string;
1916
- tab: 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
- hidden?: boolean | undefined;
1922
- }>, "many">>;
1923
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
1924
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1925
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1926
- name: z.ZodEffects<z.ZodString, string, string>;
1927
- }, "strip", z.ZodTypeAny, {
1928
- name: string;
1929
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1930
- }, {
1931
- name: string;
1932
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1933
- }>]>>;
1934
- color: z.ZodOptional<z.ZodObject<{
1935
- light: z.ZodOptional<z.ZodString>;
1936
- dark: z.ZodOptional<z.ZodString>;
1937
- }, "strict", z.ZodTypeAny, {
1938
- light?: string | undefined;
1939
- dark?: string | undefined;
1940
- }, {
1941
- light?: string | undefined;
1942
- dark?: string | undefined;
1943
- }>>;
1944
- description: z.ZodOptional<z.ZodString>;
1945
- hidden: z.ZodOptional<z.ZodBoolean>;
1946
- dropdown: z.ZodString;
1947
- href: z.ZodString;
1948
- }, "strip", z.ZodTypeAny, {
1949
- href: string;
1950
- dropdown: string;
1951
- icon?: string | {
1952
- name: string;
1953
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1954
- } | undefined;
1955
- color?: {
1956
- light?: string | undefined;
1957
- dark?: string | undefined;
1958
- } | undefined;
1959
- description?: string | undefined;
1960
- hidden?: boolean | undefined;
1961
- }, {
1962
- href: string;
1963
- dropdown: string;
1964
- icon?: string | {
1965
- name: string;
1966
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1967
- } | undefined;
1968
- color?: {
1969
- light?: string | undefined;
1970
- dark?: string | undefined;
1971
- } | undefined;
1972
- description?: string | undefined;
1973
- hidden?: boolean | undefined;
1974
- }>, "many">>;
1975
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1976
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1977
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1978
- name: z.ZodEffects<z.ZodString, string, string>;
1979
- }, "strip", z.ZodTypeAny, {
1980
- name: string;
1981
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1982
- }, {
1983
- name: string;
1984
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1985
- }>]>>;
1986
- color: z.ZodOptional<z.ZodObject<{
1987
- light: z.ZodOptional<z.ZodString>;
1988
- dark: z.ZodOptional<z.ZodString>;
1989
- }, "strict", z.ZodTypeAny, {
1990
- light?: string | undefined;
1991
- dark?: string | undefined;
1992
- }, {
1993
- light?: string | undefined;
1994
- dark?: string | undefined;
1995
- }>>;
1996
- hidden: z.ZodOptional<z.ZodBoolean>;
1997
- anchor: z.ZodString;
1998
- href: z.ZodString;
1999
- }, "strip", z.ZodTypeAny, {
2000
- href: string;
2001
- anchor: string;
2002
- icon?: string | {
2003
- name: string;
2004
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2005
- } | undefined;
2006
- color?: {
2007
- light?: string | undefined;
2008
- dark?: string | undefined;
2009
- } | undefined;
2010
- hidden?: boolean | undefined;
2011
- }, {
2012
- href: string;
2013
- anchor: string;
2014
- icon?: string | {
2015
- name: string;
2016
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2017
- } | undefined;
2018
- color?: {
2019
- light?: string | undefined;
2020
- dark?: string | undefined;
2021
- } | undefined;
2022
- hidden?: boolean | undefined;
2023
- }>, "many">>;
2024
- }, "strict", z.ZodTypeAny, {
2025
- languages?: {
2026
- href: string;
2027
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2028
- default?: boolean | undefined;
2029
- hidden?: boolean | undefined;
2030
- }[] | undefined;
2031
- versions?: {
2032
- version: string;
2033
- href: string;
2034
- default?: boolean | undefined;
2035
- hidden?: boolean | undefined;
2036
- }[] | undefined;
2037
- tabs?: {
2038
- href: string;
2039
- tab: string;
2040
- icon?: string | {
2041
- name: string;
2042
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2043
- } | undefined;
2044
- hidden?: boolean | undefined;
2045
- }[] | undefined;
2046
- dropdowns?: {
2047
- href: string;
2048
- dropdown: string;
2049
- icon?: string | {
2050
- name: string;
2051
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2052
- } | undefined;
2053
- color?: {
2054
- light?: string | undefined;
2055
- dark?: string | undefined;
2056
- } | undefined;
2057
- description?: string | undefined;
2058
- hidden?: boolean | undefined;
2059
- }[] | undefined;
2060
- anchors?: {
2061
- href: string;
2062
- anchor: string;
2063
- icon?: string | {
2064
- name: string;
2065
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2066
- } | undefined;
2067
- color?: {
2068
- light?: string | undefined;
2069
- dark?: string | undefined;
2070
- } | undefined;
2071
- hidden?: boolean | undefined;
2072
- }[] | undefined;
2073
- }, {
2074
- languages?: {
2075
- href: string;
2076
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2077
- default?: boolean | undefined;
2078
- hidden?: boolean | undefined;
2079
- }[] | undefined;
2080
- versions?: {
2081
- version: string;
2082
- href: string;
2083
- default?: boolean | undefined;
2084
- hidden?: boolean | undefined;
2085
- }[] | undefined;
2086
- tabs?: {
2087
- href: string;
2088
- tab: string;
2089
- icon?: string | {
2090
- name: string;
2091
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2092
- } | undefined;
2093
- hidden?: boolean | undefined;
2094
- }[] | undefined;
2095
- dropdowns?: {
2096
- href: string;
2097
- dropdown: string;
2098
- icon?: string | {
2099
- name: string;
2100
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2101
- } | undefined;
2102
- color?: {
2103
- light?: string | undefined;
2104
- dark?: string | undefined;
2105
- } | undefined;
2106
- description?: string | undefined;
2107
- hidden?: boolean | undefined;
2108
- }[] | undefined;
2109
- anchors?: {
2110
- href: string;
2111
- anchor: string;
2112
- icon?: string | {
2113
- name: string;
2114
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2115
- } | undefined;
2116
- color?: {
2117
- light?: string | undefined;
2118
- dark?: string | undefined;
2119
- } | undefined;
2120
- hidden?: boolean | undefined;
2121
- }[] | undefined;
2122
- }>>;
54
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
2123
55
  groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
2124
56
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2125
57
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -2234,56 +166,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
2234
166
  hidden?: boolean | undefined;
2235
167
  root?: string | undefined;
2236
168
  })[];
2237
- global?: {
2238
- languages?: {
2239
- href: string;
2240
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2241
- default?: boolean | undefined;
2242
- hidden?: boolean | undefined;
2243
- }[] | undefined;
2244
- versions?: {
2245
- version: string;
2246
- href: string;
2247
- default?: boolean | undefined;
2248
- hidden?: boolean | undefined;
2249
- }[] | undefined;
2250
- tabs?: {
2251
- href: string;
2252
- tab: string;
2253
- icon?: string | {
2254
- name: string;
2255
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2256
- } | undefined;
2257
- hidden?: boolean | undefined;
2258
- }[] | undefined;
2259
- dropdowns?: {
2260
- href: string;
2261
- dropdown: string;
2262
- icon?: string | {
2263
- name: string;
2264
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2265
- } | undefined;
2266
- color?: {
2267
- light?: string | undefined;
2268
- dark?: string | undefined;
2269
- } | undefined;
2270
- description?: string | undefined;
2271
- hidden?: boolean | undefined;
2272
- }[] | undefined;
2273
- anchors?: {
2274
- href: string;
2275
- anchor: string;
2276
- icon?: string | {
2277
- name: string;
2278
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2279
- } | undefined;
2280
- color?: {
2281
- light?: string | undefined;
2282
- dark?: string | undefined;
2283
- } | undefined;
2284
- hidden?: boolean | undefined;
2285
- }[] | undefined;
2286
- } | undefined;
169
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
2287
170
  }, {
2288
171
  groups: ({
2289
172
  openapi: (string | string[] | {
@@ -2310,426 +193,16 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
2310
193
  hidden?: boolean | undefined;
2311
194
  root?: string | undefined;
2312
195
  })[];
2313
- global?: {
2314
- languages?: {
2315
- href: string;
2316
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2317
- default?: boolean | undefined;
2318
- hidden?: boolean | undefined;
2319
- }[] | undefined;
2320
- versions?: {
2321
- version: string;
2322
- href: string;
2323
- default?: boolean | undefined;
2324
- hidden?: boolean | undefined;
2325
- }[] | undefined;
2326
- tabs?: {
2327
- href: string;
2328
- tab: string;
2329
- icon?: string | {
2330
- name: string;
2331
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2332
- } | undefined;
2333
- hidden?: boolean | undefined;
2334
- }[] | undefined;
2335
- dropdowns?: {
2336
- href: string;
2337
- dropdown: string;
2338
- icon?: string | {
2339
- name: string;
2340
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2341
- } | undefined;
2342
- color?: {
2343
- light?: string | undefined;
2344
- dark?: string | undefined;
2345
- } | undefined;
2346
- description?: string | undefined;
2347
- hidden?: boolean | undefined;
2348
- }[] | undefined;
2349
- anchors?: {
2350
- href: string;
2351
- anchor: string;
2352
- icon?: string | {
2353
- name: string;
2354
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2355
- } | undefined;
2356
- color?: {
2357
- light?: string | undefined;
2358
- dark?: string | undefined;
2359
- } | undefined;
2360
- hidden?: boolean | undefined;
2361
- }[] | undefined;
2362
- } | undefined;
196
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
2363
197
  }>, z.ZodObject<{
2364
- global: z.ZodOptional<z.ZodObject<{
2365
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
2366
- default: z.ZodOptional<z.ZodBoolean>;
2367
- hidden: z.ZodOptional<z.ZodBoolean>;
2368
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2369
- href: z.ZodString;
2370
- }, "strip", z.ZodTypeAny, {
2371
- href: string;
2372
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2373
- default?: boolean | undefined;
2374
- hidden?: boolean | undefined;
2375
- }, {
2376
- href: string;
2377
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2378
- default?: boolean | undefined;
2379
- hidden?: boolean | undefined;
2380
- }>, "many">>;
2381
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2382
- version: z.ZodString;
2383
- default: z.ZodOptional<z.ZodBoolean>;
2384
- hidden: z.ZodOptional<z.ZodBoolean>;
2385
- href: z.ZodString;
2386
- }, "strip", z.ZodTypeAny, {
2387
- version: string;
2388
- href: string;
2389
- default?: boolean | undefined;
2390
- hidden?: boolean | undefined;
2391
- }, {
2392
- version: string;
2393
- href: string;
2394
- default?: boolean | undefined;
2395
- hidden?: boolean | undefined;
2396
- }>, "many">>;
2397
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2398
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2399
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2400
- name: z.ZodEffects<z.ZodString, string, string>;
2401
- }, "strip", z.ZodTypeAny, {
2402
- name: string;
2403
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2404
- }, {
2405
- name: string;
2406
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2407
- }>]>>;
2408
- hidden: z.ZodOptional<z.ZodBoolean>;
2409
- tab: z.ZodString;
2410
- href: z.ZodString;
2411
- }, "strip", z.ZodTypeAny, {
2412
- href: string;
2413
- tab: string;
2414
- icon?: string | {
2415
- name: string;
2416
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2417
- } | undefined;
2418
- hidden?: boolean | undefined;
2419
- }, {
2420
- href: string;
2421
- tab: string;
2422
- icon?: string | {
2423
- name: string;
2424
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2425
- } | undefined;
2426
- hidden?: boolean | undefined;
2427
- }>, "many">>;
2428
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
2429
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2430
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2431
- name: z.ZodEffects<z.ZodString, string, string>;
2432
- }, "strip", z.ZodTypeAny, {
2433
- name: string;
2434
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2435
- }, {
2436
- name: string;
2437
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2438
- }>]>>;
2439
- color: z.ZodOptional<z.ZodObject<{
2440
- light: z.ZodOptional<z.ZodString>;
2441
- dark: z.ZodOptional<z.ZodString>;
2442
- }, "strict", z.ZodTypeAny, {
2443
- light?: string | undefined;
2444
- dark?: string | undefined;
2445
- }, {
2446
- light?: string | undefined;
2447
- dark?: string | undefined;
2448
- }>>;
2449
- description: z.ZodOptional<z.ZodString>;
2450
- hidden: z.ZodOptional<z.ZodBoolean>;
2451
- dropdown: z.ZodString;
2452
- href: z.ZodString;
2453
- }, "strip", z.ZodTypeAny, {
2454
- href: string;
2455
- dropdown: string;
2456
- icon?: string | {
2457
- name: string;
2458
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2459
- } | undefined;
2460
- color?: {
2461
- light?: string | undefined;
2462
- dark?: string | undefined;
2463
- } | undefined;
2464
- description?: string | undefined;
2465
- hidden?: boolean | undefined;
2466
- }, {
2467
- href: string;
2468
- dropdown: string;
2469
- icon?: string | {
2470
- name: string;
2471
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2472
- } | undefined;
2473
- color?: {
2474
- light?: string | undefined;
2475
- dark?: string | undefined;
2476
- } | undefined;
2477
- description?: string | undefined;
2478
- hidden?: boolean | undefined;
2479
- }>, "many">>;
2480
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
2481
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2482
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2483
- name: z.ZodEffects<z.ZodString, string, string>;
2484
- }, "strip", z.ZodTypeAny, {
2485
- name: string;
2486
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2487
- }, {
2488
- name: string;
2489
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2490
- }>]>>;
2491
- color: z.ZodOptional<z.ZodObject<{
2492
- light: z.ZodOptional<z.ZodString>;
2493
- dark: z.ZodOptional<z.ZodString>;
2494
- }, "strict", z.ZodTypeAny, {
2495
- light?: string | undefined;
2496
- dark?: string | undefined;
2497
- }, {
2498
- light?: string | undefined;
2499
- dark?: string | undefined;
2500
- }>>;
2501
- hidden: z.ZodOptional<z.ZodBoolean>;
2502
- anchor: z.ZodString;
2503
- href: z.ZodString;
2504
- }, "strip", z.ZodTypeAny, {
2505
- href: string;
2506
- anchor: string;
2507
- icon?: string | {
2508
- name: string;
2509
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2510
- } | undefined;
2511
- color?: {
2512
- light?: string | undefined;
2513
- dark?: string | undefined;
2514
- } | undefined;
2515
- hidden?: boolean | undefined;
2516
- }, {
2517
- href: string;
2518
- anchor: string;
2519
- icon?: string | {
2520
- name: string;
2521
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2522
- } | undefined;
2523
- color?: {
2524
- light?: string | undefined;
2525
- dark?: string | undefined;
2526
- } | undefined;
2527
- hidden?: boolean | undefined;
2528
- }>, "many">>;
2529
- }, "strict", z.ZodTypeAny, {
2530
- languages?: {
2531
- href: string;
2532
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2533
- default?: boolean | undefined;
2534
- hidden?: boolean | undefined;
2535
- }[] | undefined;
2536
- versions?: {
2537
- version: string;
2538
- href: string;
2539
- default?: boolean | undefined;
2540
- hidden?: boolean | undefined;
2541
- }[] | undefined;
2542
- tabs?: {
2543
- href: string;
2544
- tab: string;
2545
- icon?: string | {
2546
- name: string;
2547
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2548
- } | undefined;
2549
- hidden?: boolean | undefined;
2550
- }[] | undefined;
2551
- dropdowns?: {
2552
- href: string;
2553
- dropdown: string;
2554
- icon?: string | {
2555
- name: string;
2556
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2557
- } | undefined;
2558
- color?: {
2559
- light?: string | undefined;
2560
- dark?: string | undefined;
2561
- } | undefined;
2562
- description?: string | undefined;
2563
- hidden?: boolean | undefined;
2564
- }[] | undefined;
2565
- anchors?: {
2566
- href: string;
2567
- anchor: string;
2568
- icon?: string | {
2569
- name: string;
2570
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2571
- } | undefined;
2572
- color?: {
2573
- light?: string | undefined;
2574
- dark?: string | undefined;
2575
- } | undefined;
2576
- hidden?: boolean | undefined;
2577
- }[] | undefined;
2578
- }, {
2579
- languages?: {
2580
- href: string;
2581
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2582
- default?: boolean | undefined;
2583
- hidden?: boolean | undefined;
2584
- }[] | undefined;
2585
- versions?: {
2586
- version: string;
2587
- href: string;
2588
- default?: boolean | undefined;
2589
- hidden?: boolean | undefined;
2590
- }[] | undefined;
2591
- tabs?: {
2592
- href: string;
2593
- tab: string;
2594
- icon?: string | {
2595
- name: string;
2596
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2597
- } | undefined;
2598
- hidden?: boolean | undefined;
2599
- }[] | undefined;
2600
- dropdowns?: {
2601
- href: string;
2602
- dropdown: string;
2603
- icon?: string | {
2604
- name: string;
2605
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2606
- } | undefined;
2607
- color?: {
2608
- light?: string | undefined;
2609
- dark?: string | undefined;
2610
- } | undefined;
2611
- description?: string | undefined;
2612
- hidden?: boolean | undefined;
2613
- }[] | undefined;
2614
- anchors?: {
2615
- href: string;
2616
- anchor: string;
2617
- icon?: string | {
2618
- name: string;
2619
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2620
- } | undefined;
2621
- color?: {
2622
- light?: string | undefined;
2623
- dark?: string | undefined;
2624
- } | undefined;
2625
- hidden?: boolean | undefined;
2626
- }[] | undefined;
2627
- }>>;
198
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
2628
199
  pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2629
200
  }, "strip", z.ZodTypeAny, {
2630
201
  pages: any[];
2631
- global?: {
2632
- languages?: {
2633
- href: string;
2634
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2635
- default?: boolean | undefined;
2636
- hidden?: boolean | undefined;
2637
- }[] | undefined;
2638
- versions?: {
2639
- version: string;
2640
- href: string;
2641
- default?: boolean | undefined;
2642
- hidden?: boolean | undefined;
2643
- }[] | undefined;
2644
- tabs?: {
2645
- href: string;
2646
- tab: string;
2647
- icon?: string | {
2648
- name: string;
2649
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2650
- } | undefined;
2651
- hidden?: boolean | undefined;
2652
- }[] | undefined;
2653
- dropdowns?: {
2654
- href: string;
2655
- dropdown: string;
2656
- icon?: string | {
2657
- name: string;
2658
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2659
- } | undefined;
2660
- color?: {
2661
- light?: string | undefined;
2662
- dark?: string | undefined;
2663
- } | undefined;
2664
- description?: string | undefined;
2665
- hidden?: boolean | undefined;
2666
- }[] | undefined;
2667
- anchors?: {
2668
- href: string;
2669
- anchor: string;
2670
- icon?: string | {
2671
- name: string;
2672
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2673
- } | undefined;
2674
- color?: {
2675
- light?: string | undefined;
2676
- dark?: string | undefined;
2677
- } | undefined;
2678
- hidden?: boolean | undefined;
2679
- }[] | undefined;
2680
- } | undefined;
202
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
2681
203
  }, {
2682
204
  pages: any[];
2683
- global?: {
2684
- languages?: {
2685
- href: string;
2686
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2687
- default?: boolean | undefined;
2688
- hidden?: boolean | undefined;
2689
- }[] | undefined;
2690
- versions?: {
2691
- version: string;
2692
- href: string;
2693
- default?: boolean | undefined;
2694
- hidden?: boolean | undefined;
2695
- }[] | undefined;
2696
- tabs?: {
2697
- href: string;
2698
- tab: string;
2699
- icon?: string | {
2700
- name: string;
2701
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2702
- } | undefined;
2703
- hidden?: boolean | undefined;
2704
- }[] | undefined;
2705
- dropdowns?: {
2706
- href: string;
2707
- dropdown: string;
2708
- icon?: string | {
2709
- name: string;
2710
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2711
- } | undefined;
2712
- color?: {
2713
- light?: string | undefined;
2714
- dark?: string | undefined;
2715
- } | undefined;
2716
- description?: string | undefined;
2717
- hidden?: boolean | undefined;
2718
- }[] | undefined;
2719
- anchors?: {
2720
- href: string;
2721
- anchor: string;
2722
- icon?: string | {
2723
- name: string;
2724
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2725
- } | undefined;
2726
- color?: {
2727
- light?: string | undefined;
2728
- dark?: string | undefined;
2729
- } | undefined;
2730
- hidden?: boolean | undefined;
2731
- }[] | undefined;
2732
- } | undefined;
205
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
2733
206
  }>]>;
2734
207
  export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
2735
208
  languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"decorated">>, "many">;
@@ -2825,372 +298,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
2825
298
  }, {
2826
299
  pages: any[];
2827
300
  }>]>, z.ZodObject<{
2828
- global: z.ZodOptional<z.ZodObject<{
2829
- languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
2830
- default: z.ZodOptional<z.ZodBoolean>;
2831
- hidden: z.ZodOptional<z.ZodBoolean>;
2832
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2833
- href: z.ZodString;
2834
- }, "strip", z.ZodTypeAny, {
2835
- href: string;
2836
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2837
- default?: boolean | undefined;
2838
- hidden?: boolean | undefined;
2839
- }, {
2840
- href: string;
2841
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2842
- default?: boolean | undefined;
2843
- hidden?: boolean | undefined;
2844
- }>, "many">>;
2845
- versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2846
- version: z.ZodString;
2847
- default: z.ZodOptional<z.ZodBoolean>;
2848
- hidden: z.ZodOptional<z.ZodBoolean>;
2849
- href: z.ZodString;
2850
- }, "strip", z.ZodTypeAny, {
2851
- version: string;
2852
- href: string;
2853
- default?: boolean | undefined;
2854
- hidden?: boolean | undefined;
2855
- }, {
2856
- version: string;
2857
- href: string;
2858
- default?: boolean | undefined;
2859
- hidden?: boolean | undefined;
2860
- }>, "many">>;
2861
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2862
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2863
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2864
- name: z.ZodEffects<z.ZodString, string, string>;
2865
- }, "strip", z.ZodTypeAny, {
2866
- name: string;
2867
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2868
- }, {
2869
- name: string;
2870
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2871
- }>]>>;
2872
- hidden: z.ZodOptional<z.ZodBoolean>;
2873
- tab: z.ZodString;
2874
- href: z.ZodString;
2875
- }, "strip", z.ZodTypeAny, {
2876
- href: string;
2877
- tab: string;
2878
- icon?: string | {
2879
- name: string;
2880
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2881
- } | undefined;
2882
- hidden?: boolean | undefined;
2883
- }, {
2884
- href: string;
2885
- tab: string;
2886
- icon?: string | {
2887
- name: string;
2888
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2889
- } | undefined;
2890
- hidden?: boolean | undefined;
2891
- }>, "many">>;
2892
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
2893
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2894
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2895
- name: z.ZodEffects<z.ZodString, string, string>;
2896
- }, "strip", z.ZodTypeAny, {
2897
- name: string;
2898
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2899
- }, {
2900
- name: string;
2901
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2902
- }>]>>;
2903
- color: z.ZodOptional<z.ZodObject<{
2904
- light: z.ZodOptional<z.ZodString>;
2905
- dark: z.ZodOptional<z.ZodString>;
2906
- }, "strict", z.ZodTypeAny, {
2907
- light?: string | undefined;
2908
- dark?: string | undefined;
2909
- }, {
2910
- light?: string | undefined;
2911
- dark?: string | undefined;
2912
- }>>;
2913
- description: z.ZodOptional<z.ZodString>;
2914
- hidden: z.ZodOptional<z.ZodBoolean>;
2915
- dropdown: z.ZodString;
2916
- href: z.ZodString;
2917
- }, "strip", z.ZodTypeAny, {
2918
- href: string;
2919
- dropdown: string;
2920
- icon?: string | {
2921
- name: string;
2922
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2923
- } | undefined;
2924
- color?: {
2925
- light?: string | undefined;
2926
- dark?: string | undefined;
2927
- } | undefined;
2928
- description?: string | undefined;
2929
- hidden?: boolean | undefined;
2930
- }, {
2931
- href: string;
2932
- dropdown: string;
2933
- icon?: string | {
2934
- name: string;
2935
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2936
- } | undefined;
2937
- color?: {
2938
- light?: string | undefined;
2939
- dark?: string | undefined;
2940
- } | undefined;
2941
- description?: string | undefined;
2942
- hidden?: boolean | undefined;
2943
- }>, "many">>;
2944
- anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
2945
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2946
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2947
- name: z.ZodEffects<z.ZodString, string, string>;
2948
- }, "strip", z.ZodTypeAny, {
2949
- name: string;
2950
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2951
- }, {
2952
- name: string;
2953
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2954
- }>]>>;
2955
- color: z.ZodOptional<z.ZodObject<{
2956
- light: z.ZodOptional<z.ZodString>;
2957
- dark: z.ZodOptional<z.ZodString>;
2958
- }, "strict", z.ZodTypeAny, {
2959
- light?: string | undefined;
2960
- dark?: string | undefined;
2961
- }, {
2962
- light?: string | undefined;
2963
- dark?: string | undefined;
2964
- }>>;
2965
- hidden: z.ZodOptional<z.ZodBoolean>;
2966
- anchor: z.ZodString;
2967
- href: z.ZodString;
2968
- }, "strip", z.ZodTypeAny, {
2969
- href: string;
2970
- anchor: string;
2971
- icon?: string | {
2972
- name: string;
2973
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2974
- } | undefined;
2975
- color?: {
2976
- light?: string | undefined;
2977
- dark?: string | undefined;
2978
- } | undefined;
2979
- hidden?: boolean | undefined;
2980
- }, {
2981
- href: string;
2982
- anchor: string;
2983
- icon?: string | {
2984
- name: string;
2985
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2986
- } | undefined;
2987
- color?: {
2988
- light?: string | undefined;
2989
- dark?: string | undefined;
2990
- } | undefined;
2991
- hidden?: boolean | undefined;
2992
- }>, "many">>;
2993
- }, "strict", z.ZodTypeAny, {
2994
- languages?: {
2995
- href: string;
2996
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2997
- default?: boolean | undefined;
2998
- hidden?: boolean | undefined;
2999
- }[] | undefined;
3000
- versions?: {
3001
- version: string;
3002
- href: string;
3003
- default?: boolean | undefined;
3004
- hidden?: boolean | undefined;
3005
- }[] | undefined;
3006
- tabs?: {
3007
- href: string;
3008
- tab: string;
3009
- icon?: string | {
3010
- name: string;
3011
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3012
- } | undefined;
3013
- hidden?: boolean | undefined;
3014
- }[] | undefined;
3015
- dropdowns?: {
3016
- href: string;
3017
- dropdown: string;
3018
- icon?: string | {
3019
- name: string;
3020
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3021
- } | undefined;
3022
- color?: {
3023
- light?: string | undefined;
3024
- dark?: string | undefined;
3025
- } | undefined;
3026
- description?: string | undefined;
3027
- hidden?: boolean | undefined;
3028
- }[] | undefined;
3029
- anchors?: {
3030
- href: string;
3031
- anchor: string;
3032
- icon?: string | {
3033
- name: string;
3034
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3035
- } | undefined;
3036
- color?: {
3037
- light?: string | undefined;
3038
- dark?: string | undefined;
3039
- } | undefined;
3040
- hidden?: boolean | undefined;
3041
- }[] | undefined;
3042
- }, {
3043
- languages?: {
3044
- href: string;
3045
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3046
- default?: boolean | undefined;
3047
- hidden?: boolean | undefined;
3048
- }[] | undefined;
3049
- versions?: {
3050
- version: string;
3051
- href: string;
3052
- default?: boolean | undefined;
3053
- hidden?: boolean | undefined;
3054
- }[] | undefined;
3055
- tabs?: {
3056
- href: string;
3057
- tab: string;
3058
- icon?: string | {
3059
- name: string;
3060
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3061
- } | undefined;
3062
- hidden?: boolean | undefined;
3063
- }[] | undefined;
3064
- dropdowns?: {
3065
- href: string;
3066
- dropdown: string;
3067
- icon?: string | {
3068
- name: string;
3069
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3070
- } | undefined;
3071
- color?: {
3072
- light?: string | undefined;
3073
- dark?: string | undefined;
3074
- } | undefined;
3075
- description?: string | undefined;
3076
- hidden?: boolean | undefined;
3077
- }[] | undefined;
3078
- anchors?: {
3079
- href: string;
3080
- anchor: string;
3081
- icon?: string | {
3082
- name: string;
3083
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3084
- } | undefined;
3085
- color?: {
3086
- light?: string | undefined;
3087
- dark?: string | undefined;
3088
- } | undefined;
3089
- hidden?: boolean | undefined;
3090
- }[] | undefined;
3091
- }>>;
301
+ global: z.ZodOptional<z.ZodType<import("./divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./divisionNav.js").GlobalNavigation>>;
3092
302
  }, "strip", z.ZodTypeAny, {
3093
- global?: {
3094
- languages?: {
3095
- href: string;
3096
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3097
- default?: boolean | undefined;
3098
- hidden?: boolean | undefined;
3099
- }[] | undefined;
3100
- versions?: {
3101
- version: string;
3102
- href: string;
3103
- default?: boolean | undefined;
3104
- hidden?: boolean | undefined;
3105
- }[] | undefined;
3106
- tabs?: {
3107
- href: string;
3108
- tab: string;
3109
- icon?: string | {
3110
- name: string;
3111
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3112
- } | undefined;
3113
- hidden?: boolean | undefined;
3114
- }[] | undefined;
3115
- dropdowns?: {
3116
- href: string;
3117
- dropdown: string;
3118
- icon?: string | {
3119
- name: string;
3120
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3121
- } | undefined;
3122
- color?: {
3123
- light?: string | undefined;
3124
- dark?: string | undefined;
3125
- } | undefined;
3126
- description?: string | undefined;
3127
- hidden?: boolean | undefined;
3128
- }[] | undefined;
3129
- anchors?: {
3130
- href: string;
3131
- anchor: string;
3132
- icon?: string | {
3133
- name: string;
3134
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3135
- } | undefined;
3136
- color?: {
3137
- light?: string | undefined;
3138
- dark?: string | undefined;
3139
- } | undefined;
3140
- hidden?: boolean | undefined;
3141
- }[] | undefined;
3142
- } | undefined;
303
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
3143
304
  }, {
3144
- global?: {
3145
- languages?: {
3146
- href: string;
3147
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3148
- default?: boolean | undefined;
3149
- hidden?: boolean | undefined;
3150
- }[] | undefined;
3151
- versions?: {
3152
- version: string;
3153
- href: string;
3154
- default?: boolean | undefined;
3155
- hidden?: boolean | undefined;
3156
- }[] | undefined;
3157
- tabs?: {
3158
- href: string;
3159
- tab: string;
3160
- icon?: string | {
3161
- name: string;
3162
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3163
- } | undefined;
3164
- hidden?: boolean | undefined;
3165
- }[] | undefined;
3166
- dropdowns?: {
3167
- href: string;
3168
- dropdown: string;
3169
- icon?: string | {
3170
- name: string;
3171
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3172
- } | undefined;
3173
- color?: {
3174
- light?: string | undefined;
3175
- dark?: string | undefined;
3176
- } | undefined;
3177
- description?: string | undefined;
3178
- hidden?: boolean | undefined;
3179
- }[] | undefined;
3180
- anchors?: {
3181
- href: string;
3182
- anchor: string;
3183
- icon?: string | {
3184
- name: string;
3185
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3186
- } | undefined;
3187
- color?: {
3188
- light?: string | undefined;
3189
- dark?: string | undefined;
3190
- } | undefined;
3191
- hidden?: boolean | undefined;
3192
- }[] | undefined;
3193
- } | undefined;
305
+ global?: import("./divisionNav.js").GlobalNavigation | undefined;
3194
306
  }>>;
3195
307
  export type NavigationConfig = z.infer<typeof navigationSchema>;
3196
308
  export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema>;