@mintlify/validation 0.1.602 → 0.1.604

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,2197 @@
1
+ import { z } from 'zod';
2
+ export declare const lumaConfigSchema: 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", "tabler"]>>;
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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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", "tabler"]>>;
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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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", "tabler"]>>;
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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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" | "tabler" | 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", "tabler"]>;
901
+ }, "strip", z.ZodTypeAny, {
902
+ library: "fontawesome" | "lucide" | "tabler";
903
+ }, {
904
+ library: "fontawesome" | "lucide" | "tabler";
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
+ sessionRecording: z.ZodOptional<z.ZodBoolean>;
1106
+ }, "strip", z.ZodTypeAny, {
1107
+ apiKey: string;
1108
+ apiHost?: string | undefined;
1109
+ sessionRecording?: boolean | undefined;
1110
+ }, {
1111
+ apiKey: string;
1112
+ apiHost?: string | undefined;
1113
+ sessionRecording?: boolean | undefined;
1114
+ }>>;
1115
+ plausible: z.ZodOptional<z.ZodObject<{
1116
+ domain: z.ZodEffects<z.ZodString, string, string>;
1117
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1118
+ }, "strip", z.ZodTypeAny, {
1119
+ domain: string;
1120
+ server?: string | undefined;
1121
+ }, {
1122
+ domain: string;
1123
+ server?: string | undefined;
1124
+ }>>;
1125
+ segment: z.ZodOptional<z.ZodObject<{
1126
+ key: z.ZodString;
1127
+ }, "strip", z.ZodTypeAny, {
1128
+ key: string;
1129
+ }, {
1130
+ key: string;
1131
+ }>>;
1132
+ telemetry: z.ZodOptional<z.ZodObject<{
1133
+ enabled: z.ZodOptional<z.ZodBoolean>;
1134
+ }, "strip", z.ZodTypeAny, {
1135
+ enabled?: boolean | undefined;
1136
+ }, {
1137
+ enabled?: boolean | undefined;
1138
+ }>>;
1139
+ cookies: z.ZodOptional<z.ZodObject<{
1140
+ key: z.ZodOptional<z.ZodString>;
1141
+ value: z.ZodOptional<z.ZodString>;
1142
+ }, "strip", z.ZodTypeAny, {
1143
+ value?: string | undefined;
1144
+ key?: string | undefined;
1145
+ }, {
1146
+ value?: string | undefined;
1147
+ key?: string | undefined;
1148
+ }>>;
1149
+ }, "strict", z.ZodTypeAny, {
1150
+ amplitude?: {
1151
+ apiKey: string;
1152
+ } | undefined;
1153
+ clarity?: {
1154
+ projectId: string;
1155
+ } | undefined;
1156
+ clearbit?: {
1157
+ publicApiKey: string;
1158
+ } | undefined;
1159
+ fathom?: {
1160
+ siteId: string;
1161
+ } | undefined;
1162
+ ga4?: {
1163
+ measurementId: string;
1164
+ } | undefined;
1165
+ gtm?: {
1166
+ tagId: string;
1167
+ } | undefined;
1168
+ heap?: {
1169
+ appId: string;
1170
+ } | undefined;
1171
+ hightouch?: {
1172
+ writeKey: string;
1173
+ apiHost?: string | undefined;
1174
+ } | undefined;
1175
+ hotjar?: {
1176
+ hjid: string;
1177
+ hjsv: string;
1178
+ } | undefined;
1179
+ koala?: {
1180
+ publicApiKey: string;
1181
+ } | undefined;
1182
+ logrocket?: {
1183
+ appId: string;
1184
+ } | undefined;
1185
+ mixpanel?: {
1186
+ projectToken: string;
1187
+ } | undefined;
1188
+ pirsch?: {
1189
+ id: string;
1190
+ } | undefined;
1191
+ posthog?: {
1192
+ apiKey: string;
1193
+ apiHost?: string | undefined;
1194
+ sessionRecording?: boolean | undefined;
1195
+ } | undefined;
1196
+ plausible?: {
1197
+ domain: string;
1198
+ server?: string | undefined;
1199
+ } | undefined;
1200
+ segment?: {
1201
+ key: string;
1202
+ } | undefined;
1203
+ intercom?: {
1204
+ appId: string;
1205
+ } | undefined;
1206
+ frontchat?: {
1207
+ snippetId: string;
1208
+ } | undefined;
1209
+ telemetry?: {
1210
+ enabled?: boolean | undefined;
1211
+ } | undefined;
1212
+ cookies?: {
1213
+ value?: string | undefined;
1214
+ key?: string | undefined;
1215
+ } | undefined;
1216
+ }, {
1217
+ amplitude?: {
1218
+ apiKey: string;
1219
+ } | undefined;
1220
+ clarity?: {
1221
+ projectId: string;
1222
+ } | undefined;
1223
+ clearbit?: {
1224
+ publicApiKey: string;
1225
+ } | undefined;
1226
+ fathom?: {
1227
+ siteId: string;
1228
+ } | undefined;
1229
+ ga4?: {
1230
+ measurementId: string;
1231
+ } | undefined;
1232
+ gtm?: {
1233
+ tagId: string;
1234
+ } | undefined;
1235
+ heap?: {
1236
+ appId: string;
1237
+ } | undefined;
1238
+ hightouch?: {
1239
+ writeKey: string;
1240
+ apiHost?: string | undefined;
1241
+ } | undefined;
1242
+ hotjar?: {
1243
+ hjid: string;
1244
+ hjsv: string;
1245
+ } | undefined;
1246
+ koala?: {
1247
+ publicApiKey: string;
1248
+ } | undefined;
1249
+ logrocket?: {
1250
+ appId: string;
1251
+ } | undefined;
1252
+ mixpanel?: {
1253
+ projectToken: string;
1254
+ } | undefined;
1255
+ pirsch?: {
1256
+ id: string;
1257
+ } | undefined;
1258
+ posthog?: {
1259
+ apiKey: string;
1260
+ apiHost?: string | undefined;
1261
+ sessionRecording?: boolean | undefined;
1262
+ } | undefined;
1263
+ plausible?: {
1264
+ domain: string;
1265
+ server?: string | undefined;
1266
+ } | undefined;
1267
+ segment?: {
1268
+ key: string;
1269
+ } | undefined;
1270
+ intercom?: {
1271
+ appId: string;
1272
+ } | undefined;
1273
+ frontchat?: {
1274
+ snippetId: string;
1275
+ } | undefined;
1276
+ telemetry?: {
1277
+ enabled?: boolean | undefined;
1278
+ } | undefined;
1279
+ cookies?: {
1280
+ value?: string | undefined;
1281
+ key?: string | undefined;
1282
+ } | undefined;
1283
+ }>>;
1284
+ banner: z.ZodOptional<z.ZodObject<{
1285
+ content: z.ZodString;
1286
+ dismissible: z.ZodOptional<z.ZodBoolean>;
1287
+ }, "strip", z.ZodTypeAny, {
1288
+ content: string;
1289
+ dismissible?: boolean | undefined;
1290
+ }, {
1291
+ content: string;
1292
+ dismissible?: boolean | undefined;
1293
+ }>>;
1294
+ errors: z.ZodOptional<z.ZodObject<{
1295
+ '404': z.ZodObject<{
1296
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1297
+ title: z.ZodOptional<z.ZodString>;
1298
+ description: z.ZodOptional<z.ZodString>;
1299
+ }, "strip", z.ZodTypeAny, {
1300
+ redirect: boolean;
1301
+ title?: string | undefined;
1302
+ description?: string | undefined;
1303
+ }, {
1304
+ title?: string | undefined;
1305
+ description?: string | undefined;
1306
+ redirect?: boolean | undefined;
1307
+ }>;
1308
+ }, "strip", z.ZodTypeAny, {
1309
+ '404': {
1310
+ redirect: boolean;
1311
+ title?: string | undefined;
1312
+ description?: string | undefined;
1313
+ };
1314
+ }, {
1315
+ '404': {
1316
+ title?: string | undefined;
1317
+ description?: string | undefined;
1318
+ redirect?: boolean | undefined;
1319
+ };
1320
+ }>>;
1321
+ contextual: z.ZodOptional<z.ZodObject<{
1322
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
1323
+ title: z.ZodString;
1324
+ description: z.ZodString;
1325
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1326
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1327
+ name: z.ZodEffects<z.ZodString, string, string>;
1328
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
1329
+ }, "strip", z.ZodTypeAny, {
1330
+ name: string;
1331
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1332
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1333
+ }, {
1334
+ name: string;
1335
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1336
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1337
+ }>]>>;
1338
+ href: z.ZodUnion<[z.ZodString, z.ZodObject<{
1339
+ base: z.ZodString;
1340
+ query: z.ZodOptional<z.ZodArray<z.ZodObject<{
1341
+ key: z.ZodString;
1342
+ value: z.ZodString;
1343
+ }, "strip", z.ZodTypeAny, {
1344
+ value: string;
1345
+ key: string;
1346
+ }, {
1347
+ value: string;
1348
+ key: string;
1349
+ }>, "many">>;
1350
+ }, "strip", z.ZodTypeAny, {
1351
+ base: string;
1352
+ query?: {
1353
+ value: string;
1354
+ key: string;
1355
+ }[] | undefined;
1356
+ }, {
1357
+ base: string;
1358
+ query?: {
1359
+ value: string;
1360
+ key: string;
1361
+ }[] | undefined;
1362
+ }>]>;
1363
+ }, "strip", z.ZodTypeAny, {
1364
+ href: string | {
1365
+ base: string;
1366
+ query?: {
1367
+ value: string;
1368
+ key: string;
1369
+ }[] | undefined;
1370
+ };
1371
+ title: string;
1372
+ description: string;
1373
+ icon?: string | {
1374
+ name: string;
1375
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1376
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1377
+ } | undefined;
1378
+ }, {
1379
+ href: string | {
1380
+ base: string;
1381
+ query?: {
1382
+ value: string;
1383
+ key: string;
1384
+ }[] | undefined;
1385
+ };
1386
+ title: string;
1387
+ description: string;
1388
+ icon?: string | {
1389
+ name: string;
1390
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1391
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1392
+ } | undefined;
1393
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1394
+ href: string | {
1395
+ base: string;
1396
+ query?: {
1397
+ value: string;
1398
+ key: string;
1399
+ }[] | undefined;
1400
+ };
1401
+ title: string;
1402
+ description: string;
1403
+ icon?: string | {
1404
+ name: string;
1405
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1406
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1407
+ } | undefined;
1408
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1409
+ href: string | {
1410
+ base: string;
1411
+ query?: {
1412
+ value: string;
1413
+ key: string;
1414
+ }[] | undefined;
1415
+ };
1416
+ title: string;
1417
+ description: string;
1418
+ icon?: string | {
1419
+ name: string;
1420
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1421
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1422
+ } | undefined;
1423
+ })[]>;
1424
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1425
+ }, "strip", z.ZodTypeAny, {
1426
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1427
+ href: string | {
1428
+ base: string;
1429
+ query?: {
1430
+ value: string;
1431
+ key: string;
1432
+ }[] | undefined;
1433
+ };
1434
+ title: string;
1435
+ description: string;
1436
+ icon?: string | {
1437
+ name: string;
1438
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1439
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1440
+ } | undefined;
1441
+ })[];
1442
+ display: "header" | "toc";
1443
+ }, {
1444
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1445
+ href: string | {
1446
+ base: string;
1447
+ query?: {
1448
+ value: string;
1449
+ key: string;
1450
+ }[] | undefined;
1451
+ };
1452
+ title: string;
1453
+ description: string;
1454
+ icon?: string | {
1455
+ name: string;
1456
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1457
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1458
+ } | undefined;
1459
+ })[];
1460
+ display?: "header" | "toc" | undefined;
1461
+ }>>;
1462
+ thumbnails: z.ZodOptional<z.ZodObject<{
1463
+ appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
1464
+ background: z.ZodOptional<z.ZodString>;
1465
+ fonts: z.ZodOptional<z.ZodObject<{
1466
+ family: z.ZodString;
1467
+ }, "strip", z.ZodTypeAny, {
1468
+ family: string;
1469
+ }, {
1470
+ family: string;
1471
+ }>>;
1472
+ }, "strip", z.ZodTypeAny, {
1473
+ background?: string | undefined;
1474
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1475
+ fonts?: {
1476
+ family: string;
1477
+ } | undefined;
1478
+ }, {
1479
+ background?: string | undefined;
1480
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1481
+ fonts?: {
1482
+ family: string;
1483
+ } | undefined;
1484
+ }>>;
1485
+ interaction: z.ZodOptional<z.ZodObject<{
1486
+ drilldown: z.ZodOptional<z.ZodBoolean>;
1487
+ }, "strip", z.ZodTypeAny, {
1488
+ drilldown?: boolean | undefined;
1489
+ }, {
1490
+ drilldown?: boolean | undefined;
1491
+ }>>;
1492
+ metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
1493
+ timestamp: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1494
+ }, "strip", z.ZodTypeAny, {
1495
+ timestamp: boolean;
1496
+ }, {
1497
+ timestamp?: boolean | undefined;
1498
+ }>>>;
1499
+ variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1500
+ theme: z.ZodLiteral<"luma">;
1501
+ }, "strip", z.ZodTypeAny, {
1502
+ name: string;
1503
+ $schema: string;
1504
+ theme: "luma";
1505
+ colors: {
1506
+ primary: string;
1507
+ light?: string | undefined;
1508
+ dark?: string | undefined;
1509
+ };
1510
+ navigation: {
1511
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
1512
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1513
+ } | {
1514
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1515
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1516
+ } | {
1517
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1518
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1519
+ } | {
1520
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1521
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1522
+ } | {
1523
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1524
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1525
+ } | {
1526
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1527
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1528
+ } | {
1529
+ groups: ({
1530
+ group: string;
1531
+ icon?: string | {
1532
+ name: string;
1533
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1534
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1535
+ } | undefined;
1536
+ expanded?: boolean | undefined;
1537
+ public?: boolean | undefined;
1538
+ tag?: string | undefined;
1539
+ hidden?: boolean | undefined;
1540
+ root?: string | undefined;
1541
+ } & {
1542
+ openapi?: string | string[] | {
1543
+ source: string;
1544
+ directory?: string | undefined;
1545
+ } | undefined;
1546
+ asyncapi?: string | string[] | {
1547
+ source: string;
1548
+ directory?: string | undefined;
1549
+ } | undefined;
1550
+ } & {
1551
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1552
+ })[];
1553
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1554
+ } | {
1555
+ pages: (string | ({
1556
+ group: string;
1557
+ icon?: string | {
1558
+ name: string;
1559
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1560
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1561
+ } | undefined;
1562
+ expanded?: boolean | undefined;
1563
+ public?: boolean | undefined;
1564
+ tag?: string | undefined;
1565
+ hidden?: boolean | undefined;
1566
+ root?: string | undefined;
1567
+ } & {
1568
+ openapi?: string | string[] | {
1569
+ source: string;
1570
+ directory?: string | undefined;
1571
+ } | undefined;
1572
+ asyncapi?: string | string[] | {
1573
+ source: string;
1574
+ directory?: string | undefined;
1575
+ } | undefined;
1576
+ } & {
1577
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1578
+ }))[];
1579
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1580
+ };
1581
+ background?: {
1582
+ color?: {
1583
+ light?: string | undefined;
1584
+ dark?: string | undefined;
1585
+ } | undefined;
1586
+ image?: string | {
1587
+ light: string;
1588
+ dark: string;
1589
+ } | undefined;
1590
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1591
+ } | undefined;
1592
+ public?: boolean | undefined;
1593
+ logo?: string | {
1594
+ light: string;
1595
+ dark: string;
1596
+ href?: string | undefined;
1597
+ } | undefined;
1598
+ favicon?: string | {
1599
+ light: string;
1600
+ dark: string;
1601
+ } | undefined;
1602
+ api?: {
1603
+ params?: {
1604
+ expanded?: "all" | "closed" | undefined;
1605
+ } | undefined;
1606
+ openapi?: string | string[] | {
1607
+ source: string;
1608
+ directory?: string | undefined;
1609
+ } | undefined;
1610
+ playground?: {
1611
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1612
+ proxy?: boolean | undefined;
1613
+ } | undefined;
1614
+ asyncapi?: string | string[] | {
1615
+ source: string;
1616
+ directory?: string | undefined;
1617
+ } | undefined;
1618
+ examples?: {
1619
+ languages?: string[] | undefined;
1620
+ defaults?: "all" | "required" | undefined;
1621
+ prefill?: boolean | undefined;
1622
+ autogenerate?: boolean | undefined;
1623
+ } | undefined;
1624
+ mdx?: {
1625
+ server?: string | string[] | undefined;
1626
+ auth?: {
1627
+ name?: string | undefined;
1628
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1629
+ } | undefined;
1630
+ } | undefined;
1631
+ } | undefined;
1632
+ metadata?: {
1633
+ timestamp: boolean;
1634
+ } | undefined;
1635
+ footer?: {
1636
+ links?: {
1637
+ items: {
1638
+ href: string;
1639
+ label: string;
1640
+ }[];
1641
+ header?: string | undefined;
1642
+ }[] | undefined;
1643
+ 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;
1644
+ } | undefined;
1645
+ integrations?: {
1646
+ amplitude?: {
1647
+ apiKey: string;
1648
+ } | undefined;
1649
+ clarity?: {
1650
+ projectId: string;
1651
+ } | undefined;
1652
+ clearbit?: {
1653
+ publicApiKey: string;
1654
+ } | undefined;
1655
+ fathom?: {
1656
+ siteId: string;
1657
+ } | undefined;
1658
+ ga4?: {
1659
+ measurementId: string;
1660
+ } | undefined;
1661
+ gtm?: {
1662
+ tagId: string;
1663
+ } | undefined;
1664
+ heap?: {
1665
+ appId: string;
1666
+ } | undefined;
1667
+ hightouch?: {
1668
+ writeKey: string;
1669
+ apiHost?: string | undefined;
1670
+ } | undefined;
1671
+ hotjar?: {
1672
+ hjid: string;
1673
+ hjsv: string;
1674
+ } | undefined;
1675
+ koala?: {
1676
+ publicApiKey: string;
1677
+ } | undefined;
1678
+ logrocket?: {
1679
+ appId: string;
1680
+ } | undefined;
1681
+ mixpanel?: {
1682
+ projectToken: string;
1683
+ } | undefined;
1684
+ pirsch?: {
1685
+ id: string;
1686
+ } | undefined;
1687
+ posthog?: {
1688
+ apiKey: string;
1689
+ apiHost?: string | undefined;
1690
+ sessionRecording?: boolean | undefined;
1691
+ } | undefined;
1692
+ plausible?: {
1693
+ domain: string;
1694
+ server?: string | undefined;
1695
+ } | undefined;
1696
+ segment?: {
1697
+ key: string;
1698
+ } | undefined;
1699
+ intercom?: {
1700
+ appId: string;
1701
+ } | undefined;
1702
+ frontchat?: {
1703
+ snippetId: string;
1704
+ } | undefined;
1705
+ telemetry?: {
1706
+ enabled?: boolean | undefined;
1707
+ } | undefined;
1708
+ cookies?: {
1709
+ value?: string | undefined;
1710
+ key?: string | undefined;
1711
+ } | undefined;
1712
+ } | undefined;
1713
+ search?: {
1714
+ prompt?: string | undefined;
1715
+ } | undefined;
1716
+ redirects?: {
1717
+ source: string;
1718
+ destination: string;
1719
+ permanent?: boolean | undefined;
1720
+ }[] | undefined;
1721
+ seo?: {
1722
+ metatags?: Record<string, string> | undefined;
1723
+ indexing?: "all" | "navigable" | undefined;
1724
+ } | undefined;
1725
+ description?: string | undefined;
1726
+ banner?: {
1727
+ content: string;
1728
+ dismissible?: boolean | undefined;
1729
+ } | undefined;
1730
+ appearance?: {
1731
+ strict?: boolean | undefined;
1732
+ default?: "light" | "dark" | "system" | undefined;
1733
+ } | undefined;
1734
+ fonts?: {
1735
+ family: string;
1736
+ source?: string | undefined;
1737
+ weight?: number | undefined;
1738
+ format?: "woff" | "woff2" | undefined;
1739
+ } | {
1740
+ body?: {
1741
+ family: string;
1742
+ source?: string | undefined;
1743
+ weight?: number | undefined;
1744
+ format?: "woff" | "woff2" | undefined;
1745
+ } | undefined;
1746
+ heading?: {
1747
+ family: string;
1748
+ source?: string | undefined;
1749
+ weight?: number | undefined;
1750
+ format?: "woff" | "woff2" | undefined;
1751
+ } | undefined;
1752
+ } | undefined;
1753
+ navbar?: {
1754
+ primary?: {
1755
+ type: "button";
1756
+ href: string;
1757
+ label: string;
1758
+ } | {
1759
+ type: "github";
1760
+ href: string;
1761
+ label?: string | undefined;
1762
+ } | {
1763
+ type: "discord";
1764
+ href: string;
1765
+ label?: string | undefined;
1766
+ } | undefined;
1767
+ links?: ({
1768
+ href: string;
1769
+ label: string;
1770
+ type?: string | undefined;
1771
+ icon?: string | {
1772
+ name: string;
1773
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1774
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1775
+ } | undefined;
1776
+ } | {
1777
+ type: "github";
1778
+ href: string;
1779
+ icon?: string | {
1780
+ name: string;
1781
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1782
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1783
+ } | undefined;
1784
+ label?: string | undefined;
1785
+ } | {
1786
+ type: "discord";
1787
+ href: string;
1788
+ icon?: string | {
1789
+ name: string;
1790
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1791
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1792
+ } | undefined;
1793
+ label?: string | undefined;
1794
+ })[] | undefined;
1795
+ } | undefined;
1796
+ icons?: {
1797
+ library: "fontawesome" | "lucide" | "tabler";
1798
+ } | undefined;
1799
+ styling?: {
1800
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1801
+ codeblocks?: "dark" | "system" | {
1802
+ languages?: {
1803
+ custom?: string[] | undefined;
1804
+ } | undefined;
1805
+ 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" | {
1806
+ 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";
1807
+ 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";
1808
+ } | undefined;
1809
+ } | undefined;
1810
+ latex?: boolean | undefined;
1811
+ } | undefined;
1812
+ errors?: {
1813
+ '404': {
1814
+ redirect: boolean;
1815
+ title?: string | undefined;
1816
+ description?: string | undefined;
1817
+ };
1818
+ } | undefined;
1819
+ contextual?: {
1820
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1821
+ href: string | {
1822
+ base: string;
1823
+ query?: {
1824
+ value: string;
1825
+ key: string;
1826
+ }[] | undefined;
1827
+ };
1828
+ title: string;
1829
+ description: string;
1830
+ icon?: string | {
1831
+ name: string;
1832
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1833
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1834
+ } | undefined;
1835
+ })[];
1836
+ display: "header" | "toc";
1837
+ } | undefined;
1838
+ thumbnails?: {
1839
+ background?: string | undefined;
1840
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
1841
+ fonts?: {
1842
+ family: string;
1843
+ } | undefined;
1844
+ } | undefined;
1845
+ interaction?: {
1846
+ drilldown?: boolean | undefined;
1847
+ } | undefined;
1848
+ variables?: Record<string, string> | undefined;
1849
+ }, {
1850
+ name: string;
1851
+ theme: "luma";
1852
+ colors: {
1853
+ primary: string;
1854
+ light?: string | undefined;
1855
+ dark?: string | undefined;
1856
+ };
1857
+ navigation: {
1858
+ products: import("../properties/navigation/divisionNav.js").ProductNavigation<"default">[];
1859
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1860
+ } | {
1861
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1862
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1863
+ } | {
1864
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1865
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1866
+ } | {
1867
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1868
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1869
+ } | {
1870
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1871
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1872
+ } | {
1873
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1874
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1875
+ } | {
1876
+ groups: ({
1877
+ group: string;
1878
+ icon?: string | {
1879
+ name: string;
1880
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1881
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1882
+ } | undefined;
1883
+ expanded?: boolean | undefined;
1884
+ public?: boolean | undefined;
1885
+ tag?: string | undefined;
1886
+ hidden?: boolean | undefined;
1887
+ root?: string | undefined;
1888
+ } & {
1889
+ openapi?: string | string[] | {
1890
+ source: string;
1891
+ directory?: string | undefined;
1892
+ } | undefined;
1893
+ asyncapi?: string | string[] | {
1894
+ source: string;
1895
+ directory?: string | undefined;
1896
+ } | undefined;
1897
+ } & {
1898
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1899
+ })[];
1900
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1901
+ } | {
1902
+ pages: (string | ({
1903
+ group: string;
1904
+ icon?: string | {
1905
+ name: string;
1906
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1907
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1908
+ } | undefined;
1909
+ expanded?: boolean | undefined;
1910
+ public?: boolean | undefined;
1911
+ tag?: string | undefined;
1912
+ hidden?: boolean | undefined;
1913
+ root?: string | undefined;
1914
+ } & {
1915
+ openapi?: string | string[] | {
1916
+ source: string;
1917
+ directory?: string | undefined;
1918
+ } | undefined;
1919
+ asyncapi?: string | string[] | {
1920
+ source: string;
1921
+ directory?: string | undefined;
1922
+ } | undefined;
1923
+ } & {
1924
+ pages?: import("../properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
1925
+ }))[];
1926
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1927
+ };
1928
+ background?: {
1929
+ color?: {
1930
+ light?: string | undefined;
1931
+ dark?: string | undefined;
1932
+ } | undefined;
1933
+ image?: string | {
1934
+ light: string;
1935
+ dark: string;
1936
+ } | undefined;
1937
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1938
+ } | undefined;
1939
+ public?: boolean | undefined;
1940
+ $schema?: string | undefined;
1941
+ logo?: string | {
1942
+ light: string;
1943
+ dark: string;
1944
+ href?: string | undefined;
1945
+ } | undefined;
1946
+ favicon?: string | {
1947
+ light: string;
1948
+ dark: string;
1949
+ } | undefined;
1950
+ api?: {
1951
+ params?: {
1952
+ expanded?: "all" | "closed" | undefined;
1953
+ } | undefined;
1954
+ openapi?: string | string[] | {
1955
+ source: string;
1956
+ directory?: string | undefined;
1957
+ } | undefined;
1958
+ playground?: {
1959
+ display?: "auth" | "simple" | "none" | "interactive" | undefined;
1960
+ proxy?: boolean | undefined;
1961
+ } | undefined;
1962
+ asyncapi?: string | string[] | {
1963
+ source: string;
1964
+ directory?: string | undefined;
1965
+ } | undefined;
1966
+ examples?: {
1967
+ languages?: string[] | undefined;
1968
+ defaults?: "all" | "required" | undefined;
1969
+ prefill?: boolean | undefined;
1970
+ autogenerate?: boolean | undefined;
1971
+ } | undefined;
1972
+ mdx?: {
1973
+ server?: string | string[] | undefined;
1974
+ auth?: {
1975
+ name?: string | undefined;
1976
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1977
+ } | undefined;
1978
+ } | undefined;
1979
+ } | undefined;
1980
+ metadata?: {
1981
+ timestamp?: boolean | undefined;
1982
+ } | undefined;
1983
+ footer?: {
1984
+ links?: {
1985
+ items: {
1986
+ href: string;
1987
+ label: string;
1988
+ }[];
1989
+ header?: string | undefined;
1990
+ }[] | undefined;
1991
+ 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;
1992
+ } | undefined;
1993
+ integrations?: {
1994
+ amplitude?: {
1995
+ apiKey: string;
1996
+ } | undefined;
1997
+ clarity?: {
1998
+ projectId: string;
1999
+ } | undefined;
2000
+ clearbit?: {
2001
+ publicApiKey: string;
2002
+ } | undefined;
2003
+ fathom?: {
2004
+ siteId: string;
2005
+ } | undefined;
2006
+ ga4?: {
2007
+ measurementId: string;
2008
+ } | undefined;
2009
+ gtm?: {
2010
+ tagId: string;
2011
+ } | undefined;
2012
+ heap?: {
2013
+ appId: string;
2014
+ } | undefined;
2015
+ hightouch?: {
2016
+ writeKey: string;
2017
+ apiHost?: string | undefined;
2018
+ } | undefined;
2019
+ hotjar?: {
2020
+ hjid: string;
2021
+ hjsv: string;
2022
+ } | undefined;
2023
+ koala?: {
2024
+ publicApiKey: string;
2025
+ } | undefined;
2026
+ logrocket?: {
2027
+ appId: string;
2028
+ } | undefined;
2029
+ mixpanel?: {
2030
+ projectToken: string;
2031
+ } | undefined;
2032
+ pirsch?: {
2033
+ id: string;
2034
+ } | undefined;
2035
+ posthog?: {
2036
+ apiKey: string;
2037
+ apiHost?: string | undefined;
2038
+ sessionRecording?: boolean | undefined;
2039
+ } | undefined;
2040
+ plausible?: {
2041
+ domain: string;
2042
+ server?: string | undefined;
2043
+ } | undefined;
2044
+ segment?: {
2045
+ key: string;
2046
+ } | undefined;
2047
+ intercom?: {
2048
+ appId: string;
2049
+ } | undefined;
2050
+ frontchat?: {
2051
+ snippetId: string;
2052
+ } | undefined;
2053
+ telemetry?: {
2054
+ enabled?: boolean | undefined;
2055
+ } | undefined;
2056
+ cookies?: {
2057
+ value?: string | undefined;
2058
+ key?: string | undefined;
2059
+ } | undefined;
2060
+ } | undefined;
2061
+ search?: {
2062
+ prompt?: string | undefined;
2063
+ } | undefined;
2064
+ redirects?: {
2065
+ source: string;
2066
+ destination: string;
2067
+ permanent?: boolean | undefined;
2068
+ }[] | undefined;
2069
+ seo?: {
2070
+ metatags?: Record<string, string> | undefined;
2071
+ indexing?: "all" | "navigable" | undefined;
2072
+ } | undefined;
2073
+ description?: string | undefined;
2074
+ banner?: {
2075
+ content: string;
2076
+ dismissible?: boolean | undefined;
2077
+ } | undefined;
2078
+ appearance?: {
2079
+ strict?: boolean | undefined;
2080
+ default?: "light" | "dark" | "system" | undefined;
2081
+ } | undefined;
2082
+ fonts?: {
2083
+ family: string;
2084
+ source?: string | undefined;
2085
+ weight?: number | undefined;
2086
+ format?: "woff" | "woff2" | undefined;
2087
+ } | {
2088
+ body?: {
2089
+ family: string;
2090
+ source?: string | undefined;
2091
+ weight?: number | undefined;
2092
+ format?: "woff" | "woff2" | undefined;
2093
+ } | undefined;
2094
+ heading?: {
2095
+ family: string;
2096
+ source?: string | undefined;
2097
+ weight?: number | undefined;
2098
+ format?: "woff" | "woff2" | undefined;
2099
+ } | undefined;
2100
+ } | undefined;
2101
+ navbar?: {
2102
+ primary?: {
2103
+ type: "button";
2104
+ href: string;
2105
+ label: string;
2106
+ } | {
2107
+ type: "github";
2108
+ href: string;
2109
+ label?: string | undefined;
2110
+ } | {
2111
+ type: "discord";
2112
+ href: string;
2113
+ label?: string | undefined;
2114
+ } | undefined;
2115
+ links?: ({
2116
+ href: string;
2117
+ label: string;
2118
+ type?: string | undefined;
2119
+ icon?: string | {
2120
+ name: string;
2121
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2122
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2123
+ } | undefined;
2124
+ } | {
2125
+ type: "github";
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" | "tabler" | undefined;
2131
+ } | undefined;
2132
+ label?: string | undefined;
2133
+ } | {
2134
+ type: "discord";
2135
+ href: string;
2136
+ icon?: string | {
2137
+ name: string;
2138
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2139
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2140
+ } | undefined;
2141
+ label?: string | undefined;
2142
+ })[] | undefined;
2143
+ } | undefined;
2144
+ icons?: {
2145
+ library: "fontawesome" | "lucide" | "tabler";
2146
+ } | undefined;
2147
+ styling?: {
2148
+ eyebrows?: "section" | "breadcrumbs" | undefined;
2149
+ codeblocks?: "dark" | "system" | {
2150
+ languages?: {
2151
+ custom?: string[] | undefined;
2152
+ } | undefined;
2153
+ 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" | {
2154
+ 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";
2155
+ 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";
2156
+ } | undefined;
2157
+ } | undefined;
2158
+ latex?: boolean | undefined;
2159
+ } | undefined;
2160
+ errors?: {
2161
+ '404': {
2162
+ title?: string | undefined;
2163
+ description?: string | undefined;
2164
+ redirect?: boolean | undefined;
2165
+ };
2166
+ } | undefined;
2167
+ contextual?: {
2168
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
2169
+ href: string | {
2170
+ base: string;
2171
+ query?: {
2172
+ value: string;
2173
+ key: string;
2174
+ }[] | undefined;
2175
+ };
2176
+ title: string;
2177
+ description: string;
2178
+ icon?: string | {
2179
+ name: string;
2180
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2181
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2182
+ } | undefined;
2183
+ })[];
2184
+ display?: "header" | "toc" | undefined;
2185
+ } | undefined;
2186
+ thumbnails?: {
2187
+ background?: string | undefined;
2188
+ appearance?: import("../properties/thumbnails.js").ThumbnailAppearance | undefined;
2189
+ fonts?: {
2190
+ family: string;
2191
+ } | undefined;
2192
+ } | undefined;
2193
+ interaction?: {
2194
+ drilldown?: boolean | undefined;
2195
+ } | undefined;
2196
+ variables?: Record<string, string> | undefined;
2197
+ }>;