@mintlify/validation 0.1.586 → 0.1.587

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.
@@ -0,0 +1,2187 @@
1
+ import { z } from 'zod';
2
+ export declare const sequoiaConfigSchema: z.ZodObject<{
3
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4
+ name: z.ZodString;
5
+ public: z.ZodOptional<z.ZodBoolean>;
6
+ description: z.ZodOptional<z.ZodString>;
7
+ colors: z.ZodObject<{
8
+ primary: z.ZodString;
9
+ light: z.ZodOptional<z.ZodString>;
10
+ dark: z.ZodOptional<z.ZodString>;
11
+ }, "strict", z.ZodTypeAny, {
12
+ primary: string;
13
+ light?: string | undefined;
14
+ dark?: string | undefined;
15
+ }, {
16
+ primary: string;
17
+ light?: string | undefined;
18
+ dark?: string | undefined;
19
+ }>;
20
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
21
+ light: z.ZodString;
22
+ dark: z.ZodString;
23
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
24
+ }, "strip", z.ZodTypeAny, {
25
+ light: string;
26
+ dark: string;
27
+ href?: string | undefined;
28
+ }, {
29
+ light: string;
30
+ dark: string;
31
+ href?: string | undefined;
32
+ }>]>>;
33
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
34
+ light: z.ZodString;
35
+ dark: z.ZodString;
36
+ }, "strip", z.ZodTypeAny, {
37
+ light: string;
38
+ dark: string;
39
+ }, {
40
+ light: string;
41
+ dark: string;
42
+ }>]>>;
43
+ api: z.ZodOptional<z.ZodObject<{
44
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
45
+ source: z.ZodEffects<z.ZodString, string, string>;
46
+ directory: z.ZodOptional<z.ZodString>;
47
+ }, "strict", z.ZodTypeAny, {
48
+ source: string;
49
+ directory?: string | undefined;
50
+ }, {
51
+ source: string;
52
+ directory?: string | undefined;
53
+ }>]>>;
54
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
55
+ source: z.ZodEffects<z.ZodString, string, string>;
56
+ directory: z.ZodOptional<z.ZodString>;
57
+ }, "strict", z.ZodTypeAny, {
58
+ source: string;
59
+ directory?: string | undefined;
60
+ }, {
61
+ source: string;
62
+ directory?: string | undefined;
63
+ }>]>>;
64
+ params: z.ZodOptional<z.ZodObject<{
65
+ expanded: z.ZodOptional<z.ZodEnum<["all", "closed"]>>;
66
+ }, "strip", z.ZodTypeAny, {
67
+ expanded?: "all" | "closed" | undefined;
68
+ }, {
69
+ expanded?: "all" | "closed" | undefined;
70
+ }>>;
71
+ playground: z.ZodOptional<z.ZodObject<{
72
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none", "auth"]>>;
73
+ proxy: z.ZodOptional<z.ZodBoolean>;
74
+ }, "strip", z.ZodTypeAny, {
75
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
76
+ proxy?: boolean | undefined;
77
+ }, {
78
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
79
+ proxy?: boolean | undefined;
80
+ }>>;
81
+ examples: z.ZodOptional<z.ZodObject<{
82
+ defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
83
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
84
+ prefill: z.ZodOptional<z.ZodBoolean>;
85
+ autogenerate: z.ZodOptional<z.ZodBoolean>;
86
+ }, "strip", z.ZodTypeAny, {
87
+ languages?: string[] | undefined;
88
+ defaults?: "all" | "required" | undefined;
89
+ prefill?: boolean | undefined;
90
+ autogenerate?: boolean | undefined;
91
+ }, {
92
+ languages?: string[] | undefined;
93
+ defaults?: "all" | "required" | undefined;
94
+ prefill?: boolean | undefined;
95
+ autogenerate?: boolean | undefined;
96
+ }>>;
97
+ mdx: z.ZodOptional<z.ZodObject<{
98
+ auth: z.ZodOptional<z.ZodObject<{
99
+ method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
100
+ name: z.ZodOptional<z.ZodString>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ name?: string | undefined;
103
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
104
+ }, {
105
+ name?: string | undefined;
106
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
107
+ }>>;
108
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ server?: string | string[] | undefined;
111
+ auth?: {
112
+ name?: string | undefined;
113
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
114
+ } | undefined;
115
+ }, {
116
+ server?: string | string[] | undefined;
117
+ auth?: {
118
+ name?: string | undefined;
119
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
120
+ } | undefined;
121
+ }>>;
122
+ }, "strip", z.ZodTypeAny, {
123
+ params?: {
124
+ expanded?: "all" | "closed" | undefined;
125
+ } | undefined;
126
+ openapi?: string | string[] | {
127
+ source: string;
128
+ directory?: string | undefined;
129
+ } | undefined;
130
+ playground?: {
131
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
132
+ proxy?: boolean | undefined;
133
+ } | undefined;
134
+ asyncapi?: string | string[] | {
135
+ source: string;
136
+ directory?: string | undefined;
137
+ } | undefined;
138
+ examples?: {
139
+ languages?: string[] | undefined;
140
+ defaults?: "all" | "required" | undefined;
141
+ prefill?: boolean | undefined;
142
+ autogenerate?: boolean | undefined;
143
+ } | undefined;
144
+ mdx?: {
145
+ server?: string | string[] | undefined;
146
+ auth?: {
147
+ name?: string | undefined;
148
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
149
+ } | undefined;
150
+ } | undefined;
151
+ }, {
152
+ params?: {
153
+ expanded?: "all" | "closed" | undefined;
154
+ } | undefined;
155
+ openapi?: string | string[] | {
156
+ source: string;
157
+ directory?: string | undefined;
158
+ } | undefined;
159
+ playground?: {
160
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
161
+ proxy?: boolean | undefined;
162
+ } | undefined;
163
+ asyncapi?: string | string[] | {
164
+ source: string;
165
+ directory?: string | undefined;
166
+ } | undefined;
167
+ examples?: {
168
+ languages?: string[] | undefined;
169
+ defaults?: "all" | "required" | undefined;
170
+ prefill?: boolean | undefined;
171
+ autogenerate?: boolean | undefined;
172
+ } | undefined;
173
+ mdx?: {
174
+ server?: string | string[] | undefined;
175
+ auth?: {
176
+ name?: string | undefined;
177
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
178
+ } | undefined;
179
+ } | undefined;
180
+ }>>;
181
+ appearance: z.ZodOptional<z.ZodObject<{
182
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
183
+ strict: z.ZodOptional<z.ZodBoolean>;
184
+ }, "strip", z.ZodTypeAny, {
185
+ strict?: boolean | undefined;
186
+ default?: "light" | "dark" | "system" | undefined;
187
+ }, {
188
+ strict?: boolean | undefined;
189
+ default?: "light" | "dark" | "system" | undefined;
190
+ }>>;
191
+ background: z.ZodOptional<z.ZodObject<{
192
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
193
+ light: z.ZodString;
194
+ dark: z.ZodString;
195
+ }, "strip", z.ZodTypeAny, {
196
+ light: string;
197
+ dark: string;
198
+ }, {
199
+ light: string;
200
+ dark: string;
201
+ }>]>>;
202
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
203
+ color: z.ZodOptional<z.ZodObject<{
204
+ light: z.ZodOptional<z.ZodString>;
205
+ dark: z.ZodOptional<z.ZodString>;
206
+ }, "strict", z.ZodTypeAny, {
207
+ light?: string | undefined;
208
+ dark?: string | undefined;
209
+ }, {
210
+ light?: string | undefined;
211
+ dark?: string | undefined;
212
+ }>>;
213
+ }, "strip", z.ZodTypeAny, {
214
+ color?: {
215
+ light?: string | undefined;
216
+ dark?: string | undefined;
217
+ } | undefined;
218
+ image?: string | {
219
+ light: string;
220
+ dark: string;
221
+ } | undefined;
222
+ decoration?: "gradient" | "grid" | "windows" | undefined;
223
+ }, {
224
+ color?: {
225
+ light?: string | undefined;
226
+ dark?: string | undefined;
227
+ } | undefined;
228
+ image?: string | {
229
+ light: string;
230
+ dark: string;
231
+ } | undefined;
232
+ decoration?: "gradient" | "grid" | "windows" | undefined;
233
+ }>>;
234
+ navbar: z.ZodOptional<z.ZodObject<{
235
+ links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
236
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
237
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
238
+ name: z.ZodEffects<z.ZodString, string, string>;
239
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
240
+ }, "strip", z.ZodTypeAny, {
241
+ name: string;
242
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
243
+ library?: "fontawesome" | "lucide" | undefined;
244
+ }, {
245
+ name: string;
246
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
247
+ library?: "fontawesome" | "lucide" | undefined;
248
+ }>]>>;
249
+ href: z.ZodEffects<z.ZodString, string, string>;
250
+ }, {
251
+ label: z.ZodOptional<z.ZodString>;
252
+ type: z.ZodLiteral<"github">;
253
+ }>, "strip", z.ZodTypeAny, {
254
+ type: "github";
255
+ href: string;
256
+ icon?: string | {
257
+ name: string;
258
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
259
+ library?: "fontawesome" | "lucide" | undefined;
260
+ } | undefined;
261
+ label?: string | undefined;
262
+ }, {
263
+ type: "github";
264
+ href: string;
265
+ icon?: string | {
266
+ name: string;
267
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
268
+ library?: "fontawesome" | "lucide" | undefined;
269
+ } | undefined;
270
+ label?: string | undefined;
271
+ }>, z.ZodObject<z.objectUtil.extendShape<{
272
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
273
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
274
+ name: z.ZodEffects<z.ZodString, string, string>;
275
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
276
+ }, "strip", z.ZodTypeAny, {
277
+ name: string;
278
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
279
+ library?: "fontawesome" | "lucide" | undefined;
280
+ }, {
281
+ name: string;
282
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
283
+ library?: "fontawesome" | "lucide" | undefined;
284
+ }>]>>;
285
+ href: z.ZodEffects<z.ZodString, string, string>;
286
+ }, {
287
+ label: z.ZodOptional<z.ZodString>;
288
+ type: z.ZodLiteral<"discord">;
289
+ }>, "strip", z.ZodTypeAny, {
290
+ type: "discord";
291
+ href: 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
+ library?: "fontawesome" | "lucide" | undefined;
296
+ } | undefined;
297
+ label?: string | undefined;
298
+ }, {
299
+ type: "discord";
300
+ href: 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
+ library?: "fontawesome" | "lucide" | undefined;
305
+ } | undefined;
306
+ label?: string | undefined;
307
+ }>, z.ZodObject<z.objectUtil.extendShape<{
308
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
309
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
310
+ name: z.ZodEffects<z.ZodString, string, string>;
311
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
312
+ }, "strip", z.ZodTypeAny, {
313
+ name: string;
314
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
315
+ library?: "fontawesome" | "lucide" | undefined;
316
+ }, {
317
+ name: string;
318
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
319
+ library?: "fontawesome" | "lucide" | undefined;
320
+ }>]>>;
321
+ href: z.ZodEffects<z.ZodString, string, string>;
322
+ }, {
323
+ label: z.ZodString;
324
+ type: z.ZodOptional<z.ZodString>;
325
+ }>, "strip", z.ZodTypeAny, {
326
+ href: string;
327
+ label: string;
328
+ type?: string | undefined;
329
+ icon?: string | {
330
+ name: string;
331
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
332
+ library?: "fontawesome" | "lucide" | undefined;
333
+ } | undefined;
334
+ }, {
335
+ href: string;
336
+ label: string;
337
+ type?: string | undefined;
338
+ icon?: string | {
339
+ name: string;
340
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
341
+ library?: "fontawesome" | "lucide" | undefined;
342
+ } | undefined;
343
+ }>]>, "many">>;
344
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
345
+ type: z.ZodLiteral<"button">;
346
+ label: z.ZodString;
347
+ href: z.ZodEffects<z.ZodString, string, string>;
348
+ }, "strip", z.ZodTypeAny, {
349
+ type: "button";
350
+ href: string;
351
+ label: string;
352
+ }, {
353
+ type: "button";
354
+ href: string;
355
+ label: string;
356
+ }>, z.ZodObject<{
357
+ type: z.ZodLiteral<"github">;
358
+ label: z.ZodOptional<z.ZodString>;
359
+ href: z.ZodEffects<z.ZodString, string, string>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ type: "github";
362
+ href: string;
363
+ label?: string | undefined;
364
+ }, {
365
+ type: "github";
366
+ href: string;
367
+ label?: string | undefined;
368
+ }>, z.ZodObject<{
369
+ type: z.ZodLiteral<"discord">;
370
+ label: z.ZodOptional<z.ZodString>;
371
+ href: z.ZodEffects<z.ZodString, string, string>;
372
+ }, "strip", z.ZodTypeAny, {
373
+ type: "discord";
374
+ href: string;
375
+ label?: string | undefined;
376
+ }, {
377
+ type: "discord";
378
+ href: string;
379
+ label?: string | undefined;
380
+ }>]>>;
381
+ }, "strip", z.ZodTypeAny, {
382
+ primary?: {
383
+ type: "button";
384
+ href: string;
385
+ label: string;
386
+ } | {
387
+ type: "github";
388
+ href: string;
389
+ label?: string | undefined;
390
+ } | {
391
+ type: "discord";
392
+ href: string;
393
+ label?: string | undefined;
394
+ } | undefined;
395
+ links?: ({
396
+ href: string;
397
+ label: string;
398
+ type?: string | undefined;
399
+ icon?: string | {
400
+ name: string;
401
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
402
+ library?: "fontawesome" | "lucide" | undefined;
403
+ } | undefined;
404
+ } | {
405
+ type: "github";
406
+ href: string;
407
+ icon?: string | {
408
+ name: string;
409
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
410
+ library?: "fontawesome" | "lucide" | undefined;
411
+ } | undefined;
412
+ label?: string | undefined;
413
+ } | {
414
+ type: "discord";
415
+ href: string;
416
+ icon?: string | {
417
+ name: string;
418
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
419
+ library?: "fontawesome" | "lucide" | undefined;
420
+ } | undefined;
421
+ label?: string | undefined;
422
+ })[] | undefined;
423
+ }, {
424
+ primary?: {
425
+ type: "button";
426
+ href: string;
427
+ label: string;
428
+ } | {
429
+ type: "github";
430
+ href: string;
431
+ label?: string | undefined;
432
+ } | {
433
+ type: "discord";
434
+ href: string;
435
+ label?: string | undefined;
436
+ } | undefined;
437
+ links?: ({
438
+ href: string;
439
+ label: string;
440
+ type?: string | undefined;
441
+ icon?: string | {
442
+ name: string;
443
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
444
+ library?: "fontawesome" | "lucide" | undefined;
445
+ } | undefined;
446
+ } | {
447
+ type: "github";
448
+ href: string;
449
+ icon?: string | {
450
+ name: string;
451
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
452
+ library?: "fontawesome" | "lucide" | undefined;
453
+ } | undefined;
454
+ label?: string | undefined;
455
+ } | {
456
+ type: "discord";
457
+ href: string;
458
+ icon?: string | {
459
+ name: string;
460
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
461
+ library?: "fontawesome" | "lucide" | undefined;
462
+ } | undefined;
463
+ label?: string | undefined;
464
+ })[] | undefined;
465
+ }>>;
466
+ navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
467
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
468
+ }, {
469
+ products: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
470
+ }>, "strip", z.ZodTypeAny, {
471
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
472
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
473
+ }, {
474
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
475
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
476
+ }>, z.ZodObject<z.objectUtil.extendShape<{
477
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
478
+ }, {
479
+ languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
480
+ }>, "strip", z.ZodTypeAny, {
481
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
482
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
483
+ }, {
484
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
485
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
486
+ }>, z.ZodObject<z.objectUtil.extendShape<{
487
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
488
+ }, {
489
+ versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
490
+ }>, "strip", z.ZodTypeAny, {
491
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
492
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
493
+ }, {
494
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
495
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
496
+ }>, z.ZodObject<z.objectUtil.extendShape<{
497
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
498
+ }, {
499
+ tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
500
+ }>, "strip", z.ZodTypeAny, {
501
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
502
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
503
+ }, {
504
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
505
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
506
+ }>, z.ZodObject<z.objectUtil.extendShape<{
507
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
508
+ }, {
509
+ dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
510
+ }>, "strip", z.ZodTypeAny, {
511
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
512
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
513
+ }, {
514
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
515
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
516
+ }>, z.ZodObject<z.objectUtil.extendShape<{
517
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
518
+ }, {
519
+ anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
520
+ }>, "strip", z.ZodTypeAny, {
521
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
522
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
523
+ }, {
524
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
525
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
526
+ }>, z.ZodObject<z.objectUtil.extendShape<{
527
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
528
+ }, {
529
+ groups: z.ZodArray<z.ZodType<{
530
+ group: string;
531
+ icon?: string | {
532
+ name: string;
533
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
534
+ library?: "fontawesome" | "lucide" | undefined;
535
+ } | undefined;
536
+ expanded?: boolean | undefined;
537
+ public?: boolean | undefined;
538
+ tag?: string | undefined;
539
+ hidden?: boolean | undefined;
540
+ root?: string | undefined;
541
+ } & {
542
+ openapi?: string | string[] | {
543
+ source: string;
544
+ directory?: string | undefined;
545
+ } | undefined;
546
+ asyncapi?: string | string[] | {
547
+ source: string;
548
+ directory?: string | undefined;
549
+ } | undefined;
550
+ } & {
551
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
552
+ }, z.ZodTypeDef, {
553
+ group: string;
554
+ icon?: string | {
555
+ name: string;
556
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
557
+ library?: "fontawesome" | "lucide" | undefined;
558
+ } | undefined;
559
+ expanded?: boolean | undefined;
560
+ public?: boolean | undefined;
561
+ tag?: string | undefined;
562
+ hidden?: boolean | undefined;
563
+ root?: string | undefined;
564
+ } & {
565
+ openapi?: string | string[] | {
566
+ source: string;
567
+ directory?: string | undefined;
568
+ } | undefined;
569
+ asyncapi?: string | string[] | {
570
+ source: string;
571
+ directory?: string | undefined;
572
+ } | undefined;
573
+ } & {
574
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
575
+ }>, "many">;
576
+ }>, "strip", z.ZodTypeAny, {
577
+ groups: ({
578
+ group: string;
579
+ icon?: string | {
580
+ name: string;
581
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
582
+ library?: "fontawesome" | "lucide" | undefined;
583
+ } | undefined;
584
+ expanded?: boolean | undefined;
585
+ public?: boolean | undefined;
586
+ tag?: string | undefined;
587
+ hidden?: boolean | undefined;
588
+ root?: string | undefined;
589
+ } & {
590
+ openapi?: string | string[] | {
591
+ source: string;
592
+ directory?: string | undefined;
593
+ } | undefined;
594
+ asyncapi?: string | string[] | {
595
+ source: string;
596
+ directory?: string | undefined;
597
+ } | undefined;
598
+ } & {
599
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
600
+ })[];
601
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
602
+ }, {
603
+ groups: ({
604
+ group: string;
605
+ icon?: string | {
606
+ name: string;
607
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
608
+ library?: "fontawesome" | "lucide" | undefined;
609
+ } | undefined;
610
+ expanded?: boolean | undefined;
611
+ public?: boolean | undefined;
612
+ tag?: string | undefined;
613
+ hidden?: boolean | undefined;
614
+ root?: string | undefined;
615
+ } & {
616
+ openapi?: string | string[] | {
617
+ source: string;
618
+ directory?: string | undefined;
619
+ } | undefined;
620
+ asyncapi?: string | string[] | {
621
+ source: string;
622
+ directory?: string | undefined;
623
+ } | undefined;
624
+ } & {
625
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
626
+ })[];
627
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
628
+ }>, z.ZodObject<z.objectUtil.extendShape<{
629
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
630
+ }, {
631
+ pages: z.ZodArray<z.ZodType<string | ({
632
+ group: string;
633
+ icon?: string | {
634
+ name: string;
635
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
636
+ library?: "fontawesome" | "lucide" | undefined;
637
+ } | undefined;
638
+ expanded?: boolean | undefined;
639
+ public?: boolean | undefined;
640
+ tag?: string | undefined;
641
+ hidden?: boolean | undefined;
642
+ root?: string | undefined;
643
+ } & {
644
+ openapi?: string | string[] | {
645
+ source: string;
646
+ directory?: string | undefined;
647
+ } | undefined;
648
+ asyncapi?: string | string[] | {
649
+ source: string;
650
+ directory?: string | undefined;
651
+ } | undefined;
652
+ } & {
653
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
654
+ }), z.ZodTypeDef, string | ({
655
+ group: string;
656
+ icon?: string | {
657
+ name: string;
658
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
659
+ library?: "fontawesome" | "lucide" | undefined;
660
+ } | undefined;
661
+ expanded?: boolean | undefined;
662
+ public?: boolean | undefined;
663
+ tag?: string | undefined;
664
+ hidden?: boolean | undefined;
665
+ root?: string | undefined;
666
+ } & {
667
+ openapi?: string | string[] | {
668
+ source: string;
669
+ directory?: string | undefined;
670
+ } | undefined;
671
+ asyncapi?: string | string[] | {
672
+ source: string;
673
+ directory?: string | undefined;
674
+ } | undefined;
675
+ } & {
676
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
677
+ })>, "many">;
678
+ }>, "strip", z.ZodTypeAny, {
679
+ pages: (string | ({
680
+ group: string;
681
+ icon?: string | {
682
+ name: string;
683
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
684
+ library?: "fontawesome" | "lucide" | undefined;
685
+ } | undefined;
686
+ expanded?: boolean | undefined;
687
+ public?: boolean | undefined;
688
+ tag?: string | undefined;
689
+ hidden?: boolean | undefined;
690
+ root?: string | undefined;
691
+ } & {
692
+ openapi?: string | string[] | {
693
+ source: string;
694
+ directory?: string | undefined;
695
+ } | undefined;
696
+ asyncapi?: string | string[] | {
697
+ source: string;
698
+ directory?: string | undefined;
699
+ } | undefined;
700
+ } & {
701
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
702
+ }))[];
703
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
704
+ }, {
705
+ pages: (string | ({
706
+ group: string;
707
+ icon?: string | {
708
+ name: string;
709
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
710
+ library?: "fontawesome" | "lucide" | undefined;
711
+ } | undefined;
712
+ expanded?: boolean | undefined;
713
+ public?: boolean | undefined;
714
+ tag?: string | undefined;
715
+ hidden?: boolean | undefined;
716
+ root?: string | undefined;
717
+ } & {
718
+ openapi?: string | string[] | {
719
+ source: string;
720
+ directory?: string | undefined;
721
+ } | undefined;
722
+ asyncapi?: string | string[] | {
723
+ source: string;
724
+ directory?: string | undefined;
725
+ } | undefined;
726
+ } & {
727
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
728
+ }))[];
729
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
730
+ }>]>;
731
+ footer: z.ZodOptional<z.ZodObject<{
732
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>>;
733
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
734
+ header: z.ZodOptional<z.ZodString>;
735
+ items: z.ZodArray<z.ZodObject<{
736
+ label: z.ZodString;
737
+ href: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
738
+ }, "strip", z.ZodTypeAny, {
739
+ href: string;
740
+ label: string;
741
+ }, {
742
+ href: string;
743
+ label: string;
744
+ }>, "many">;
745
+ }, "strip", z.ZodTypeAny, {
746
+ items: {
747
+ href: string;
748
+ label: string;
749
+ }[];
750
+ header?: string | undefined;
751
+ }, {
752
+ items: {
753
+ href: string;
754
+ label: string;
755
+ }[];
756
+ header?: string | undefined;
757
+ }>, "many">>;
758
+ }, "strip", z.ZodTypeAny, {
759
+ links?: {
760
+ items: {
761
+ href: string;
762
+ label: string;
763
+ }[];
764
+ header?: string | undefined;
765
+ }[] | undefined;
766
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
767
+ }, {
768
+ links?: {
769
+ items: {
770
+ href: string;
771
+ label: string;
772
+ }[];
773
+ header?: string | undefined;
774
+ }[] | undefined;
775
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
776
+ }>>;
777
+ search: z.ZodOptional<z.ZodObject<{
778
+ prompt: z.ZodOptional<z.ZodString>;
779
+ }, "strip", z.ZodTypeAny, {
780
+ prompt?: string | undefined;
781
+ }, {
782
+ prompt?: string | undefined;
783
+ }>>;
784
+ seo: z.ZodOptional<z.ZodObject<{
785
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
786
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
787
+ }, "strip", z.ZodTypeAny, {
788
+ metatags?: Record<string, string> | undefined;
789
+ indexing?: "all" | "navigable" | undefined;
790
+ }, {
791
+ metatags?: Record<string, string> | undefined;
792
+ indexing?: "all" | "navigable" | undefined;
793
+ }>>;
794
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
795
+ family: z.ZodString;
796
+ weight: z.ZodOptional<z.ZodNumber>;
797
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
798
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
799
+ }, "strip", z.ZodTypeAny, {
800
+ family: string;
801
+ source?: string | undefined;
802
+ weight?: number | undefined;
803
+ format?: "woff" | "woff2" | undefined;
804
+ }, {
805
+ family: string;
806
+ source?: string | undefined;
807
+ weight?: number | undefined;
808
+ format?: "woff" | "woff2" | undefined;
809
+ }>, {
810
+ family: string;
811
+ source?: string | undefined;
812
+ weight?: number | undefined;
813
+ format?: "woff" | "woff2" | undefined;
814
+ }, {
815
+ family: string;
816
+ source?: string | undefined;
817
+ weight?: number | undefined;
818
+ format?: "woff" | "woff2" | undefined;
819
+ }>, z.ZodObject<{
820
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
821
+ family: z.ZodString;
822
+ weight: z.ZodOptional<z.ZodNumber>;
823
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
824
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
825
+ }, "strip", z.ZodTypeAny, {
826
+ family: string;
827
+ source?: string | undefined;
828
+ weight?: number | undefined;
829
+ format?: "woff" | "woff2" | undefined;
830
+ }, {
831
+ family: string;
832
+ source?: string | undefined;
833
+ weight?: number | undefined;
834
+ format?: "woff" | "woff2" | undefined;
835
+ }>, {
836
+ family: string;
837
+ source?: string | undefined;
838
+ weight?: number | undefined;
839
+ format?: "woff" | "woff2" | undefined;
840
+ }, {
841
+ family: string;
842
+ source?: string | undefined;
843
+ weight?: number | undefined;
844
+ format?: "woff" | "woff2" | undefined;
845
+ }>>;
846
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
847
+ family: z.ZodString;
848
+ weight: z.ZodOptional<z.ZodNumber>;
849
+ source: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
850
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
851
+ }, "strip", z.ZodTypeAny, {
852
+ family: string;
853
+ source?: string | undefined;
854
+ weight?: number | undefined;
855
+ format?: "woff" | "woff2" | undefined;
856
+ }, {
857
+ family: string;
858
+ source?: string | undefined;
859
+ weight?: number | undefined;
860
+ format?: "woff" | "woff2" | undefined;
861
+ }>, {
862
+ family: string;
863
+ source?: string | undefined;
864
+ weight?: number | undefined;
865
+ format?: "woff" | "woff2" | undefined;
866
+ }, {
867
+ family: string;
868
+ source?: string | undefined;
869
+ weight?: number | undefined;
870
+ format?: "woff" | "woff2" | undefined;
871
+ }>>;
872
+ }, "strict", z.ZodTypeAny, {
873
+ body?: {
874
+ family: string;
875
+ source?: string | undefined;
876
+ weight?: number | undefined;
877
+ format?: "woff" | "woff2" | undefined;
878
+ } | undefined;
879
+ heading?: {
880
+ family: string;
881
+ source?: string | undefined;
882
+ weight?: number | undefined;
883
+ format?: "woff" | "woff2" | undefined;
884
+ } | undefined;
885
+ }, {
886
+ body?: {
887
+ family: string;
888
+ source?: string | undefined;
889
+ weight?: number | undefined;
890
+ format?: "woff" | "woff2" | undefined;
891
+ } | undefined;
892
+ heading?: {
893
+ family: string;
894
+ source?: string | undefined;
895
+ weight?: number | undefined;
896
+ format?: "woff" | "woff2" | undefined;
897
+ } | undefined;
898
+ }>]>>;
899
+ icons: z.ZodOptional<z.ZodObject<{
900
+ library: z.ZodEnum<["fontawesome", "lucide"]>;
901
+ }, "strip", z.ZodTypeAny, {
902
+ library: "fontawesome" | "lucide";
903
+ }, {
904
+ library: "fontawesome" | "lucide";
905
+ }>>;
906
+ styling: z.ZodOptional<z.ZodObject<{
907
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
908
+ codeblocks: z.ZodUnion<[z.ZodOptional<z.ZodEnum<["system", "dark"]>>, z.ZodObject<{
909
+ theme: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>, z.ZodObject<{
910
+ light: z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>;
911
+ dark: z.ZodEnum<["andromeeda", "aurora-x", "ayu-dark", "catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha", "dark-plus", "dracula", "dracula-soft", "everforest-dark", "everforest-light", "github-dark", "github-dark-default", "github-dark-dimmed", "github-dark-high-contrast", "github-light", "github-light-default", "github-light-high-contrast", "gruvbox-dark-hard", "gruvbox-dark-medium", "gruvbox-dark-soft", "gruvbox-light-hard", "gruvbox-light-medium", "gruvbox-light-soft", "houston", "kanagawa-dragon", "kanagawa-lotus", "kanagawa-wave", "laserwave", "light-plus", "material-theme", "material-theme-darker", "material-theme-lighter", "material-theme-ocean", "material-theme-palenight", "min-dark", "min-light", "monokai", "night-owl", "nord", "one-dark-pro", "one-light", "plastic", "poimandres", "red", "rose-pine", "rose-pine-dawn", "rose-pine-moon", "slack-dark", "slack-ochin", "snazzy-light", "solarized-dark", "solarized-light", "synthwave-84", "tokyo-night", "vesper", "vitesse-black", "vitesse-dark", "vitesse-light", "css-variables"]>;
912
+ }, "strip", z.ZodTypeAny, {
913
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
914
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
915
+ }, {
916
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
917
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
918
+ }>]>>;
919
+ languages: z.ZodOptional<z.ZodObject<{
920
+ custom: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
921
+ }, "strip", z.ZodTypeAny, {
922
+ custom?: string[] | undefined;
923
+ }, {
924
+ custom?: string[] | undefined;
925
+ }>>;
926
+ }, "strip", z.ZodTypeAny, {
927
+ languages?: {
928
+ custom?: string[] | undefined;
929
+ } | undefined;
930
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
931
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
932
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
933
+ } | undefined;
934
+ }, {
935
+ languages?: {
936
+ custom?: string[] | undefined;
937
+ } | undefined;
938
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
939
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
940
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
941
+ } | undefined;
942
+ }>]>;
943
+ latex: z.ZodOptional<z.ZodBoolean>;
944
+ }, "strip", z.ZodTypeAny, {
945
+ eyebrows?: "section" | "breadcrumbs" | undefined;
946
+ codeblocks?: "dark" | "system" | {
947
+ languages?: {
948
+ custom?: string[] | undefined;
949
+ } | undefined;
950
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
951
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
952
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
953
+ } | undefined;
954
+ } | undefined;
955
+ latex?: boolean | undefined;
956
+ }, {
957
+ eyebrows?: "section" | "breadcrumbs" | undefined;
958
+ codeblocks?: "dark" | "system" | {
959
+ languages?: {
960
+ custom?: string[] | undefined;
961
+ } | undefined;
962
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
963
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
964
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
965
+ } | undefined;
966
+ } | undefined;
967
+ latex?: boolean | undefined;
968
+ }>>;
969
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
970
+ source: z.ZodString;
971
+ destination: z.ZodString;
972
+ permanent: z.ZodOptional<z.ZodBoolean>;
973
+ }, "strip", z.ZodTypeAny, {
974
+ source: string;
975
+ destination: string;
976
+ permanent?: boolean | undefined;
977
+ }, {
978
+ source: string;
979
+ destination: string;
980
+ permanent?: boolean | undefined;
981
+ }>, "many">, {
982
+ source: string;
983
+ destination: string;
984
+ permanent?: boolean | undefined;
985
+ }[], {
986
+ source: string;
987
+ destination: string;
988
+ permanent?: boolean | undefined;
989
+ }[]>>;
990
+ integrations: z.ZodOptional<z.ZodObject<{
991
+ amplitude: z.ZodOptional<z.ZodObject<{
992
+ apiKey: z.ZodString;
993
+ }, "strip", z.ZodTypeAny, {
994
+ apiKey: string;
995
+ }, {
996
+ apiKey: string;
997
+ }>>;
998
+ clarity: z.ZodOptional<z.ZodObject<{
999
+ projectId: z.ZodString;
1000
+ }, "strip", z.ZodTypeAny, {
1001
+ projectId: string;
1002
+ }, {
1003
+ projectId: string;
1004
+ }>>;
1005
+ clearbit: z.ZodOptional<z.ZodObject<{
1006
+ publicApiKey: z.ZodString;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ publicApiKey: string;
1009
+ }, {
1010
+ publicApiKey: string;
1011
+ }>>;
1012
+ fathom: z.ZodOptional<z.ZodObject<{
1013
+ siteId: z.ZodString;
1014
+ }, "strip", z.ZodTypeAny, {
1015
+ siteId: string;
1016
+ }, {
1017
+ siteId: string;
1018
+ }>>;
1019
+ frontchat: z.ZodOptional<z.ZodObject<{
1020
+ snippetId: z.ZodString;
1021
+ }, "strip", z.ZodTypeAny, {
1022
+ snippetId: string;
1023
+ }, {
1024
+ snippetId: string;
1025
+ }>>;
1026
+ ga4: z.ZodOptional<z.ZodObject<{
1027
+ measurementId: z.ZodString;
1028
+ }, "strip", z.ZodTypeAny, {
1029
+ measurementId: string;
1030
+ }, {
1031
+ measurementId: string;
1032
+ }>>;
1033
+ gtm: z.ZodOptional<z.ZodObject<{
1034
+ tagId: z.ZodString;
1035
+ }, "strip", z.ZodTypeAny, {
1036
+ tagId: string;
1037
+ }, {
1038
+ tagId: string;
1039
+ }>>;
1040
+ heap: z.ZodOptional<z.ZodObject<{
1041
+ appId: z.ZodString;
1042
+ }, "strip", z.ZodTypeAny, {
1043
+ appId: string;
1044
+ }, {
1045
+ appId: string;
1046
+ }>>;
1047
+ hightouch: z.ZodOptional<z.ZodObject<{
1048
+ writeKey: z.ZodString;
1049
+ apiHost: z.ZodOptional<z.ZodString>;
1050
+ }, "strip", z.ZodTypeAny, {
1051
+ writeKey: string;
1052
+ apiHost?: string | undefined;
1053
+ }, {
1054
+ writeKey: string;
1055
+ apiHost?: string | undefined;
1056
+ }>>;
1057
+ hotjar: z.ZodOptional<z.ZodObject<{
1058
+ hjid: z.ZodString;
1059
+ hjsv: z.ZodString;
1060
+ }, "strip", z.ZodTypeAny, {
1061
+ hjid: string;
1062
+ hjsv: string;
1063
+ }, {
1064
+ hjid: string;
1065
+ hjsv: string;
1066
+ }>>;
1067
+ intercom: z.ZodOptional<z.ZodObject<{
1068
+ appId: z.ZodString;
1069
+ }, "strip", z.ZodTypeAny, {
1070
+ appId: string;
1071
+ }, {
1072
+ appId: string;
1073
+ }>>;
1074
+ koala: z.ZodOptional<z.ZodObject<{
1075
+ publicApiKey: z.ZodString;
1076
+ }, "strip", z.ZodTypeAny, {
1077
+ publicApiKey: string;
1078
+ }, {
1079
+ publicApiKey: string;
1080
+ }>>;
1081
+ logrocket: z.ZodOptional<z.ZodObject<{
1082
+ appId: z.ZodString;
1083
+ }, "strip", z.ZodTypeAny, {
1084
+ appId: string;
1085
+ }, {
1086
+ appId: string;
1087
+ }>>;
1088
+ mixpanel: z.ZodOptional<z.ZodObject<{
1089
+ projectToken: z.ZodString;
1090
+ }, "strip", z.ZodTypeAny, {
1091
+ projectToken: string;
1092
+ }, {
1093
+ projectToken: string;
1094
+ }>>;
1095
+ pirsch: z.ZodOptional<z.ZodObject<{
1096
+ id: z.ZodString;
1097
+ }, "strip", z.ZodTypeAny, {
1098
+ id: string;
1099
+ }, {
1100
+ id: string;
1101
+ }>>;
1102
+ posthog: z.ZodOptional<z.ZodObject<{
1103
+ apiKey: z.ZodString;
1104
+ apiHost: z.ZodOptional<z.ZodString>;
1105
+ }, "strip", z.ZodTypeAny, {
1106
+ apiKey: string;
1107
+ apiHost?: string | undefined;
1108
+ }, {
1109
+ apiKey: string;
1110
+ apiHost?: string | undefined;
1111
+ }>>;
1112
+ plausible: z.ZodOptional<z.ZodObject<{
1113
+ domain: z.ZodEffects<z.ZodString, string, string>;
1114
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1115
+ }, "strip", z.ZodTypeAny, {
1116
+ domain: string;
1117
+ server?: string | undefined;
1118
+ }, {
1119
+ domain: string;
1120
+ server?: string | undefined;
1121
+ }>>;
1122
+ segment: z.ZodOptional<z.ZodObject<{
1123
+ key: z.ZodString;
1124
+ }, "strip", z.ZodTypeAny, {
1125
+ key: string;
1126
+ }, {
1127
+ key: string;
1128
+ }>>;
1129
+ telemetry: z.ZodOptional<z.ZodObject<{
1130
+ enabled: z.ZodOptional<z.ZodBoolean>;
1131
+ }, "strip", z.ZodTypeAny, {
1132
+ enabled?: boolean | undefined;
1133
+ }, {
1134
+ enabled?: boolean | undefined;
1135
+ }>>;
1136
+ cookies: z.ZodOptional<z.ZodObject<{
1137
+ key: z.ZodOptional<z.ZodString>;
1138
+ value: z.ZodOptional<z.ZodString>;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ value?: string | undefined;
1141
+ key?: string | undefined;
1142
+ }, {
1143
+ value?: string | undefined;
1144
+ key?: string | undefined;
1145
+ }>>;
1146
+ }, "strict", z.ZodTypeAny, {
1147
+ amplitude?: {
1148
+ apiKey: string;
1149
+ } | undefined;
1150
+ clarity?: {
1151
+ projectId: string;
1152
+ } | undefined;
1153
+ clearbit?: {
1154
+ publicApiKey: string;
1155
+ } | undefined;
1156
+ fathom?: {
1157
+ siteId: string;
1158
+ } | undefined;
1159
+ ga4?: {
1160
+ measurementId: string;
1161
+ } | undefined;
1162
+ gtm?: {
1163
+ tagId: string;
1164
+ } | undefined;
1165
+ heap?: {
1166
+ appId: string;
1167
+ } | undefined;
1168
+ hightouch?: {
1169
+ writeKey: string;
1170
+ apiHost?: string | undefined;
1171
+ } | undefined;
1172
+ hotjar?: {
1173
+ hjid: string;
1174
+ hjsv: string;
1175
+ } | undefined;
1176
+ koala?: {
1177
+ publicApiKey: string;
1178
+ } | undefined;
1179
+ logrocket?: {
1180
+ appId: string;
1181
+ } | undefined;
1182
+ mixpanel?: {
1183
+ projectToken: string;
1184
+ } | undefined;
1185
+ pirsch?: {
1186
+ id: string;
1187
+ } | undefined;
1188
+ posthog?: {
1189
+ apiKey: string;
1190
+ apiHost?: string | undefined;
1191
+ } | undefined;
1192
+ plausible?: {
1193
+ domain: string;
1194
+ server?: string | undefined;
1195
+ } | undefined;
1196
+ segment?: {
1197
+ key: string;
1198
+ } | undefined;
1199
+ intercom?: {
1200
+ appId: string;
1201
+ } | undefined;
1202
+ frontchat?: {
1203
+ snippetId: string;
1204
+ } | undefined;
1205
+ telemetry?: {
1206
+ enabled?: boolean | undefined;
1207
+ } | undefined;
1208
+ cookies?: {
1209
+ value?: string | undefined;
1210
+ key?: string | undefined;
1211
+ } | undefined;
1212
+ }, {
1213
+ amplitude?: {
1214
+ apiKey: string;
1215
+ } | undefined;
1216
+ clarity?: {
1217
+ projectId: string;
1218
+ } | undefined;
1219
+ clearbit?: {
1220
+ publicApiKey: string;
1221
+ } | undefined;
1222
+ fathom?: {
1223
+ siteId: string;
1224
+ } | undefined;
1225
+ ga4?: {
1226
+ measurementId: string;
1227
+ } | undefined;
1228
+ gtm?: {
1229
+ tagId: string;
1230
+ } | undefined;
1231
+ heap?: {
1232
+ appId: string;
1233
+ } | undefined;
1234
+ hightouch?: {
1235
+ writeKey: string;
1236
+ apiHost?: string | undefined;
1237
+ } | undefined;
1238
+ hotjar?: {
1239
+ hjid: string;
1240
+ hjsv: string;
1241
+ } | undefined;
1242
+ koala?: {
1243
+ publicApiKey: string;
1244
+ } | undefined;
1245
+ logrocket?: {
1246
+ appId: string;
1247
+ } | undefined;
1248
+ mixpanel?: {
1249
+ projectToken: string;
1250
+ } | undefined;
1251
+ pirsch?: {
1252
+ id: string;
1253
+ } | undefined;
1254
+ posthog?: {
1255
+ apiKey: string;
1256
+ apiHost?: string | undefined;
1257
+ } | undefined;
1258
+ plausible?: {
1259
+ domain: string;
1260
+ server?: string | undefined;
1261
+ } | undefined;
1262
+ segment?: {
1263
+ key: string;
1264
+ } | undefined;
1265
+ intercom?: {
1266
+ appId: string;
1267
+ } | undefined;
1268
+ frontchat?: {
1269
+ snippetId: string;
1270
+ } | undefined;
1271
+ telemetry?: {
1272
+ enabled?: boolean | undefined;
1273
+ } | undefined;
1274
+ cookies?: {
1275
+ value?: string | undefined;
1276
+ key?: string | undefined;
1277
+ } | undefined;
1278
+ }>>;
1279
+ banner: z.ZodOptional<z.ZodObject<{
1280
+ content: z.ZodString;
1281
+ dismissible: z.ZodOptional<z.ZodBoolean>;
1282
+ }, "strip", z.ZodTypeAny, {
1283
+ content: string;
1284
+ dismissible?: boolean | undefined;
1285
+ }, {
1286
+ content: string;
1287
+ dismissible?: boolean | undefined;
1288
+ }>>;
1289
+ errors: z.ZodOptional<z.ZodObject<{
1290
+ '404': z.ZodObject<{
1291
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1292
+ title: z.ZodOptional<z.ZodString>;
1293
+ description: z.ZodOptional<z.ZodString>;
1294
+ }, "strip", z.ZodTypeAny, {
1295
+ redirect: boolean;
1296
+ title?: string | undefined;
1297
+ description?: string | undefined;
1298
+ }, {
1299
+ title?: string | undefined;
1300
+ description?: string | undefined;
1301
+ redirect?: boolean | undefined;
1302
+ }>;
1303
+ }, "strip", z.ZodTypeAny, {
1304
+ '404': {
1305
+ redirect: boolean;
1306
+ title?: string | undefined;
1307
+ description?: string | undefined;
1308
+ };
1309
+ }, {
1310
+ '404': {
1311
+ title?: string | undefined;
1312
+ description?: string | undefined;
1313
+ redirect?: boolean | undefined;
1314
+ };
1315
+ }>>;
1316
+ contextual: z.ZodOptional<z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
+ title: z.ZodString;
1319
+ description: z.ZodString;
1320
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1321
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1322
+ name: z.ZodEffects<z.ZodString, string, string>;
1323
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
1324
+ }, "strip", z.ZodTypeAny, {
1325
+ name: string;
1326
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1327
+ library?: "fontawesome" | "lucide" | undefined;
1328
+ }, {
1329
+ name: string;
1330
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1331
+ library?: "fontawesome" | "lucide" | undefined;
1332
+ }>]>>;
1333
+ href: z.ZodUnion<[z.ZodString, z.ZodObject<{
1334
+ base: z.ZodString;
1335
+ query: z.ZodOptional<z.ZodArray<z.ZodObject<{
1336
+ key: z.ZodString;
1337
+ value: z.ZodString;
1338
+ }, "strip", z.ZodTypeAny, {
1339
+ value: string;
1340
+ key: string;
1341
+ }, {
1342
+ value: string;
1343
+ key: string;
1344
+ }>, "many">>;
1345
+ }, "strip", z.ZodTypeAny, {
1346
+ base: string;
1347
+ query?: {
1348
+ value: string;
1349
+ key: string;
1350
+ }[] | undefined;
1351
+ }, {
1352
+ base: string;
1353
+ query?: {
1354
+ value: string;
1355
+ key: string;
1356
+ }[] | undefined;
1357
+ }>]>;
1358
+ }, "strip", z.ZodTypeAny, {
1359
+ href: string | {
1360
+ base: string;
1361
+ query?: {
1362
+ value: string;
1363
+ key: string;
1364
+ }[] | undefined;
1365
+ };
1366
+ title: string;
1367
+ description: string;
1368
+ icon?: string | {
1369
+ name: string;
1370
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1371
+ library?: "fontawesome" | "lucide" | undefined;
1372
+ } | undefined;
1373
+ }, {
1374
+ href: string | {
1375
+ base: string;
1376
+ query?: {
1377
+ value: string;
1378
+ key: string;
1379
+ }[] | undefined;
1380
+ };
1381
+ title: string;
1382
+ description: string;
1383
+ icon?: string | {
1384
+ name: string;
1385
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
+ library?: "fontawesome" | "lucide" | undefined;
1387
+ } | undefined;
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1389
+ href: string | {
1390
+ base: string;
1391
+ query?: {
1392
+ value: string;
1393
+ key: string;
1394
+ }[] | undefined;
1395
+ };
1396
+ title: string;
1397
+ description: string;
1398
+ icon?: string | {
1399
+ name: string;
1400
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
+ library?: "fontawesome" | "lucide" | undefined;
1402
+ } | undefined;
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1404
+ href: string | {
1405
+ base: string;
1406
+ query?: {
1407
+ value: string;
1408
+ key: string;
1409
+ }[] | undefined;
1410
+ };
1411
+ title: string;
1412
+ description: string;
1413
+ icon?: string | {
1414
+ name: string;
1415
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1416
+ library?: "fontawesome" | "lucide" | undefined;
1417
+ } | undefined;
1418
+ })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1420
+ }, "strip", z.ZodTypeAny, {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1422
+ href: string | {
1423
+ base: string;
1424
+ query?: {
1425
+ value: string;
1426
+ key: string;
1427
+ }[] | undefined;
1428
+ };
1429
+ title: string;
1430
+ description: string;
1431
+ icon?: string | {
1432
+ name: string;
1433
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1434
+ library?: "fontawesome" | "lucide" | undefined;
1435
+ } | undefined;
1436
+ })[];
1437
+ display: "header" | "toc";
1438
+ }, {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1440
+ href: string | {
1441
+ base: string;
1442
+ query?: {
1443
+ value: string;
1444
+ key: string;
1445
+ }[] | undefined;
1446
+ };
1447
+ title: string;
1448
+ description: string;
1449
+ icon?: string | {
1450
+ name: string;
1451
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1452
+ library?: "fontawesome" | "lucide" | undefined;
1453
+ } | undefined;
1454
+ })[];
1455
+ display?: "header" | "toc" | undefined;
1456
+ }>>;
1457
+ thumbnails: z.ZodOptional<z.ZodObject<{
1458
+ appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
1459
+ background: z.ZodOptional<z.ZodString>;
1460
+ fonts: z.ZodOptional<z.ZodObject<{
1461
+ family: z.ZodString;
1462
+ }, "strip", z.ZodTypeAny, {
1463
+ family: string;
1464
+ }, {
1465
+ family: string;
1466
+ }>>;
1467
+ }, "strip", z.ZodTypeAny, {
1468
+ background?: string | undefined;
1469
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1470
+ fonts?: {
1471
+ family: string;
1472
+ } | undefined;
1473
+ }, {
1474
+ background?: string | undefined;
1475
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1476
+ fonts?: {
1477
+ family: string;
1478
+ } | undefined;
1479
+ }>>;
1480
+ interaction: z.ZodOptional<z.ZodObject<{
1481
+ drilldown: z.ZodOptional<z.ZodBoolean>;
1482
+ }, "strip", z.ZodTypeAny, {
1483
+ drilldown?: boolean | undefined;
1484
+ }, {
1485
+ drilldown?: boolean | undefined;
1486
+ }>>;
1487
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1488
+ timestamp: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1489
+ }, "strip", z.ZodTypeAny, {
1490
+ timestamp: boolean;
1491
+ }, {
1492
+ timestamp?: boolean | undefined;
1493
+ }>>>;
1494
+ theme: z.ZodLiteral<"sequoia">;
1495
+ }, "strip", z.ZodTypeAny, {
1496
+ name: string;
1497
+ $schema: string;
1498
+ theme: "sequoia";
1499
+ colors: {
1500
+ primary: string;
1501
+ light?: string | undefined;
1502
+ dark?: string | undefined;
1503
+ };
1504
+ navigation: {
1505
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
1506
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1507
+ } | {
1508
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1509
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1510
+ } | {
1511
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1512
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1513
+ } | {
1514
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1515
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1516
+ } | {
1517
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1518
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1519
+ } | {
1520
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1521
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1522
+ } | {
1523
+ groups: ({
1524
+ group: string;
1525
+ icon?: string | {
1526
+ name: string;
1527
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1528
+ library?: "fontawesome" | "lucide" | undefined;
1529
+ } | undefined;
1530
+ expanded?: boolean | undefined;
1531
+ public?: boolean | undefined;
1532
+ tag?: string | undefined;
1533
+ hidden?: boolean | undefined;
1534
+ root?: string | undefined;
1535
+ } & {
1536
+ openapi?: string | string[] | {
1537
+ source: string;
1538
+ directory?: string | undefined;
1539
+ } | undefined;
1540
+ asyncapi?: string | string[] | {
1541
+ source: string;
1542
+ directory?: string | undefined;
1543
+ } | undefined;
1544
+ } & {
1545
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1546
+ })[];
1547
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1548
+ } | {
1549
+ pages: (string | ({
1550
+ group: string;
1551
+ icon?: string | {
1552
+ name: string;
1553
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1554
+ library?: "fontawesome" | "lucide" | undefined;
1555
+ } | undefined;
1556
+ expanded?: boolean | undefined;
1557
+ public?: boolean | undefined;
1558
+ tag?: string | undefined;
1559
+ hidden?: boolean | undefined;
1560
+ root?: string | undefined;
1561
+ } & {
1562
+ openapi?: string | string[] | {
1563
+ source: string;
1564
+ directory?: string | undefined;
1565
+ } | undefined;
1566
+ asyncapi?: string | string[] | {
1567
+ source: string;
1568
+ directory?: string | undefined;
1569
+ } | undefined;
1570
+ } & {
1571
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1572
+ }))[];
1573
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1574
+ };
1575
+ background?: {
1576
+ color?: {
1577
+ light?: string | undefined;
1578
+ dark?: string | undefined;
1579
+ } | undefined;
1580
+ image?: string | {
1581
+ light: string;
1582
+ dark: string;
1583
+ } | undefined;
1584
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1585
+ } | undefined;
1586
+ public?: boolean | undefined;
1587
+ logo?: string | {
1588
+ light: string;
1589
+ dark: string;
1590
+ href?: string | undefined;
1591
+ } | undefined;
1592
+ favicon?: string | {
1593
+ light: string;
1594
+ dark: string;
1595
+ } | undefined;
1596
+ api?: {
1597
+ params?: {
1598
+ expanded?: "all" | "closed" | undefined;
1599
+ } | undefined;
1600
+ openapi?: string | string[] | {
1601
+ source: string;
1602
+ directory?: string | undefined;
1603
+ } | undefined;
1604
+ playground?: {
1605
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1606
+ proxy?: boolean | undefined;
1607
+ } | undefined;
1608
+ asyncapi?: string | string[] | {
1609
+ source: string;
1610
+ directory?: string | undefined;
1611
+ } | undefined;
1612
+ examples?: {
1613
+ languages?: string[] | undefined;
1614
+ defaults?: "all" | "required" | undefined;
1615
+ prefill?: boolean | undefined;
1616
+ autogenerate?: boolean | undefined;
1617
+ } | undefined;
1618
+ mdx?: {
1619
+ server?: string | string[] | undefined;
1620
+ auth?: {
1621
+ name?: string | undefined;
1622
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1623
+ } | undefined;
1624
+ } | undefined;
1625
+ } | undefined;
1626
+ metadata?: {
1627
+ timestamp: boolean;
1628
+ } | undefined;
1629
+ footer?: {
1630
+ links?: {
1631
+ items: {
1632
+ href: string;
1633
+ label: string;
1634
+ }[];
1635
+ header?: string | undefined;
1636
+ }[] | undefined;
1637
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
1638
+ } | undefined;
1639
+ integrations?: {
1640
+ amplitude?: {
1641
+ apiKey: string;
1642
+ } | undefined;
1643
+ clarity?: {
1644
+ projectId: string;
1645
+ } | undefined;
1646
+ clearbit?: {
1647
+ publicApiKey: string;
1648
+ } | undefined;
1649
+ fathom?: {
1650
+ siteId: string;
1651
+ } | undefined;
1652
+ ga4?: {
1653
+ measurementId: string;
1654
+ } | undefined;
1655
+ gtm?: {
1656
+ tagId: string;
1657
+ } | undefined;
1658
+ heap?: {
1659
+ appId: string;
1660
+ } | undefined;
1661
+ hightouch?: {
1662
+ writeKey: string;
1663
+ apiHost?: string | undefined;
1664
+ } | undefined;
1665
+ hotjar?: {
1666
+ hjid: string;
1667
+ hjsv: string;
1668
+ } | undefined;
1669
+ koala?: {
1670
+ publicApiKey: string;
1671
+ } | undefined;
1672
+ logrocket?: {
1673
+ appId: string;
1674
+ } | undefined;
1675
+ mixpanel?: {
1676
+ projectToken: string;
1677
+ } | undefined;
1678
+ pirsch?: {
1679
+ id: string;
1680
+ } | undefined;
1681
+ posthog?: {
1682
+ apiKey: string;
1683
+ apiHost?: string | undefined;
1684
+ } | undefined;
1685
+ plausible?: {
1686
+ domain: string;
1687
+ server?: string | undefined;
1688
+ } | undefined;
1689
+ segment?: {
1690
+ key: string;
1691
+ } | undefined;
1692
+ intercom?: {
1693
+ appId: string;
1694
+ } | undefined;
1695
+ frontchat?: {
1696
+ snippetId: string;
1697
+ } | undefined;
1698
+ telemetry?: {
1699
+ enabled?: boolean | undefined;
1700
+ } | undefined;
1701
+ cookies?: {
1702
+ value?: string | undefined;
1703
+ key?: string | undefined;
1704
+ } | undefined;
1705
+ } | undefined;
1706
+ search?: {
1707
+ prompt?: string | undefined;
1708
+ } | undefined;
1709
+ redirects?: {
1710
+ source: string;
1711
+ destination: string;
1712
+ permanent?: boolean | undefined;
1713
+ }[] | undefined;
1714
+ seo?: {
1715
+ metatags?: Record<string, string> | undefined;
1716
+ indexing?: "all" | "navigable" | undefined;
1717
+ } | undefined;
1718
+ description?: string | undefined;
1719
+ banner?: {
1720
+ content: string;
1721
+ dismissible?: boolean | undefined;
1722
+ } | undefined;
1723
+ appearance?: {
1724
+ strict?: boolean | undefined;
1725
+ default?: "light" | "dark" | "system" | undefined;
1726
+ } | undefined;
1727
+ fonts?: {
1728
+ family: string;
1729
+ source?: string | undefined;
1730
+ weight?: number | undefined;
1731
+ format?: "woff" | "woff2" | undefined;
1732
+ } | {
1733
+ body?: {
1734
+ family: string;
1735
+ source?: string | undefined;
1736
+ weight?: number | undefined;
1737
+ format?: "woff" | "woff2" | undefined;
1738
+ } | undefined;
1739
+ heading?: {
1740
+ family: string;
1741
+ source?: string | undefined;
1742
+ weight?: number | undefined;
1743
+ format?: "woff" | "woff2" | undefined;
1744
+ } | undefined;
1745
+ } | undefined;
1746
+ navbar?: {
1747
+ primary?: {
1748
+ type: "button";
1749
+ href: string;
1750
+ label: string;
1751
+ } | {
1752
+ type: "github";
1753
+ href: string;
1754
+ label?: string | undefined;
1755
+ } | {
1756
+ type: "discord";
1757
+ href: string;
1758
+ label?: string | undefined;
1759
+ } | undefined;
1760
+ links?: ({
1761
+ href: string;
1762
+ label: string;
1763
+ type?: string | undefined;
1764
+ icon?: string | {
1765
+ name: string;
1766
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1767
+ library?: "fontawesome" | "lucide" | undefined;
1768
+ } | undefined;
1769
+ } | {
1770
+ type: "github";
1771
+ href: 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
+ library?: "fontawesome" | "lucide" | undefined;
1776
+ } | undefined;
1777
+ label?: string | undefined;
1778
+ } | {
1779
+ type: "discord";
1780
+ href: 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
+ library?: "fontawesome" | "lucide" | undefined;
1785
+ } | undefined;
1786
+ label?: string | undefined;
1787
+ })[] | undefined;
1788
+ } | undefined;
1789
+ icons?: {
1790
+ library: "fontawesome" | "lucide";
1791
+ } | undefined;
1792
+ styling?: {
1793
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1794
+ codeblocks?: "dark" | "system" | {
1795
+ languages?: {
1796
+ custom?: string[] | undefined;
1797
+ } | undefined;
1798
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
1799
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
1800
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
1801
+ } | undefined;
1802
+ } | undefined;
1803
+ latex?: boolean | undefined;
1804
+ } | undefined;
1805
+ errors?: {
1806
+ '404': {
1807
+ redirect: boolean;
1808
+ title?: string | undefined;
1809
+ description?: string | undefined;
1810
+ };
1811
+ } | undefined;
1812
+ contextual?: {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1814
+ href: string | {
1815
+ base: string;
1816
+ query?: {
1817
+ value: string;
1818
+ key: string;
1819
+ }[] | undefined;
1820
+ };
1821
+ title: string;
1822
+ description: string;
1823
+ icon?: string | {
1824
+ name: string;
1825
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1826
+ library?: "fontawesome" | "lucide" | undefined;
1827
+ } | undefined;
1828
+ })[];
1829
+ display: "header" | "toc";
1830
+ } | undefined;
1831
+ thumbnails?: {
1832
+ background?: string | undefined;
1833
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1834
+ fonts?: {
1835
+ family: string;
1836
+ } | undefined;
1837
+ } | undefined;
1838
+ interaction?: {
1839
+ drilldown?: boolean | undefined;
1840
+ } | undefined;
1841
+ }, {
1842
+ name: string;
1843
+ theme: "sequoia";
1844
+ colors: {
1845
+ primary: string;
1846
+ light?: string | undefined;
1847
+ dark?: string | undefined;
1848
+ };
1849
+ navigation: {
1850
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
1851
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1852
+ } | {
1853
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1854
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1855
+ } | {
1856
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1857
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1858
+ } | {
1859
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1860
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1861
+ } | {
1862
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1863
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1864
+ } | {
1865
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1866
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1867
+ } | {
1868
+ groups: ({
1869
+ group: string;
1870
+ icon?: string | {
1871
+ name: string;
1872
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1873
+ library?: "fontawesome" | "lucide" | undefined;
1874
+ } | undefined;
1875
+ expanded?: boolean | undefined;
1876
+ public?: boolean | undefined;
1877
+ tag?: string | undefined;
1878
+ hidden?: boolean | undefined;
1879
+ root?: string | undefined;
1880
+ } & {
1881
+ openapi?: string | string[] | {
1882
+ source: string;
1883
+ directory?: string | undefined;
1884
+ } | undefined;
1885
+ asyncapi?: string | string[] | {
1886
+ source: string;
1887
+ directory?: string | undefined;
1888
+ } | undefined;
1889
+ } & {
1890
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1891
+ })[];
1892
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1893
+ } | {
1894
+ pages: (string | ({
1895
+ group: string;
1896
+ icon?: string | {
1897
+ name: string;
1898
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1899
+ library?: "fontawesome" | "lucide" | undefined;
1900
+ } | undefined;
1901
+ expanded?: boolean | undefined;
1902
+ public?: boolean | undefined;
1903
+ tag?: string | undefined;
1904
+ hidden?: boolean | undefined;
1905
+ root?: string | undefined;
1906
+ } & {
1907
+ openapi?: string | string[] | {
1908
+ source: string;
1909
+ directory?: string | undefined;
1910
+ } | undefined;
1911
+ asyncapi?: string | string[] | {
1912
+ source: string;
1913
+ directory?: string | undefined;
1914
+ } | undefined;
1915
+ } & {
1916
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1917
+ }))[];
1918
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1919
+ };
1920
+ background?: {
1921
+ color?: {
1922
+ light?: string | undefined;
1923
+ dark?: string | undefined;
1924
+ } | undefined;
1925
+ image?: string | {
1926
+ light: string;
1927
+ dark: string;
1928
+ } | undefined;
1929
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1930
+ } | undefined;
1931
+ public?: boolean | undefined;
1932
+ $schema?: string | undefined;
1933
+ logo?: string | {
1934
+ light: string;
1935
+ dark: string;
1936
+ href?: string | undefined;
1937
+ } | undefined;
1938
+ favicon?: string | {
1939
+ light: string;
1940
+ dark: string;
1941
+ } | undefined;
1942
+ api?: {
1943
+ params?: {
1944
+ expanded?: "all" | "closed" | undefined;
1945
+ } | undefined;
1946
+ openapi?: string | string[] | {
1947
+ source: string;
1948
+ directory?: string | undefined;
1949
+ } | undefined;
1950
+ playground?: {
1951
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1952
+ proxy?: boolean | undefined;
1953
+ } | undefined;
1954
+ asyncapi?: string | string[] | {
1955
+ source: string;
1956
+ directory?: string | undefined;
1957
+ } | undefined;
1958
+ examples?: {
1959
+ languages?: string[] | undefined;
1960
+ defaults?: "all" | "required" | undefined;
1961
+ prefill?: boolean | undefined;
1962
+ autogenerate?: boolean | undefined;
1963
+ } | undefined;
1964
+ mdx?: {
1965
+ server?: string | string[] | undefined;
1966
+ auth?: {
1967
+ name?: string | undefined;
1968
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1969
+ } | undefined;
1970
+ } | undefined;
1971
+ } | undefined;
1972
+ metadata?: {
1973
+ timestamp?: boolean | undefined;
1974
+ } | undefined;
1975
+ footer?: {
1976
+ links?: {
1977
+ items: {
1978
+ href: string;
1979
+ label: string;
1980
+ }[];
1981
+ header?: string | undefined;
1982
+ }[] | undefined;
1983
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter" | "x-twitter" | "earth-americas" | "bluesky" | "threads" | "reddit" | "podcast", string>> | undefined;
1984
+ } | undefined;
1985
+ integrations?: {
1986
+ amplitude?: {
1987
+ apiKey: string;
1988
+ } | undefined;
1989
+ clarity?: {
1990
+ projectId: string;
1991
+ } | undefined;
1992
+ clearbit?: {
1993
+ publicApiKey: string;
1994
+ } | undefined;
1995
+ fathom?: {
1996
+ siteId: string;
1997
+ } | undefined;
1998
+ ga4?: {
1999
+ measurementId: string;
2000
+ } | undefined;
2001
+ gtm?: {
2002
+ tagId: string;
2003
+ } | undefined;
2004
+ heap?: {
2005
+ appId: string;
2006
+ } | undefined;
2007
+ hightouch?: {
2008
+ writeKey: string;
2009
+ apiHost?: string | undefined;
2010
+ } | undefined;
2011
+ hotjar?: {
2012
+ hjid: string;
2013
+ hjsv: string;
2014
+ } | undefined;
2015
+ koala?: {
2016
+ publicApiKey: string;
2017
+ } | undefined;
2018
+ logrocket?: {
2019
+ appId: string;
2020
+ } | undefined;
2021
+ mixpanel?: {
2022
+ projectToken: string;
2023
+ } | undefined;
2024
+ pirsch?: {
2025
+ id: string;
2026
+ } | undefined;
2027
+ posthog?: {
2028
+ apiKey: string;
2029
+ apiHost?: string | undefined;
2030
+ } | undefined;
2031
+ plausible?: {
2032
+ domain: string;
2033
+ server?: string | undefined;
2034
+ } | undefined;
2035
+ segment?: {
2036
+ key: string;
2037
+ } | undefined;
2038
+ intercom?: {
2039
+ appId: string;
2040
+ } | undefined;
2041
+ frontchat?: {
2042
+ snippetId: string;
2043
+ } | undefined;
2044
+ telemetry?: {
2045
+ enabled?: boolean | undefined;
2046
+ } | undefined;
2047
+ cookies?: {
2048
+ value?: string | undefined;
2049
+ key?: string | undefined;
2050
+ } | undefined;
2051
+ } | undefined;
2052
+ search?: {
2053
+ prompt?: string | undefined;
2054
+ } | undefined;
2055
+ redirects?: {
2056
+ source: string;
2057
+ destination: string;
2058
+ permanent?: boolean | undefined;
2059
+ }[] | undefined;
2060
+ seo?: {
2061
+ metatags?: Record<string, string> | undefined;
2062
+ indexing?: "all" | "navigable" | undefined;
2063
+ } | undefined;
2064
+ description?: string | undefined;
2065
+ banner?: {
2066
+ content: string;
2067
+ dismissible?: boolean | undefined;
2068
+ } | undefined;
2069
+ appearance?: {
2070
+ strict?: boolean | undefined;
2071
+ default?: "light" | "dark" | "system" | undefined;
2072
+ } | undefined;
2073
+ fonts?: {
2074
+ family: string;
2075
+ source?: string | undefined;
2076
+ weight?: number | undefined;
2077
+ format?: "woff" | "woff2" | undefined;
2078
+ } | {
2079
+ body?: {
2080
+ family: string;
2081
+ source?: string | undefined;
2082
+ weight?: number | undefined;
2083
+ format?: "woff" | "woff2" | undefined;
2084
+ } | undefined;
2085
+ heading?: {
2086
+ family: string;
2087
+ source?: string | undefined;
2088
+ weight?: number | undefined;
2089
+ format?: "woff" | "woff2" | undefined;
2090
+ } | undefined;
2091
+ } | undefined;
2092
+ navbar?: {
2093
+ primary?: {
2094
+ type: "button";
2095
+ href: string;
2096
+ label: string;
2097
+ } | {
2098
+ type: "github";
2099
+ href: string;
2100
+ label?: string | undefined;
2101
+ } | {
2102
+ type: "discord";
2103
+ href: string;
2104
+ label?: string | undefined;
2105
+ } | undefined;
2106
+ links?: ({
2107
+ href: string;
2108
+ label: string;
2109
+ type?: string | undefined;
2110
+ icon?: string | {
2111
+ name: string;
2112
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2113
+ library?: "fontawesome" | "lucide" | undefined;
2114
+ } | undefined;
2115
+ } | {
2116
+ type: "github";
2117
+ href: string;
2118
+ icon?: string | {
2119
+ name: string;
2120
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2121
+ library?: "fontawesome" | "lucide" | undefined;
2122
+ } | undefined;
2123
+ label?: string | undefined;
2124
+ } | {
2125
+ type: "discord";
2126
+ href: string;
2127
+ icon?: string | {
2128
+ name: string;
2129
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2130
+ library?: "fontawesome" | "lucide" | undefined;
2131
+ } | undefined;
2132
+ label?: string | undefined;
2133
+ })[] | undefined;
2134
+ } | undefined;
2135
+ icons?: {
2136
+ library: "fontawesome" | "lucide";
2137
+ } | undefined;
2138
+ styling?: {
2139
+ eyebrows?: "section" | "breadcrumbs" | undefined;
2140
+ codeblocks?: "dark" | "system" | {
2141
+ languages?: {
2142
+ custom?: string[] | undefined;
2143
+ } | undefined;
2144
+ theme?: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables" | {
2145
+ light: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
2146
+ dark: "andromeeda" | "aurora-x" | "ayu-dark" | "catppuccin-frappe" | "catppuccin-latte" | "catppuccin-macchiato" | "catppuccin-mocha" | "dark-plus" | "dracula" | "dracula-soft" | "everforest-dark" | "everforest-light" | "github-dark" | "github-dark-default" | "github-dark-dimmed" | "github-dark-high-contrast" | "github-light" | "github-light-default" | "github-light-high-contrast" | "gruvbox-dark-hard" | "gruvbox-dark-medium" | "gruvbox-dark-soft" | "gruvbox-light-hard" | "gruvbox-light-medium" | "gruvbox-light-soft" | "houston" | "kanagawa-dragon" | "kanagawa-lotus" | "kanagawa-wave" | "laserwave" | "light-plus" | "material-theme" | "material-theme-darker" | "material-theme-lighter" | "material-theme-ocean" | "material-theme-palenight" | "min-dark" | "min-light" | "monokai" | "night-owl" | "nord" | "one-dark-pro" | "one-light" | "plastic" | "poimandres" | "red" | "rose-pine" | "rose-pine-dawn" | "rose-pine-moon" | "slack-dark" | "slack-ochin" | "snazzy-light" | "solarized-dark" | "solarized-light" | "synthwave-84" | "tokyo-night" | "vesper" | "vitesse-black" | "vitesse-dark" | "vitesse-light" | "css-variables";
2147
+ } | undefined;
2148
+ } | undefined;
2149
+ latex?: boolean | undefined;
2150
+ } | undefined;
2151
+ errors?: {
2152
+ '404': {
2153
+ title?: string | undefined;
2154
+ description?: string | undefined;
2155
+ redirect?: boolean | undefined;
2156
+ };
2157
+ } | undefined;
2158
+ contextual?: {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2160
+ href: string | {
2161
+ base: string;
2162
+ query?: {
2163
+ value: string;
2164
+ key: string;
2165
+ }[] | undefined;
2166
+ };
2167
+ title: string;
2168
+ description: string;
2169
+ icon?: string | {
2170
+ name: string;
2171
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2172
+ library?: "fontawesome" | "lucide" | undefined;
2173
+ } | undefined;
2174
+ })[];
2175
+ display?: "header" | "toc" | undefined;
2176
+ } | undefined;
2177
+ thumbnails?: {
2178
+ background?: string | undefined;
2179
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
2180
+ fonts?: {
2181
+ family: string;
2182
+ } | undefined;
2183
+ } | undefined;
2184
+ interaction?: {
2185
+ drilldown?: boolean | undefined;
2186
+ } | undefined;
2187
+ }>;