@mintlify/validation 0.1.352 → 0.1.353

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,1732 @@
1
+ import { z } from 'zod';
2
+ export declare const almondConfigSchema: z.ZodObject<{
3
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4
+ name: z.ZodString;
5
+ description: z.ZodOptional<z.ZodString>;
6
+ colors: z.ZodObject<{
7
+ primary: z.ZodString;
8
+ light: z.ZodOptional<z.ZodString>;
9
+ dark: z.ZodOptional<z.ZodString>;
10
+ }, "strict", z.ZodTypeAny, {
11
+ primary: string;
12
+ light?: string | undefined;
13
+ dark?: string | undefined;
14
+ }, {
15
+ primary: string;
16
+ light?: string | undefined;
17
+ dark?: string | undefined;
18
+ }>;
19
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
20
+ light: z.ZodString;
21
+ dark: z.ZodString;
22
+ href: z.ZodOptional<z.ZodString>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ light: string;
25
+ dark: string;
26
+ href?: string | undefined;
27
+ }, {
28
+ light: string;
29
+ dark: string;
30
+ href?: string | undefined;
31
+ }>]>>;
32
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
33
+ light: z.ZodString;
34
+ dark: z.ZodString;
35
+ }, "strip", z.ZodTypeAny, {
36
+ light: string;
37
+ dark: string;
38
+ }, {
39
+ light: string;
40
+ dark: string;
41
+ }>]>>;
42
+ api: z.ZodOptional<z.ZodObject<{
43
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
44
+ source: z.ZodEffects<z.ZodString, string, string>;
45
+ directory: z.ZodOptional<z.ZodString>;
46
+ }, "strict", z.ZodTypeAny, {
47
+ source: string;
48
+ directory?: string | undefined;
49
+ }, {
50
+ source: string;
51
+ directory?: string | undefined;
52
+ }>]>>;
53
+ asyncapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
54
+ source: z.ZodEffects<z.ZodString, string, string>;
55
+ directory: z.ZodOptional<z.ZodString>;
56
+ }, "strict", z.ZodTypeAny, {
57
+ source: string;
58
+ directory?: string | undefined;
59
+ }, {
60
+ source: string;
61
+ directory?: string | undefined;
62
+ }>]>>;
63
+ playground: z.ZodOptional<z.ZodObject<{
64
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
65
+ proxy: z.ZodOptional<z.ZodBoolean>;
66
+ }, "strip", z.ZodTypeAny, {
67
+ display?: "simple" | "none" | "interactive" | undefined;
68
+ proxy?: boolean | undefined;
69
+ }, {
70
+ display?: "simple" | "none" | "interactive" | undefined;
71
+ proxy?: boolean | undefined;
72
+ }>>;
73
+ examples: z.ZodOptional<z.ZodObject<{
74
+ defaults: z.ZodOptional<z.ZodEnum<["required", "all"]>>;
75
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ defaults?: "all" | "required" | undefined;
78
+ languages?: string[] | undefined;
79
+ }, {
80
+ defaults?: "all" | "required" | undefined;
81
+ languages?: string[] | undefined;
82
+ }>>;
83
+ mdx: z.ZodOptional<z.ZodObject<{
84
+ auth: z.ZodOptional<z.ZodObject<{
85
+ method: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
86
+ name: z.ZodOptional<z.ZodString>;
87
+ }, "strip", z.ZodTypeAny, {
88
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
89
+ name?: string | undefined;
90
+ }, {
91
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
92
+ name?: string | undefined;
93
+ }>>;
94
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
95
+ }, "strip", z.ZodTypeAny, {
96
+ auth?: {
97
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
98
+ name?: string | undefined;
99
+ } | undefined;
100
+ server?: string | string[] | undefined;
101
+ }, {
102
+ auth?: {
103
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
104
+ name?: string | undefined;
105
+ } | undefined;
106
+ server?: string | string[] | undefined;
107
+ }>>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ openapi?: string | string[] | {
110
+ source: string;
111
+ directory?: string | undefined;
112
+ } | undefined;
113
+ asyncapi?: string | string[] | {
114
+ source: string;
115
+ directory?: string | undefined;
116
+ } | undefined;
117
+ playground?: {
118
+ display?: "simple" | "none" | "interactive" | undefined;
119
+ proxy?: boolean | undefined;
120
+ } | undefined;
121
+ examples?: {
122
+ defaults?: "all" | "required" | undefined;
123
+ languages?: string[] | undefined;
124
+ } | undefined;
125
+ mdx?: {
126
+ auth?: {
127
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
128
+ name?: string | undefined;
129
+ } | undefined;
130
+ server?: string | string[] | undefined;
131
+ } | undefined;
132
+ }, {
133
+ openapi?: string | string[] | {
134
+ source: string;
135
+ directory?: string | undefined;
136
+ } | undefined;
137
+ asyncapi?: string | string[] | {
138
+ source: string;
139
+ directory?: string | undefined;
140
+ } | undefined;
141
+ playground?: {
142
+ display?: "simple" | "none" | "interactive" | undefined;
143
+ proxy?: boolean | undefined;
144
+ } | undefined;
145
+ examples?: {
146
+ defaults?: "all" | "required" | undefined;
147
+ languages?: string[] | undefined;
148
+ } | undefined;
149
+ mdx?: {
150
+ auth?: {
151
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
152
+ name?: string | undefined;
153
+ } | undefined;
154
+ server?: string | string[] | undefined;
155
+ } | undefined;
156
+ }>>;
157
+ appearance: z.ZodOptional<z.ZodObject<{
158
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
159
+ strict: z.ZodOptional<z.ZodBoolean>;
160
+ }, "strip", z.ZodTypeAny, {
161
+ default?: "light" | "dark" | "system" | undefined;
162
+ strict?: boolean | undefined;
163
+ }, {
164
+ default?: "light" | "dark" | "system" | undefined;
165
+ strict?: boolean | undefined;
166
+ }>>;
167
+ background: z.ZodOptional<z.ZodObject<{
168
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
169
+ light: z.ZodString;
170
+ dark: z.ZodString;
171
+ }, "strip", z.ZodTypeAny, {
172
+ light: string;
173
+ dark: string;
174
+ }, {
175
+ light: string;
176
+ dark: string;
177
+ }>]>>;
178
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
179
+ color: z.ZodOptional<z.ZodObject<{
180
+ light: z.ZodOptional<z.ZodString>;
181
+ dark: z.ZodOptional<z.ZodString>;
182
+ }, "strict", z.ZodTypeAny, {
183
+ light?: string | undefined;
184
+ dark?: string | undefined;
185
+ }, {
186
+ light?: string | undefined;
187
+ dark?: string | undefined;
188
+ }>>;
189
+ }, "strip", z.ZodTypeAny, {
190
+ image?: string | {
191
+ light: string;
192
+ dark: string;
193
+ } | undefined;
194
+ decoration?: "gradient" | "grid" | "windows" | undefined;
195
+ color?: {
196
+ light?: string | undefined;
197
+ dark?: string | undefined;
198
+ } | undefined;
199
+ }, {
200
+ image?: string | {
201
+ light: string;
202
+ dark: string;
203
+ } | undefined;
204
+ decoration?: "gradient" | "grid" | "windows" | undefined;
205
+ color?: {
206
+ light?: string | undefined;
207
+ dark?: string | undefined;
208
+ } | undefined;
209
+ }>>;
210
+ navbar: z.ZodOptional<z.ZodObject<{
211
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
212
+ label: z.ZodString;
213
+ href: z.ZodString;
214
+ }, "strip", z.ZodTypeAny, {
215
+ href: string;
216
+ label: string;
217
+ }, {
218
+ href: string;
219
+ label: string;
220
+ }>, "many">>;
221
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
222
+ type: z.ZodLiteral<"button">;
223
+ label: z.ZodString;
224
+ href: z.ZodString;
225
+ }, "strip", z.ZodTypeAny, {
226
+ type: "button";
227
+ href: string;
228
+ label: string;
229
+ }, {
230
+ type: "button";
231
+ href: string;
232
+ label: string;
233
+ }>, z.ZodObject<{
234
+ type: z.ZodLiteral<"github">;
235
+ href: z.ZodString;
236
+ }, "strip", z.ZodTypeAny, {
237
+ type: "github";
238
+ href: string;
239
+ }, {
240
+ type: "github";
241
+ href: string;
242
+ }>]>>;
243
+ }, "strip", z.ZodTypeAny, {
244
+ links?: {
245
+ href: string;
246
+ label: string;
247
+ }[] | undefined;
248
+ primary?: {
249
+ type: "button";
250
+ href: string;
251
+ label: string;
252
+ } | {
253
+ type: "github";
254
+ href: string;
255
+ } | undefined;
256
+ }, {
257
+ links?: {
258
+ href: string;
259
+ label: string;
260
+ }[] | undefined;
261
+ primary?: {
262
+ type: "button";
263
+ href: string;
264
+ label: string;
265
+ } | {
266
+ type: "github";
267
+ href: string;
268
+ } | undefined;
269
+ }>>;
270
+ navigation: z.ZodUnion<[z.ZodObject<{
271
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
272
+ languages: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">>, "many">;
273
+ }, "strip", z.ZodTypeAny, {
274
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
275
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
276
+ }, {
277
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
278
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
279
+ }>, z.ZodObject<{
280
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
281
+ versions: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").VersionNavigation<"default">>, "many">;
282
+ }, "strip", z.ZodTypeAny, {
283
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
284
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
285
+ }, {
286
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
287
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
288
+ }>, z.ZodObject<{
289
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
290
+ tabs: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").TabNavigation<"default">>, "many">;
291
+ }, "strip", z.ZodTypeAny, {
292
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
293
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
294
+ }, {
295
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
296
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
297
+ }>, z.ZodObject<{
298
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
299
+ dropdowns: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">>, "many">;
300
+ }, "strip", z.ZodTypeAny, {
301
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
302
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
303
+ }, {
304
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
305
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
306
+ }>, z.ZodObject<{
307
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
308
+ anchors: z.ZodArray<z.ZodType<import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">>, "many">;
309
+ }, "strip", z.ZodTypeAny, {
310
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
311
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
312
+ }, {
313
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
314
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
315
+ }>, z.ZodObject<{
316
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
317
+ groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
318
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
319
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
320
+ name: z.ZodEffects<z.ZodString, string, string>;
321
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
322
+ }, "strip", z.ZodTypeAny, {
323
+ name: string;
324
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
325
+ library?: "fontawesome" | "lucide" | undefined;
326
+ }, {
327
+ name: string;
328
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
329
+ library?: "fontawesome" | "lucide" | undefined;
330
+ }>]>>;
331
+ group: z.ZodString;
332
+ hidden: z.ZodOptional<z.ZodBoolean>;
333
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
334
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
335
+ source: z.ZodEffects<z.ZodString, string, string>;
336
+ directory: z.ZodOptional<z.ZodString>;
337
+ }, "strict", z.ZodTypeAny, {
338
+ source: string;
339
+ directory?: string | undefined;
340
+ }, {
341
+ source: string;
342
+ directory?: string | undefined;
343
+ }>]>;
344
+ }, "strip", z.ZodTypeAny, {
345
+ openapi: (string | string[] | {
346
+ source: string;
347
+ directory?: string | undefined;
348
+ }) & (string | string[] | {
349
+ source: string;
350
+ directory?: string | undefined;
351
+ } | undefined);
352
+ group: string;
353
+ icon?: string | {
354
+ name: string;
355
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
356
+ library?: "fontawesome" | "lucide" | undefined;
357
+ } | undefined;
358
+ hidden?: boolean | undefined;
359
+ root?: string | undefined;
360
+ }, {
361
+ openapi: (string | string[] | {
362
+ source: string;
363
+ directory?: string | undefined;
364
+ }) & (string | string[] | {
365
+ source: string;
366
+ directory?: string | undefined;
367
+ } | undefined);
368
+ group: string;
369
+ icon?: string | {
370
+ name: string;
371
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
372
+ library?: "fontawesome" | "lucide" | undefined;
373
+ } | undefined;
374
+ hidden?: boolean | undefined;
375
+ root?: string | undefined;
376
+ }>, z.ZodObject<{
377
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
378
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
379
+ name: z.ZodEffects<z.ZodString, string, string>;
380
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
381
+ }, "strip", z.ZodTypeAny, {
382
+ name: string;
383
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
384
+ library?: "fontawesome" | "lucide" | undefined;
385
+ }, {
386
+ name: string;
387
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
388
+ library?: "fontawesome" | "lucide" | undefined;
389
+ }>]>>;
390
+ group: z.ZodString;
391
+ hidden: z.ZodOptional<z.ZodBoolean>;
392
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
393
+ asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
394
+ source: z.ZodEffects<z.ZodString, string, string>;
395
+ directory: z.ZodOptional<z.ZodString>;
396
+ }, "strict", z.ZodTypeAny, {
397
+ source: string;
398
+ directory?: string | undefined;
399
+ }, {
400
+ source: string;
401
+ directory?: string | undefined;
402
+ }>]>;
403
+ }, "strip", z.ZodTypeAny, {
404
+ group: string;
405
+ asyncapi: (string | string[] | {
406
+ source: string;
407
+ directory?: string | undefined;
408
+ }) & (string | string[] | {
409
+ source: string;
410
+ directory?: string | undefined;
411
+ } | undefined);
412
+ icon?: string | {
413
+ name: string;
414
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
415
+ library?: "fontawesome" | "lucide" | undefined;
416
+ } | undefined;
417
+ hidden?: boolean | undefined;
418
+ root?: string | undefined;
419
+ }, {
420
+ group: string;
421
+ asyncapi: (string | string[] | {
422
+ source: string;
423
+ directory?: string | undefined;
424
+ }) & (string | string[] | {
425
+ source: string;
426
+ directory?: string | undefined;
427
+ } | undefined);
428
+ icon?: string | {
429
+ name: string;
430
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
431
+ library?: "fontawesome" | "lucide" | undefined;
432
+ } | undefined;
433
+ hidden?: boolean | undefined;
434
+ root?: string | undefined;
435
+ }>, z.ZodObject<{
436
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
437
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
438
+ name: z.ZodEffects<z.ZodString, string, string>;
439
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
440
+ }, "strip", z.ZodTypeAny, {
441
+ name: string;
442
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
443
+ library?: "fontawesome" | "lucide" | undefined;
444
+ }, {
445
+ name: string;
446
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
447
+ library?: "fontawesome" | "lucide" | undefined;
448
+ }>]>>;
449
+ group: z.ZodString;
450
+ hidden: z.ZodOptional<z.ZodBoolean>;
451
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
452
+ pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
453
+ }, "strip", z.ZodTypeAny, {
454
+ group: string;
455
+ pages: any[];
456
+ icon?: string | {
457
+ name: string;
458
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
459
+ library?: "fontawesome" | "lucide" | undefined;
460
+ } | undefined;
461
+ hidden?: boolean | undefined;
462
+ root?: string | undefined;
463
+ }, {
464
+ group: string;
465
+ pages: any[];
466
+ icon?: string | {
467
+ name: string;
468
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
469
+ library?: "fontawesome" | "lucide" | undefined;
470
+ } | undefined;
471
+ hidden?: boolean | undefined;
472
+ root?: string | undefined;
473
+ }>]>, "many">;
474
+ }, "strip", z.ZodTypeAny, {
475
+ groups: ({
476
+ openapi: (string | string[] | {
477
+ source: string;
478
+ directory?: string | undefined;
479
+ }) & (string | string[] | {
480
+ source: string;
481
+ directory?: string | undefined;
482
+ } | undefined);
483
+ group: string;
484
+ icon?: string | {
485
+ name: string;
486
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
487
+ library?: "fontawesome" | "lucide" | undefined;
488
+ } | undefined;
489
+ hidden?: boolean | undefined;
490
+ root?: string | undefined;
491
+ } | {
492
+ group: string;
493
+ asyncapi: (string | string[] | {
494
+ source: string;
495
+ directory?: string | undefined;
496
+ }) & (string | string[] | {
497
+ source: string;
498
+ directory?: string | undefined;
499
+ } | undefined);
500
+ icon?: string | {
501
+ name: string;
502
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
503
+ library?: "fontawesome" | "lucide" | undefined;
504
+ } | undefined;
505
+ hidden?: boolean | undefined;
506
+ root?: string | undefined;
507
+ } | {
508
+ group: string;
509
+ pages: any[];
510
+ icon?: string | {
511
+ name: string;
512
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
513
+ library?: "fontawesome" | "lucide" | undefined;
514
+ } | undefined;
515
+ hidden?: boolean | undefined;
516
+ root?: string | undefined;
517
+ })[];
518
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
519
+ }, {
520
+ groups: ({
521
+ openapi: (string | string[] | {
522
+ source: string;
523
+ directory?: string | undefined;
524
+ }) & (string | string[] | {
525
+ source: string;
526
+ directory?: string | undefined;
527
+ } | undefined);
528
+ group: string;
529
+ icon?: string | {
530
+ name: string;
531
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
532
+ library?: "fontawesome" | "lucide" | undefined;
533
+ } | undefined;
534
+ hidden?: boolean | undefined;
535
+ root?: string | undefined;
536
+ } | {
537
+ group: string;
538
+ asyncapi: (string | string[] | {
539
+ source: string;
540
+ directory?: string | undefined;
541
+ }) & (string | string[] | {
542
+ source: string;
543
+ directory?: string | undefined;
544
+ } | undefined);
545
+ icon?: string | {
546
+ name: string;
547
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
548
+ library?: "fontawesome" | "lucide" | undefined;
549
+ } | undefined;
550
+ hidden?: boolean | undefined;
551
+ root?: string | undefined;
552
+ } | {
553
+ group: string;
554
+ pages: any[];
555
+ icon?: string | {
556
+ name: string;
557
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
558
+ library?: "fontawesome" | "lucide" | undefined;
559
+ } | undefined;
560
+ hidden?: boolean | undefined;
561
+ root?: string | undefined;
562
+ })[];
563
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
564
+ }>, z.ZodObject<{
565
+ global: z.ZodOptional<z.ZodType<import("../properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("../properties/navigation/divisionNav.js").GlobalNavigation>>;
566
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
567
+ }, "strip", z.ZodTypeAny, {
568
+ pages: any[];
569
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
570
+ }, {
571
+ pages: any[];
572
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
573
+ }>]>;
574
+ footer: z.ZodOptional<z.ZodObject<{
575
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter", "x-twitter", "earth-americas", "bluesky", "threads", "reddit", "podcast"]>, z.ZodString>>;
576
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
577
+ header: z.ZodOptional<z.ZodString>;
578
+ items: z.ZodArray<z.ZodObject<{
579
+ label: z.ZodString;
580
+ href: z.ZodString;
581
+ }, "strip", z.ZodTypeAny, {
582
+ href: string;
583
+ label: string;
584
+ }, {
585
+ href: string;
586
+ label: string;
587
+ }>, "many">;
588
+ }, "strip", z.ZodTypeAny, {
589
+ items: {
590
+ href: string;
591
+ label: string;
592
+ }[];
593
+ header?: string | undefined;
594
+ }, {
595
+ items: {
596
+ href: string;
597
+ label: string;
598
+ }[];
599
+ header?: string | undefined;
600
+ }>, "many">>;
601
+ }, "strip", z.ZodTypeAny, {
602
+ 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;
603
+ links?: {
604
+ items: {
605
+ href: string;
606
+ label: string;
607
+ }[];
608
+ header?: string | undefined;
609
+ }[] | undefined;
610
+ }, {
611
+ 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;
612
+ links?: {
613
+ items: {
614
+ href: string;
615
+ label: string;
616
+ }[];
617
+ header?: string | undefined;
618
+ }[] | undefined;
619
+ }>>;
620
+ search: z.ZodOptional<z.ZodObject<{
621
+ prompt: z.ZodOptional<z.ZodString>;
622
+ }, "strip", z.ZodTypeAny, {
623
+ prompt?: string | undefined;
624
+ }, {
625
+ prompt?: string | undefined;
626
+ }>>;
627
+ seo: z.ZodOptional<z.ZodObject<{
628
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
629
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
630
+ }, "strip", z.ZodTypeAny, {
631
+ metatags?: Record<string, string> | undefined;
632
+ indexing?: "all" | "navigable" | undefined;
633
+ }, {
634
+ metatags?: Record<string, string> | undefined;
635
+ indexing?: "all" | "navigable" | undefined;
636
+ }>>;
637
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
638
+ family: z.ZodString;
639
+ weight: z.ZodOptional<z.ZodNumber>;
640
+ source: z.ZodOptional<z.ZodString>;
641
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
642
+ }, "strip", z.ZodTypeAny, {
643
+ family: string;
644
+ weight?: number | undefined;
645
+ source?: string | undefined;
646
+ format?: "woff" | "woff2" | undefined;
647
+ }, {
648
+ family: string;
649
+ weight?: number | undefined;
650
+ source?: string | undefined;
651
+ format?: "woff" | "woff2" | undefined;
652
+ }>, {
653
+ family: string;
654
+ weight?: number | undefined;
655
+ source?: string | undefined;
656
+ format?: "woff" | "woff2" | undefined;
657
+ }, {
658
+ family: string;
659
+ weight?: number | undefined;
660
+ source?: string | undefined;
661
+ format?: "woff" | "woff2" | undefined;
662
+ }>, z.ZodObject<{
663
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
664
+ family: z.ZodString;
665
+ weight: z.ZodOptional<z.ZodNumber>;
666
+ source: z.ZodOptional<z.ZodString>;
667
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
668
+ }, "strip", z.ZodTypeAny, {
669
+ family: string;
670
+ weight?: number | undefined;
671
+ source?: string | undefined;
672
+ format?: "woff" | "woff2" | undefined;
673
+ }, {
674
+ family: string;
675
+ weight?: number | undefined;
676
+ source?: string | undefined;
677
+ format?: "woff" | "woff2" | undefined;
678
+ }>, {
679
+ family: string;
680
+ weight?: number | undefined;
681
+ source?: string | undefined;
682
+ format?: "woff" | "woff2" | undefined;
683
+ }, {
684
+ family: string;
685
+ weight?: number | undefined;
686
+ source?: string | undefined;
687
+ format?: "woff" | "woff2" | undefined;
688
+ }>>;
689
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
690
+ family: z.ZodString;
691
+ weight: z.ZodOptional<z.ZodNumber>;
692
+ source: z.ZodOptional<z.ZodString>;
693
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
694
+ }, "strip", z.ZodTypeAny, {
695
+ family: string;
696
+ weight?: number | undefined;
697
+ source?: string | undefined;
698
+ format?: "woff" | "woff2" | undefined;
699
+ }, {
700
+ family: string;
701
+ weight?: number | undefined;
702
+ source?: string | undefined;
703
+ format?: "woff" | "woff2" | undefined;
704
+ }>, {
705
+ family: string;
706
+ weight?: number | undefined;
707
+ source?: string | undefined;
708
+ format?: "woff" | "woff2" | undefined;
709
+ }, {
710
+ family: string;
711
+ weight?: number | undefined;
712
+ source?: string | undefined;
713
+ format?: "woff" | "woff2" | undefined;
714
+ }>>;
715
+ }, "strict", z.ZodTypeAny, {
716
+ heading?: {
717
+ family: string;
718
+ weight?: number | undefined;
719
+ source?: string | undefined;
720
+ format?: "woff" | "woff2" | undefined;
721
+ } | undefined;
722
+ body?: {
723
+ family: string;
724
+ weight?: number | undefined;
725
+ source?: string | undefined;
726
+ format?: "woff" | "woff2" | undefined;
727
+ } | undefined;
728
+ }, {
729
+ heading?: {
730
+ family: string;
731
+ weight?: number | undefined;
732
+ source?: string | undefined;
733
+ format?: "woff" | "woff2" | undefined;
734
+ } | undefined;
735
+ body?: {
736
+ family: string;
737
+ weight?: number | undefined;
738
+ source?: string | undefined;
739
+ format?: "woff" | "woff2" | undefined;
740
+ } | undefined;
741
+ }>]>>;
742
+ icons: z.ZodOptional<z.ZodObject<{
743
+ library: z.ZodEnum<["fontawesome", "lucide"]>;
744
+ }, "strip", z.ZodTypeAny, {
745
+ library: "fontawesome" | "lucide";
746
+ }, {
747
+ library: "fontawesome" | "lucide";
748
+ }>>;
749
+ styling: z.ZodOptional<z.ZodObject<{
750
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
751
+ codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
752
+ }, "strip", z.ZodTypeAny, {
753
+ eyebrows?: "section" | "breadcrumbs" | undefined;
754
+ codeblocks?: "dark" | "system" | undefined;
755
+ }, {
756
+ eyebrows?: "section" | "breadcrumbs" | undefined;
757
+ codeblocks?: "dark" | "system" | undefined;
758
+ }>>;
759
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
760
+ source: z.ZodString;
761
+ destination: z.ZodString;
762
+ permanent: z.ZodOptional<z.ZodBoolean>;
763
+ }, "strip", z.ZodTypeAny, {
764
+ source: string;
765
+ destination: string;
766
+ permanent?: boolean | undefined;
767
+ }, {
768
+ source: string;
769
+ destination: string;
770
+ permanent?: boolean | undefined;
771
+ }>, "many">, {
772
+ source: string;
773
+ destination: string;
774
+ permanent?: boolean | undefined;
775
+ }[], {
776
+ source: string;
777
+ destination: string;
778
+ permanent?: boolean | undefined;
779
+ }[]>>;
780
+ integrations: z.ZodOptional<z.ZodObject<{
781
+ amplitude: z.ZodOptional<z.ZodObject<{
782
+ apiKey: z.ZodString;
783
+ }, "strip", z.ZodTypeAny, {
784
+ apiKey: string;
785
+ }, {
786
+ apiKey: string;
787
+ }>>;
788
+ clearbit: z.ZodOptional<z.ZodObject<{
789
+ publicApiKey: z.ZodString;
790
+ }, "strip", z.ZodTypeAny, {
791
+ publicApiKey: string;
792
+ }, {
793
+ publicApiKey: string;
794
+ }>>;
795
+ fathom: z.ZodOptional<z.ZodObject<{
796
+ siteId: z.ZodString;
797
+ }, "strip", z.ZodTypeAny, {
798
+ siteId: string;
799
+ }, {
800
+ siteId: string;
801
+ }>>;
802
+ frontchat: z.ZodOptional<z.ZodObject<{
803
+ snippetId: z.ZodString;
804
+ }, "strip", z.ZodTypeAny, {
805
+ snippetId: string;
806
+ }, {
807
+ snippetId: string;
808
+ }>>;
809
+ ga4: z.ZodOptional<z.ZodObject<{
810
+ measurementId: z.ZodString;
811
+ }, "strip", z.ZodTypeAny, {
812
+ measurementId: string;
813
+ }, {
814
+ measurementId: string;
815
+ }>>;
816
+ gtm: z.ZodOptional<z.ZodObject<{
817
+ tagId: z.ZodString;
818
+ }, "strip", z.ZodTypeAny, {
819
+ tagId: string;
820
+ }, {
821
+ tagId: string;
822
+ }>>;
823
+ heap: z.ZodOptional<z.ZodObject<{
824
+ appId: z.ZodString;
825
+ }, "strip", z.ZodTypeAny, {
826
+ appId: string;
827
+ }, {
828
+ appId: string;
829
+ }>>;
830
+ hotjar: z.ZodOptional<z.ZodObject<{
831
+ hjid: z.ZodString;
832
+ hjsv: z.ZodString;
833
+ }, "strip", z.ZodTypeAny, {
834
+ hjid: string;
835
+ hjsv: string;
836
+ }, {
837
+ hjid: string;
838
+ hjsv: string;
839
+ }>>;
840
+ intercom: z.ZodOptional<z.ZodObject<{
841
+ appId: z.ZodString;
842
+ }, "strip", z.ZodTypeAny, {
843
+ appId: string;
844
+ }, {
845
+ appId: string;
846
+ }>>;
847
+ koala: z.ZodOptional<z.ZodObject<{
848
+ publicApiKey: z.ZodString;
849
+ }, "strip", z.ZodTypeAny, {
850
+ publicApiKey: string;
851
+ }, {
852
+ publicApiKey: string;
853
+ }>>;
854
+ logrocket: z.ZodOptional<z.ZodObject<{
855
+ appId: z.ZodString;
856
+ }, "strip", z.ZodTypeAny, {
857
+ appId: string;
858
+ }, {
859
+ appId: string;
860
+ }>>;
861
+ mixpanel: z.ZodOptional<z.ZodObject<{
862
+ projectToken: z.ZodString;
863
+ }, "strip", z.ZodTypeAny, {
864
+ projectToken: string;
865
+ }, {
866
+ projectToken: string;
867
+ }>>;
868
+ osano: z.ZodOptional<z.ZodObject<{
869
+ scriptSource: z.ZodString;
870
+ }, "strip", z.ZodTypeAny, {
871
+ scriptSource: string;
872
+ }, {
873
+ scriptSource: string;
874
+ }>>;
875
+ pirsch: z.ZodOptional<z.ZodObject<{
876
+ id: z.ZodString;
877
+ }, "strip", z.ZodTypeAny, {
878
+ id: string;
879
+ }, {
880
+ id: string;
881
+ }>>;
882
+ posthog: z.ZodOptional<z.ZodObject<{
883
+ apiKey: z.ZodString;
884
+ apiHost: z.ZodOptional<z.ZodString>;
885
+ }, "strip", z.ZodTypeAny, {
886
+ apiKey: string;
887
+ apiHost?: string | undefined;
888
+ }, {
889
+ apiKey: string;
890
+ apiHost?: string | undefined;
891
+ }>>;
892
+ plausible: z.ZodOptional<z.ZodObject<{
893
+ domain: z.ZodEffects<z.ZodString, string, string>;
894
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
895
+ }, "strip", z.ZodTypeAny, {
896
+ domain: string;
897
+ server?: string | undefined;
898
+ }, {
899
+ domain: string;
900
+ server?: string | undefined;
901
+ }>>;
902
+ segment: z.ZodOptional<z.ZodObject<{
903
+ key: z.ZodString;
904
+ }, "strip", z.ZodTypeAny, {
905
+ key: string;
906
+ }, {
907
+ key: string;
908
+ }>>;
909
+ telemetry: z.ZodOptional<z.ZodObject<{
910
+ enabled: z.ZodOptional<z.ZodBoolean>;
911
+ }, "strip", z.ZodTypeAny, {
912
+ enabled?: boolean | undefined;
913
+ }, {
914
+ enabled?: boolean | undefined;
915
+ }>>;
916
+ cookies: z.ZodOptional<z.ZodObject<{
917
+ key: z.ZodOptional<z.ZodString>;
918
+ value: z.ZodOptional<z.ZodString>;
919
+ }, "strip", z.ZodTypeAny, {
920
+ key?: string | undefined;
921
+ value?: string | undefined;
922
+ }, {
923
+ key?: string | undefined;
924
+ value?: string | undefined;
925
+ }>>;
926
+ }, "strict", z.ZodTypeAny, {
927
+ amplitude?: {
928
+ apiKey: string;
929
+ } | undefined;
930
+ clearbit?: {
931
+ publicApiKey: string;
932
+ } | undefined;
933
+ fathom?: {
934
+ siteId: string;
935
+ } | undefined;
936
+ frontchat?: {
937
+ snippetId: string;
938
+ } | undefined;
939
+ ga4?: {
940
+ measurementId: string;
941
+ } | undefined;
942
+ gtm?: {
943
+ tagId: string;
944
+ } | undefined;
945
+ heap?: {
946
+ appId: string;
947
+ } | undefined;
948
+ hotjar?: {
949
+ hjid: string;
950
+ hjsv: string;
951
+ } | undefined;
952
+ intercom?: {
953
+ appId: string;
954
+ } | undefined;
955
+ koala?: {
956
+ publicApiKey: string;
957
+ } | undefined;
958
+ logrocket?: {
959
+ appId: string;
960
+ } | undefined;
961
+ mixpanel?: {
962
+ projectToken: string;
963
+ } | undefined;
964
+ osano?: {
965
+ scriptSource: string;
966
+ } | undefined;
967
+ pirsch?: {
968
+ id: string;
969
+ } | undefined;
970
+ posthog?: {
971
+ apiKey: string;
972
+ apiHost?: string | undefined;
973
+ } | undefined;
974
+ plausible?: {
975
+ domain: string;
976
+ server?: string | undefined;
977
+ } | undefined;
978
+ segment?: {
979
+ key: string;
980
+ } | undefined;
981
+ telemetry?: {
982
+ enabled?: boolean | undefined;
983
+ } | undefined;
984
+ cookies?: {
985
+ key?: string | undefined;
986
+ value?: string | undefined;
987
+ } | undefined;
988
+ }, {
989
+ amplitude?: {
990
+ apiKey: string;
991
+ } | undefined;
992
+ clearbit?: {
993
+ publicApiKey: string;
994
+ } | undefined;
995
+ fathom?: {
996
+ siteId: string;
997
+ } | undefined;
998
+ frontchat?: {
999
+ snippetId: string;
1000
+ } | undefined;
1001
+ ga4?: {
1002
+ measurementId: string;
1003
+ } | undefined;
1004
+ gtm?: {
1005
+ tagId: string;
1006
+ } | undefined;
1007
+ heap?: {
1008
+ appId: string;
1009
+ } | undefined;
1010
+ hotjar?: {
1011
+ hjid: string;
1012
+ hjsv: string;
1013
+ } | undefined;
1014
+ intercom?: {
1015
+ appId: string;
1016
+ } | undefined;
1017
+ koala?: {
1018
+ publicApiKey: string;
1019
+ } | undefined;
1020
+ logrocket?: {
1021
+ appId: string;
1022
+ } | undefined;
1023
+ mixpanel?: {
1024
+ projectToken: string;
1025
+ } | undefined;
1026
+ osano?: {
1027
+ scriptSource: string;
1028
+ } | undefined;
1029
+ pirsch?: {
1030
+ id: string;
1031
+ } | undefined;
1032
+ posthog?: {
1033
+ apiKey: string;
1034
+ apiHost?: string | undefined;
1035
+ } | undefined;
1036
+ plausible?: {
1037
+ domain: string;
1038
+ server?: string | undefined;
1039
+ } | undefined;
1040
+ segment?: {
1041
+ key: string;
1042
+ } | undefined;
1043
+ telemetry?: {
1044
+ enabled?: boolean | undefined;
1045
+ } | undefined;
1046
+ cookies?: {
1047
+ key?: string | undefined;
1048
+ value?: string | undefined;
1049
+ } | undefined;
1050
+ }>>;
1051
+ banner: z.ZodOptional<z.ZodObject<{
1052
+ content: z.ZodString;
1053
+ dismissible: z.ZodOptional<z.ZodBoolean>;
1054
+ }, "strip", z.ZodTypeAny, {
1055
+ content: string;
1056
+ dismissible?: boolean | undefined;
1057
+ }, {
1058
+ content: string;
1059
+ dismissible?: boolean | undefined;
1060
+ }>>;
1061
+ errors: z.ZodOptional<z.ZodObject<{
1062
+ '404': z.ZodObject<{
1063
+ redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1064
+ }, "strip", z.ZodTypeAny, {
1065
+ redirect: boolean;
1066
+ }, {
1067
+ redirect?: boolean | undefined;
1068
+ }>;
1069
+ }, "strip", z.ZodTypeAny, {
1070
+ '404': {
1071
+ redirect: boolean;
1072
+ };
1073
+ }, {
1074
+ '404': {
1075
+ redirect?: boolean | undefined;
1076
+ };
1077
+ }>>;
1078
+ contextual: z.ZodOptional<z.ZodObject<{
1079
+ options: z.ZodEffects<z.ZodArray<z.ZodEnum<["copy", "view", "chatgpt", "claude"]>, "many">, ("copy" | "view" | "chatgpt" | "claude")[], ("copy" | "view" | "chatgpt" | "claude")[]>;
1080
+ }, "strip", z.ZodTypeAny, {
1081
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1082
+ }, {
1083
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1084
+ }>>;
1085
+ theme: z.ZodLiteral<"almond">;
1086
+ }, "strip", z.ZodTypeAny, {
1087
+ name: string;
1088
+ $schema: string;
1089
+ theme: "almond";
1090
+ colors: {
1091
+ primary: string;
1092
+ light?: string | undefined;
1093
+ dark?: string | undefined;
1094
+ };
1095
+ navigation: ({
1096
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1097
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1098
+ } | {
1099
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1100
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1101
+ } | {
1102
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1103
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1104
+ } | {
1105
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1106
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1107
+ } | {
1108
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1109
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1110
+ } | {
1111
+ groups: ({
1112
+ openapi: (string | string[] | {
1113
+ source: string;
1114
+ directory?: string | undefined;
1115
+ }) & (string | string[] | {
1116
+ source: string;
1117
+ directory?: string | undefined;
1118
+ } | undefined);
1119
+ group: string;
1120
+ icon?: string | {
1121
+ name: string;
1122
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1123
+ library?: "fontawesome" | "lucide" | undefined;
1124
+ } | undefined;
1125
+ hidden?: boolean | undefined;
1126
+ root?: string | undefined;
1127
+ } | {
1128
+ group: string;
1129
+ asyncapi: (string | string[] | {
1130
+ source: string;
1131
+ directory?: string | undefined;
1132
+ }) & (string | string[] | {
1133
+ source: string;
1134
+ directory?: string | undefined;
1135
+ } | undefined);
1136
+ icon?: string | {
1137
+ name: string;
1138
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1139
+ library?: "fontawesome" | "lucide" | undefined;
1140
+ } | undefined;
1141
+ hidden?: boolean | undefined;
1142
+ root?: string | undefined;
1143
+ } | {
1144
+ group: string;
1145
+ pages: any[];
1146
+ icon?: string | {
1147
+ name: string;
1148
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1149
+ library?: "fontawesome" | "lucide" | undefined;
1150
+ } | undefined;
1151
+ hidden?: boolean | undefined;
1152
+ root?: string | undefined;
1153
+ })[];
1154
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1155
+ } | {
1156
+ pages: any[];
1157
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1158
+ }) & ({
1159
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1160
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1161
+ } | {
1162
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1163
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1164
+ } | {
1165
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1166
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1167
+ } | {
1168
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1169
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1170
+ } | {
1171
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1172
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1173
+ } | {
1174
+ groups: ({
1175
+ openapi: (string | string[] | {
1176
+ source: string;
1177
+ directory?: string | undefined;
1178
+ }) & (string | string[] | {
1179
+ source: string;
1180
+ directory?: string | undefined;
1181
+ } | undefined);
1182
+ group: string;
1183
+ icon?: string | {
1184
+ name: string;
1185
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1186
+ library?: "fontawesome" | "lucide" | undefined;
1187
+ } | undefined;
1188
+ hidden?: boolean | undefined;
1189
+ root?: string | undefined;
1190
+ } | {
1191
+ group: string;
1192
+ asyncapi: (string | string[] | {
1193
+ source: string;
1194
+ directory?: string | undefined;
1195
+ }) & (string | string[] | {
1196
+ source: string;
1197
+ directory?: string | undefined;
1198
+ } | undefined);
1199
+ icon?: string | {
1200
+ name: string;
1201
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1202
+ library?: "fontawesome" | "lucide" | undefined;
1203
+ } | undefined;
1204
+ hidden?: boolean | undefined;
1205
+ root?: string | undefined;
1206
+ } | {
1207
+ group: string;
1208
+ pages: any[];
1209
+ icon?: string | {
1210
+ name: string;
1211
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1212
+ library?: "fontawesome" | "lucide" | undefined;
1213
+ } | undefined;
1214
+ hidden?: boolean | undefined;
1215
+ root?: string | undefined;
1216
+ })[];
1217
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1218
+ } | {
1219
+ pages: any[];
1220
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1221
+ } | undefined);
1222
+ description?: string | undefined;
1223
+ logo?: string | {
1224
+ light: string;
1225
+ dark: string;
1226
+ href?: string | undefined;
1227
+ } | undefined;
1228
+ favicon?: string | {
1229
+ light: string;
1230
+ dark: string;
1231
+ } | undefined;
1232
+ api?: {
1233
+ openapi?: string | string[] | {
1234
+ source: string;
1235
+ directory?: string | undefined;
1236
+ } | undefined;
1237
+ asyncapi?: string | string[] | {
1238
+ source: string;
1239
+ directory?: string | undefined;
1240
+ } | undefined;
1241
+ playground?: {
1242
+ display?: "simple" | "none" | "interactive" | undefined;
1243
+ proxy?: boolean | undefined;
1244
+ } | undefined;
1245
+ examples?: {
1246
+ defaults?: "all" | "required" | undefined;
1247
+ languages?: string[] | undefined;
1248
+ } | undefined;
1249
+ mdx?: {
1250
+ auth?: {
1251
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1252
+ name?: string | undefined;
1253
+ } | undefined;
1254
+ server?: string | string[] | undefined;
1255
+ } | undefined;
1256
+ } | undefined;
1257
+ appearance?: {
1258
+ default?: "light" | "dark" | "system" | undefined;
1259
+ strict?: boolean | undefined;
1260
+ } | undefined;
1261
+ background?: {
1262
+ image?: string | {
1263
+ light: string;
1264
+ dark: string;
1265
+ } | undefined;
1266
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1267
+ color?: {
1268
+ light?: string | undefined;
1269
+ dark?: string | undefined;
1270
+ } | undefined;
1271
+ } | undefined;
1272
+ navbar?: {
1273
+ links?: {
1274
+ href: string;
1275
+ label: string;
1276
+ }[] | undefined;
1277
+ primary?: {
1278
+ type: "button";
1279
+ href: string;
1280
+ label: string;
1281
+ } | {
1282
+ type: "github";
1283
+ href: string;
1284
+ } | undefined;
1285
+ } | undefined;
1286
+ footer?: {
1287
+ 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;
1288
+ links?: {
1289
+ items: {
1290
+ href: string;
1291
+ label: string;
1292
+ }[];
1293
+ header?: string | undefined;
1294
+ }[] | undefined;
1295
+ } | undefined;
1296
+ search?: {
1297
+ prompt?: string | undefined;
1298
+ } | undefined;
1299
+ seo?: {
1300
+ metatags?: Record<string, string> | undefined;
1301
+ indexing?: "all" | "navigable" | undefined;
1302
+ } | undefined;
1303
+ fonts?: {
1304
+ family: string;
1305
+ weight?: number | undefined;
1306
+ source?: string | undefined;
1307
+ format?: "woff" | "woff2" | undefined;
1308
+ } | {
1309
+ heading?: {
1310
+ family: string;
1311
+ weight?: number | undefined;
1312
+ source?: string | undefined;
1313
+ format?: "woff" | "woff2" | undefined;
1314
+ } | undefined;
1315
+ body?: {
1316
+ family: string;
1317
+ weight?: number | undefined;
1318
+ source?: string | undefined;
1319
+ format?: "woff" | "woff2" | undefined;
1320
+ } | undefined;
1321
+ } | undefined;
1322
+ icons?: {
1323
+ library: "fontawesome" | "lucide";
1324
+ } | undefined;
1325
+ styling?: {
1326
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1327
+ codeblocks?: "dark" | "system" | undefined;
1328
+ } | undefined;
1329
+ redirects?: {
1330
+ source: string;
1331
+ destination: string;
1332
+ permanent?: boolean | undefined;
1333
+ }[] | undefined;
1334
+ integrations?: {
1335
+ amplitude?: {
1336
+ apiKey: string;
1337
+ } | undefined;
1338
+ clearbit?: {
1339
+ publicApiKey: string;
1340
+ } | undefined;
1341
+ fathom?: {
1342
+ siteId: string;
1343
+ } | undefined;
1344
+ frontchat?: {
1345
+ snippetId: string;
1346
+ } | undefined;
1347
+ ga4?: {
1348
+ measurementId: string;
1349
+ } | undefined;
1350
+ gtm?: {
1351
+ tagId: string;
1352
+ } | undefined;
1353
+ heap?: {
1354
+ appId: string;
1355
+ } | undefined;
1356
+ hotjar?: {
1357
+ hjid: string;
1358
+ hjsv: string;
1359
+ } | undefined;
1360
+ intercom?: {
1361
+ appId: string;
1362
+ } | undefined;
1363
+ koala?: {
1364
+ publicApiKey: string;
1365
+ } | undefined;
1366
+ logrocket?: {
1367
+ appId: string;
1368
+ } | undefined;
1369
+ mixpanel?: {
1370
+ projectToken: string;
1371
+ } | undefined;
1372
+ osano?: {
1373
+ scriptSource: string;
1374
+ } | undefined;
1375
+ pirsch?: {
1376
+ id: string;
1377
+ } | undefined;
1378
+ posthog?: {
1379
+ apiKey: string;
1380
+ apiHost?: string | undefined;
1381
+ } | undefined;
1382
+ plausible?: {
1383
+ domain: string;
1384
+ server?: string | undefined;
1385
+ } | undefined;
1386
+ segment?: {
1387
+ key: string;
1388
+ } | undefined;
1389
+ telemetry?: {
1390
+ enabled?: boolean | undefined;
1391
+ } | undefined;
1392
+ cookies?: {
1393
+ key?: string | undefined;
1394
+ value?: string | undefined;
1395
+ } | undefined;
1396
+ } | undefined;
1397
+ banner?: {
1398
+ content: string;
1399
+ dismissible?: boolean | undefined;
1400
+ } | undefined;
1401
+ errors?: {
1402
+ '404': {
1403
+ redirect: boolean;
1404
+ };
1405
+ } | undefined;
1406
+ contextual?: {
1407
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1408
+ } | undefined;
1409
+ }, {
1410
+ name: string;
1411
+ theme: "almond";
1412
+ colors: {
1413
+ primary: string;
1414
+ light?: string | undefined;
1415
+ dark?: string | undefined;
1416
+ };
1417
+ navigation: ({
1418
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1419
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1420
+ } | {
1421
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1422
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1423
+ } | {
1424
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1425
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1426
+ } | {
1427
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1428
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1429
+ } | {
1430
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1431
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1432
+ } | {
1433
+ groups: ({
1434
+ openapi: (string | string[] | {
1435
+ source: string;
1436
+ directory?: string | undefined;
1437
+ }) & (string | string[] | {
1438
+ source: string;
1439
+ directory?: string | undefined;
1440
+ } | undefined);
1441
+ group: string;
1442
+ icon?: string | {
1443
+ name: string;
1444
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1445
+ library?: "fontawesome" | "lucide" | undefined;
1446
+ } | undefined;
1447
+ hidden?: boolean | undefined;
1448
+ root?: string | undefined;
1449
+ } | {
1450
+ group: string;
1451
+ asyncapi: (string | string[] | {
1452
+ source: string;
1453
+ directory?: string | undefined;
1454
+ }) & (string | string[] | {
1455
+ source: string;
1456
+ directory?: string | undefined;
1457
+ } | undefined);
1458
+ icon?: string | {
1459
+ name: string;
1460
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1461
+ library?: "fontawesome" | "lucide" | undefined;
1462
+ } | undefined;
1463
+ hidden?: boolean | undefined;
1464
+ root?: string | undefined;
1465
+ } | {
1466
+ group: string;
1467
+ pages: any[];
1468
+ icon?: string | {
1469
+ name: string;
1470
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1471
+ library?: "fontawesome" | "lucide" | undefined;
1472
+ } | undefined;
1473
+ hidden?: boolean | undefined;
1474
+ root?: string | undefined;
1475
+ })[];
1476
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1477
+ } | {
1478
+ pages: any[];
1479
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1480
+ }) & ({
1481
+ languages: import("../properties/navigation/divisionNav.js").LanguageNavigation<"default">[];
1482
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1483
+ } | {
1484
+ versions: import("../properties/navigation/divisionNav.js").VersionNavigation<"default">[];
1485
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1486
+ } | {
1487
+ tabs: import("../properties/navigation/divisionNav.js").TabNavigation<"default">[];
1488
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1489
+ } | {
1490
+ dropdowns: import("../properties/navigation/divisionNav.js").DropdownNavigation<"default">[];
1491
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1492
+ } | {
1493
+ anchors: import("../properties/navigation/divisionNav.js").AnchorNavigation<"default">[];
1494
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1495
+ } | {
1496
+ groups: ({
1497
+ openapi: (string | string[] | {
1498
+ source: string;
1499
+ directory?: string | undefined;
1500
+ }) & (string | string[] | {
1501
+ source: string;
1502
+ directory?: string | undefined;
1503
+ } | undefined);
1504
+ group: string;
1505
+ icon?: string | {
1506
+ name: string;
1507
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1508
+ library?: "fontawesome" | "lucide" | undefined;
1509
+ } | undefined;
1510
+ hidden?: boolean | undefined;
1511
+ root?: string | undefined;
1512
+ } | {
1513
+ group: string;
1514
+ asyncapi: (string | string[] | {
1515
+ source: string;
1516
+ directory?: string | undefined;
1517
+ }) & (string | string[] | {
1518
+ source: string;
1519
+ directory?: string | undefined;
1520
+ } | undefined);
1521
+ icon?: string | {
1522
+ name: string;
1523
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1524
+ library?: "fontawesome" | "lucide" | undefined;
1525
+ } | undefined;
1526
+ hidden?: boolean | undefined;
1527
+ root?: string | undefined;
1528
+ } | {
1529
+ group: string;
1530
+ pages: any[];
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" | undefined;
1535
+ } | undefined;
1536
+ hidden?: boolean | undefined;
1537
+ root?: string | undefined;
1538
+ })[];
1539
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1540
+ } | {
1541
+ pages: any[];
1542
+ global?: import("../properties/navigation/divisionNav.js").GlobalNavigation | undefined;
1543
+ } | undefined);
1544
+ $schema?: string | undefined;
1545
+ description?: string | undefined;
1546
+ logo?: string | {
1547
+ light: string;
1548
+ dark: string;
1549
+ href?: string | undefined;
1550
+ } | undefined;
1551
+ favicon?: string | {
1552
+ light: string;
1553
+ dark: string;
1554
+ } | undefined;
1555
+ api?: {
1556
+ openapi?: string | string[] | {
1557
+ source: string;
1558
+ directory?: string | undefined;
1559
+ } | undefined;
1560
+ asyncapi?: string | string[] | {
1561
+ source: string;
1562
+ directory?: string | undefined;
1563
+ } | undefined;
1564
+ playground?: {
1565
+ display?: "simple" | "none" | "interactive" | undefined;
1566
+ proxy?: boolean | undefined;
1567
+ } | undefined;
1568
+ examples?: {
1569
+ defaults?: "all" | "required" | undefined;
1570
+ languages?: string[] | undefined;
1571
+ } | undefined;
1572
+ mdx?: {
1573
+ auth?: {
1574
+ method?: "key" | "bearer" | "basic" | "cobo" | undefined;
1575
+ name?: string | undefined;
1576
+ } | undefined;
1577
+ server?: string | string[] | undefined;
1578
+ } | undefined;
1579
+ } | undefined;
1580
+ appearance?: {
1581
+ default?: "light" | "dark" | "system" | undefined;
1582
+ strict?: boolean | undefined;
1583
+ } | undefined;
1584
+ background?: {
1585
+ image?: string | {
1586
+ light: string;
1587
+ dark: string;
1588
+ } | undefined;
1589
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1590
+ color?: {
1591
+ light?: string | undefined;
1592
+ dark?: string | undefined;
1593
+ } | undefined;
1594
+ } | undefined;
1595
+ navbar?: {
1596
+ links?: {
1597
+ href: string;
1598
+ label: string;
1599
+ }[] | undefined;
1600
+ primary?: {
1601
+ type: "button";
1602
+ href: string;
1603
+ label: string;
1604
+ } | {
1605
+ type: "github";
1606
+ href: string;
1607
+ } | undefined;
1608
+ } | undefined;
1609
+ footer?: {
1610
+ 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;
1611
+ links?: {
1612
+ items: {
1613
+ href: string;
1614
+ label: string;
1615
+ }[];
1616
+ header?: string | undefined;
1617
+ }[] | undefined;
1618
+ } | undefined;
1619
+ search?: {
1620
+ prompt?: string | undefined;
1621
+ } | undefined;
1622
+ seo?: {
1623
+ metatags?: Record<string, string> | undefined;
1624
+ indexing?: "all" | "navigable" | undefined;
1625
+ } | undefined;
1626
+ fonts?: {
1627
+ family: string;
1628
+ weight?: number | undefined;
1629
+ source?: string | undefined;
1630
+ format?: "woff" | "woff2" | undefined;
1631
+ } | {
1632
+ heading?: {
1633
+ family: string;
1634
+ weight?: number | undefined;
1635
+ source?: string | undefined;
1636
+ format?: "woff" | "woff2" | undefined;
1637
+ } | undefined;
1638
+ body?: {
1639
+ family: string;
1640
+ weight?: number | undefined;
1641
+ source?: string | undefined;
1642
+ format?: "woff" | "woff2" | undefined;
1643
+ } | undefined;
1644
+ } | undefined;
1645
+ icons?: {
1646
+ library: "fontawesome" | "lucide";
1647
+ } | undefined;
1648
+ styling?: {
1649
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1650
+ codeblocks?: "dark" | "system" | undefined;
1651
+ } | undefined;
1652
+ redirects?: {
1653
+ source: string;
1654
+ destination: string;
1655
+ permanent?: boolean | undefined;
1656
+ }[] | undefined;
1657
+ integrations?: {
1658
+ amplitude?: {
1659
+ apiKey: string;
1660
+ } | undefined;
1661
+ clearbit?: {
1662
+ publicApiKey: string;
1663
+ } | undefined;
1664
+ fathom?: {
1665
+ siteId: string;
1666
+ } | undefined;
1667
+ frontchat?: {
1668
+ snippetId: string;
1669
+ } | undefined;
1670
+ ga4?: {
1671
+ measurementId: string;
1672
+ } | undefined;
1673
+ gtm?: {
1674
+ tagId: string;
1675
+ } | undefined;
1676
+ heap?: {
1677
+ appId: string;
1678
+ } | undefined;
1679
+ hotjar?: {
1680
+ hjid: string;
1681
+ hjsv: string;
1682
+ } | undefined;
1683
+ intercom?: {
1684
+ appId: string;
1685
+ } | undefined;
1686
+ koala?: {
1687
+ publicApiKey: string;
1688
+ } | undefined;
1689
+ logrocket?: {
1690
+ appId: string;
1691
+ } | undefined;
1692
+ mixpanel?: {
1693
+ projectToken: string;
1694
+ } | undefined;
1695
+ osano?: {
1696
+ scriptSource: string;
1697
+ } | undefined;
1698
+ pirsch?: {
1699
+ id: string;
1700
+ } | undefined;
1701
+ posthog?: {
1702
+ apiKey: string;
1703
+ apiHost?: string | undefined;
1704
+ } | undefined;
1705
+ plausible?: {
1706
+ domain: string;
1707
+ server?: string | undefined;
1708
+ } | undefined;
1709
+ segment?: {
1710
+ key: string;
1711
+ } | undefined;
1712
+ telemetry?: {
1713
+ enabled?: boolean | undefined;
1714
+ } | undefined;
1715
+ cookies?: {
1716
+ key?: string | undefined;
1717
+ value?: string | undefined;
1718
+ } | undefined;
1719
+ } | undefined;
1720
+ banner?: {
1721
+ content: string;
1722
+ dismissible?: boolean | undefined;
1723
+ } | undefined;
1724
+ errors?: {
1725
+ '404': {
1726
+ redirect?: boolean | undefined;
1727
+ };
1728
+ } | undefined;
1729
+ contextual?: {
1730
+ options: ("copy" | "view" | "chatgpt" | "claude")[];
1731
+ } | undefined;
1732
+ }>;