hghcn 3.6.2

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,3907 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const registryConfigItemSchema: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4
+ url: z.ZodEffects<z.ZodString, string, string>;
5
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ url: string;
9
+ params?: Record<string, string> | undefined;
10
+ headers?: Record<string, string> | undefined;
11
+ }, {
12
+ url: string;
13
+ params?: Record<string, string> | undefined;
14
+ headers?: Record<string, string> | undefined;
15
+ }>]>;
16
+ declare const registryConfigSchema: z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
17
+ url: z.ZodEffects<z.ZodString, string, string>;
18
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
19
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ url: string;
22
+ params?: Record<string, string> | undefined;
23
+ headers?: Record<string, string> | undefined;
24
+ }, {
25
+ url: string;
26
+ params?: Record<string, string> | undefined;
27
+ headers?: Record<string, string> | undefined;
28
+ }>]>>;
29
+ declare const rawConfigSchema: z.ZodObject<{
30
+ $schema: z.ZodOptional<z.ZodString>;
31
+ style: z.ZodString;
32
+ rsc: z.ZodDefault<z.ZodBoolean>;
33
+ tsx: z.ZodDefault<z.ZodBoolean>;
34
+ tailwind: z.ZodObject<{
35
+ config: z.ZodOptional<z.ZodString>;
36
+ css: z.ZodString;
37
+ baseColor: z.ZodString;
38
+ cssVariables: z.ZodDefault<z.ZodBoolean>;
39
+ prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ css: string;
42
+ baseColor: string;
43
+ cssVariables: boolean;
44
+ config?: string | undefined;
45
+ prefix?: string | undefined;
46
+ }, {
47
+ css: string;
48
+ baseColor: string;
49
+ config?: string | undefined;
50
+ cssVariables?: boolean | undefined;
51
+ prefix?: string | undefined;
52
+ }>;
53
+ iconLibrary: z.ZodOptional<z.ZodString>;
54
+ menuColor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>;
55
+ menuAccent: z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>;
56
+ aliases: z.ZodObject<{
57
+ components: z.ZodString;
58
+ utils: z.ZodString;
59
+ ui: z.ZodOptional<z.ZodString>;
60
+ lib: z.ZodOptional<z.ZodString>;
61
+ hooks: z.ZodOptional<z.ZodString>;
62
+ }, "strip", z.ZodTypeAny, {
63
+ components: string;
64
+ utils: string;
65
+ ui?: string | undefined;
66
+ lib?: string | undefined;
67
+ hooks?: string | undefined;
68
+ }, {
69
+ components: string;
70
+ utils: string;
71
+ ui?: string | undefined;
72
+ lib?: string | undefined;
73
+ hooks?: string | undefined;
74
+ }>;
75
+ registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
76
+ url: z.ZodEffects<z.ZodString, string, string>;
77
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
78
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ url: string;
81
+ params?: Record<string, string> | undefined;
82
+ headers?: Record<string, string> | undefined;
83
+ }, {
84
+ url: string;
85
+ params?: Record<string, string> | undefined;
86
+ headers?: Record<string, string> | undefined;
87
+ }>]>>>;
88
+ }, "strict", z.ZodTypeAny, {
89
+ tailwind: {
90
+ css: string;
91
+ baseColor: string;
92
+ cssVariables: boolean;
93
+ config?: string | undefined;
94
+ prefix?: string | undefined;
95
+ };
96
+ style: string;
97
+ rsc: boolean;
98
+ tsx: boolean;
99
+ aliases: {
100
+ components: string;
101
+ utils: string;
102
+ ui?: string | undefined;
103
+ lib?: string | undefined;
104
+ hooks?: string | undefined;
105
+ };
106
+ $schema?: string | undefined;
107
+ iconLibrary?: string | undefined;
108
+ menuColor?: "default" | "inverted" | undefined;
109
+ menuAccent?: "subtle" | "bold" | undefined;
110
+ registries?: Record<string, string | {
111
+ url: string;
112
+ params?: Record<string, string> | undefined;
113
+ headers?: Record<string, string> | undefined;
114
+ }> | undefined;
115
+ }, {
116
+ tailwind: {
117
+ css: string;
118
+ baseColor: string;
119
+ config?: string | undefined;
120
+ cssVariables?: boolean | undefined;
121
+ prefix?: string | undefined;
122
+ };
123
+ style: string;
124
+ aliases: {
125
+ components: string;
126
+ utils: string;
127
+ ui?: string | undefined;
128
+ lib?: string | undefined;
129
+ hooks?: string | undefined;
130
+ };
131
+ $schema?: string | undefined;
132
+ rsc?: boolean | undefined;
133
+ tsx?: boolean | undefined;
134
+ iconLibrary?: string | undefined;
135
+ menuColor?: "default" | "inverted" | undefined;
136
+ menuAccent?: "subtle" | "bold" | undefined;
137
+ registries?: Record<string, string | {
138
+ url: string;
139
+ params?: Record<string, string> | undefined;
140
+ headers?: Record<string, string> | undefined;
141
+ }> | undefined;
142
+ }>;
143
+ declare const configSchema: z.ZodObject<{
144
+ $schema: z.ZodOptional<z.ZodString>;
145
+ style: z.ZodString;
146
+ rsc: z.ZodDefault<z.ZodBoolean>;
147
+ tsx: z.ZodDefault<z.ZodBoolean>;
148
+ tailwind: z.ZodObject<{
149
+ config: z.ZodOptional<z.ZodString>;
150
+ css: z.ZodString;
151
+ baseColor: z.ZodString;
152
+ cssVariables: z.ZodDefault<z.ZodBoolean>;
153
+ prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
154
+ }, "strip", z.ZodTypeAny, {
155
+ css: string;
156
+ baseColor: string;
157
+ cssVariables: boolean;
158
+ config?: string | undefined;
159
+ prefix?: string | undefined;
160
+ }, {
161
+ css: string;
162
+ baseColor: string;
163
+ config?: string | undefined;
164
+ cssVariables?: boolean | undefined;
165
+ prefix?: string | undefined;
166
+ }>;
167
+ iconLibrary: z.ZodOptional<z.ZodString>;
168
+ menuColor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>;
169
+ menuAccent: z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>;
170
+ aliases: z.ZodObject<{
171
+ components: z.ZodString;
172
+ utils: z.ZodString;
173
+ ui: z.ZodOptional<z.ZodString>;
174
+ lib: z.ZodOptional<z.ZodString>;
175
+ hooks: z.ZodOptional<z.ZodString>;
176
+ }, "strip", z.ZodTypeAny, {
177
+ components: string;
178
+ utils: string;
179
+ ui?: string | undefined;
180
+ lib?: string | undefined;
181
+ hooks?: string | undefined;
182
+ }, {
183
+ components: string;
184
+ utils: string;
185
+ ui?: string | undefined;
186
+ lib?: string | undefined;
187
+ hooks?: string | undefined;
188
+ }>;
189
+ registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
190
+ url: z.ZodEffects<z.ZodString, string, string>;
191
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
192
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
193
+ }, "strip", z.ZodTypeAny, {
194
+ url: string;
195
+ params?: Record<string, string> | undefined;
196
+ headers?: Record<string, string> | undefined;
197
+ }, {
198
+ url: string;
199
+ params?: Record<string, string> | undefined;
200
+ headers?: Record<string, string> | undefined;
201
+ }>]>>>;
202
+ } & {
203
+ resolvedPaths: z.ZodObject<{
204
+ cwd: z.ZodString;
205
+ tailwindConfig: z.ZodString;
206
+ tailwindCss: z.ZodString;
207
+ utils: z.ZodString;
208
+ components: z.ZodString;
209
+ lib: z.ZodString;
210
+ hooks: z.ZodString;
211
+ ui: z.ZodString;
212
+ }, "strip", z.ZodTypeAny, {
213
+ components: string;
214
+ ui: string;
215
+ utils: string;
216
+ lib: string;
217
+ hooks: string;
218
+ cwd: string;
219
+ tailwindConfig: string;
220
+ tailwindCss: string;
221
+ }, {
222
+ components: string;
223
+ ui: string;
224
+ utils: string;
225
+ lib: string;
226
+ hooks: string;
227
+ cwd: string;
228
+ tailwindConfig: string;
229
+ tailwindCss: string;
230
+ }>;
231
+ }, "strict", z.ZodTypeAny, {
232
+ tailwind: {
233
+ css: string;
234
+ baseColor: string;
235
+ cssVariables: boolean;
236
+ config?: string | undefined;
237
+ prefix?: string | undefined;
238
+ };
239
+ style: string;
240
+ rsc: boolean;
241
+ tsx: boolean;
242
+ aliases: {
243
+ components: string;
244
+ utils: string;
245
+ ui?: string | undefined;
246
+ lib?: string | undefined;
247
+ hooks?: string | undefined;
248
+ };
249
+ resolvedPaths: {
250
+ components: string;
251
+ ui: string;
252
+ utils: string;
253
+ lib: string;
254
+ hooks: string;
255
+ cwd: string;
256
+ tailwindConfig: string;
257
+ tailwindCss: string;
258
+ };
259
+ $schema?: string | undefined;
260
+ iconLibrary?: string | undefined;
261
+ menuColor?: "default" | "inverted" | undefined;
262
+ menuAccent?: "subtle" | "bold" | undefined;
263
+ registries?: Record<string, string | {
264
+ url: string;
265
+ params?: Record<string, string> | undefined;
266
+ headers?: Record<string, string> | undefined;
267
+ }> | undefined;
268
+ }, {
269
+ tailwind: {
270
+ css: string;
271
+ baseColor: string;
272
+ config?: string | undefined;
273
+ cssVariables?: boolean | undefined;
274
+ prefix?: string | undefined;
275
+ };
276
+ style: string;
277
+ aliases: {
278
+ components: string;
279
+ utils: string;
280
+ ui?: string | undefined;
281
+ lib?: string | undefined;
282
+ hooks?: string | undefined;
283
+ };
284
+ resolvedPaths: {
285
+ components: string;
286
+ ui: string;
287
+ utils: string;
288
+ lib: string;
289
+ hooks: string;
290
+ cwd: string;
291
+ tailwindConfig: string;
292
+ tailwindCss: string;
293
+ };
294
+ $schema?: string | undefined;
295
+ rsc?: boolean | undefined;
296
+ tsx?: boolean | undefined;
297
+ iconLibrary?: string | undefined;
298
+ menuColor?: "default" | "inverted" | undefined;
299
+ menuAccent?: "subtle" | "bold" | undefined;
300
+ registries?: Record<string, string | {
301
+ url: string;
302
+ params?: Record<string, string> | undefined;
303
+ headers?: Record<string, string> | undefined;
304
+ }> | undefined;
305
+ }>;
306
+ declare const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
307
+ $schema: z.ZodOptional<z.ZodString>;
308
+ style: z.ZodString;
309
+ rsc: z.ZodDefault<z.ZodBoolean>;
310
+ tsx: z.ZodDefault<z.ZodBoolean>;
311
+ tailwind: z.ZodObject<{
312
+ config: z.ZodOptional<z.ZodString>;
313
+ css: z.ZodString;
314
+ baseColor: z.ZodString;
315
+ cssVariables: z.ZodDefault<z.ZodBoolean>;
316
+ prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
317
+ }, "strip", z.ZodTypeAny, {
318
+ css: string;
319
+ baseColor: string;
320
+ cssVariables: boolean;
321
+ config?: string | undefined;
322
+ prefix?: string | undefined;
323
+ }, {
324
+ css: string;
325
+ baseColor: string;
326
+ config?: string | undefined;
327
+ cssVariables?: boolean | undefined;
328
+ prefix?: string | undefined;
329
+ }>;
330
+ iconLibrary: z.ZodOptional<z.ZodString>;
331
+ menuColor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>;
332
+ menuAccent: z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>;
333
+ aliases: z.ZodObject<{
334
+ components: z.ZodString;
335
+ utils: z.ZodString;
336
+ ui: z.ZodOptional<z.ZodString>;
337
+ lib: z.ZodOptional<z.ZodString>;
338
+ hooks: z.ZodOptional<z.ZodString>;
339
+ }, "strip", z.ZodTypeAny, {
340
+ components: string;
341
+ utils: string;
342
+ ui?: string | undefined;
343
+ lib?: string | undefined;
344
+ hooks?: string | undefined;
345
+ }, {
346
+ components: string;
347
+ utils: string;
348
+ ui?: string | undefined;
349
+ lib?: string | undefined;
350
+ hooks?: string | undefined;
351
+ }>;
352
+ registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
353
+ url: z.ZodEffects<z.ZodString, string, string>;
354
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
355
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
356
+ }, "strip", z.ZodTypeAny, {
357
+ url: string;
358
+ params?: Record<string, string> | undefined;
359
+ headers?: Record<string, string> | undefined;
360
+ }, {
361
+ url: string;
362
+ params?: Record<string, string> | undefined;
363
+ headers?: Record<string, string> | undefined;
364
+ }>]>>>;
365
+ } & {
366
+ resolvedPaths: z.ZodObject<{
367
+ cwd: z.ZodString;
368
+ tailwindConfig: z.ZodString;
369
+ tailwindCss: z.ZodString;
370
+ utils: z.ZodString;
371
+ components: z.ZodString;
372
+ lib: z.ZodString;
373
+ hooks: z.ZodString;
374
+ ui: z.ZodString;
375
+ }, "strip", z.ZodTypeAny, {
376
+ components: string;
377
+ ui: string;
378
+ utils: string;
379
+ lib: string;
380
+ hooks: string;
381
+ cwd: string;
382
+ tailwindConfig: string;
383
+ tailwindCss: string;
384
+ }, {
385
+ components: string;
386
+ ui: string;
387
+ utils: string;
388
+ lib: string;
389
+ hooks: string;
390
+ cwd: string;
391
+ tailwindConfig: string;
392
+ tailwindCss: string;
393
+ }>;
394
+ }, "strict", z.ZodTypeAny, {
395
+ tailwind: {
396
+ css: string;
397
+ baseColor: string;
398
+ cssVariables: boolean;
399
+ config?: string | undefined;
400
+ prefix?: string | undefined;
401
+ };
402
+ style: string;
403
+ rsc: boolean;
404
+ tsx: boolean;
405
+ aliases: {
406
+ components: string;
407
+ utils: string;
408
+ ui?: string | undefined;
409
+ lib?: string | undefined;
410
+ hooks?: string | undefined;
411
+ };
412
+ resolvedPaths: {
413
+ components: string;
414
+ ui: string;
415
+ utils: string;
416
+ lib: string;
417
+ hooks: string;
418
+ cwd: string;
419
+ tailwindConfig: string;
420
+ tailwindCss: string;
421
+ };
422
+ $schema?: string | undefined;
423
+ iconLibrary?: string | undefined;
424
+ menuColor?: "default" | "inverted" | undefined;
425
+ menuAccent?: "subtle" | "bold" | undefined;
426
+ registries?: Record<string, string | {
427
+ url: string;
428
+ params?: Record<string, string> | undefined;
429
+ headers?: Record<string, string> | undefined;
430
+ }> | undefined;
431
+ }, {
432
+ tailwind: {
433
+ css: string;
434
+ baseColor: string;
435
+ config?: string | undefined;
436
+ cssVariables?: boolean | undefined;
437
+ prefix?: string | undefined;
438
+ };
439
+ style: string;
440
+ aliases: {
441
+ components: string;
442
+ utils: string;
443
+ ui?: string | undefined;
444
+ lib?: string | undefined;
445
+ hooks?: string | undefined;
446
+ };
447
+ resolvedPaths: {
448
+ components: string;
449
+ ui: string;
450
+ utils: string;
451
+ lib: string;
452
+ hooks: string;
453
+ cwd: string;
454
+ tailwindConfig: string;
455
+ tailwindCss: string;
456
+ };
457
+ $schema?: string | undefined;
458
+ rsc?: boolean | undefined;
459
+ tsx?: boolean | undefined;
460
+ iconLibrary?: string | undefined;
461
+ menuColor?: "default" | "inverted" | undefined;
462
+ menuAccent?: "subtle" | "bold" | undefined;
463
+ registries?: Record<string, string | {
464
+ url: string;
465
+ params?: Record<string, string> | undefined;
466
+ headers?: Record<string, string> | undefined;
467
+ }> | undefined;
468
+ }>>;
469
+ declare const registryItemTypeSchema: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
470
+ declare const registryItemFileSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
471
+ path: z.ZodString;
472
+ content: z.ZodOptional<z.ZodString>;
473
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
474
+ target: z.ZodString;
475
+ }, "strip", z.ZodTypeAny, {
476
+ path: string;
477
+ type: "registry:page" | "registry:file";
478
+ target: string;
479
+ content?: string | undefined;
480
+ }, {
481
+ path: string;
482
+ type: "registry:page" | "registry:file";
483
+ target: string;
484
+ content?: string | undefined;
485
+ }>, z.ZodObject<{
486
+ path: z.ZodString;
487
+ content: z.ZodOptional<z.ZodString>;
488
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
489
+ target: z.ZodOptional<z.ZodString>;
490
+ }, "strip", z.ZodTypeAny, {
491
+ path: string;
492
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
493
+ content?: string | undefined;
494
+ target?: string | undefined;
495
+ }, {
496
+ path: string;
497
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
498
+ content?: string | undefined;
499
+ target?: string | undefined;
500
+ }>]>;
501
+ declare const registryItemTailwindSchema: z.ZodObject<{
502
+ config: z.ZodOptional<z.ZodObject<{
503
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
504
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
505
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
506
+ }, "strip", z.ZodTypeAny, {
507
+ content?: string[] | undefined;
508
+ theme?: Record<string, any> | undefined;
509
+ plugins?: string[] | undefined;
510
+ }, {
511
+ content?: string[] | undefined;
512
+ theme?: Record<string, any> | undefined;
513
+ plugins?: string[] | undefined;
514
+ }>>;
515
+ }, "strip", z.ZodTypeAny, {
516
+ config?: {
517
+ content?: string[] | undefined;
518
+ theme?: Record<string, any> | undefined;
519
+ plugins?: string[] | undefined;
520
+ } | undefined;
521
+ }, {
522
+ config?: {
523
+ content?: string[] | undefined;
524
+ theme?: Record<string, any> | undefined;
525
+ plugins?: string[] | undefined;
526
+ } | undefined;
527
+ }>;
528
+ declare const registryItemCssVarsSchema: z.ZodObject<{
529
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
530
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
531
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ theme?: Record<string, string> | undefined;
534
+ light?: Record<string, string> | undefined;
535
+ dark?: Record<string, string> | undefined;
536
+ }, {
537
+ theme?: Record<string, string> | undefined;
538
+ light?: Record<string, string> | undefined;
539
+ dark?: Record<string, string> | undefined;
540
+ }>;
541
+ declare const registryItemCssSchema: z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>;
542
+ declare const registryItemEnvVarsSchema: z.ZodRecord<z.ZodString, z.ZodString>;
543
+ declare const registryItemFontSchema: z.ZodObject<{
544
+ family: z.ZodString;
545
+ provider: z.ZodLiteral<"google">;
546
+ import: z.ZodString;
547
+ variable: z.ZodString;
548
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
549
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
550
+ }, "strip", z.ZodTypeAny, {
551
+ family: string;
552
+ provider: "google";
553
+ import: string;
554
+ variable: string;
555
+ weight?: string[] | undefined;
556
+ subsets?: string[] | undefined;
557
+ }, {
558
+ family: string;
559
+ provider: "google";
560
+ import: string;
561
+ variable: string;
562
+ weight?: string[] | undefined;
563
+ subsets?: string[] | undefined;
564
+ }>;
565
+ declare const registryItemCommonSchema: z.ZodObject<{
566
+ $schema: z.ZodOptional<z.ZodString>;
567
+ extends: z.ZodOptional<z.ZodString>;
568
+ name: z.ZodString;
569
+ title: z.ZodOptional<z.ZodString>;
570
+ author: z.ZodOptional<z.ZodString>;
571
+ description: z.ZodOptional<z.ZodString>;
572
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
573
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
574
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
575
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
576
+ path: z.ZodString;
577
+ content: z.ZodOptional<z.ZodString>;
578
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
579
+ target: z.ZodString;
580
+ }, "strip", z.ZodTypeAny, {
581
+ path: string;
582
+ type: "registry:page" | "registry:file";
583
+ target: string;
584
+ content?: string | undefined;
585
+ }, {
586
+ path: string;
587
+ type: "registry:page" | "registry:file";
588
+ target: string;
589
+ content?: string | undefined;
590
+ }>, z.ZodObject<{
591
+ path: z.ZodString;
592
+ content: z.ZodOptional<z.ZodString>;
593
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
594
+ target: z.ZodOptional<z.ZodString>;
595
+ }, "strip", z.ZodTypeAny, {
596
+ path: string;
597
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
598
+ content?: string | undefined;
599
+ target?: string | undefined;
600
+ }, {
601
+ path: string;
602
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
603
+ content?: string | undefined;
604
+ target?: string | undefined;
605
+ }>]>, "many">>;
606
+ tailwind: z.ZodOptional<z.ZodObject<{
607
+ config: z.ZodOptional<z.ZodObject<{
608
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
609
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
610
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
611
+ }, "strip", z.ZodTypeAny, {
612
+ content?: string[] | undefined;
613
+ theme?: Record<string, any> | undefined;
614
+ plugins?: string[] | undefined;
615
+ }, {
616
+ content?: string[] | undefined;
617
+ theme?: Record<string, any> | undefined;
618
+ plugins?: string[] | undefined;
619
+ }>>;
620
+ }, "strip", z.ZodTypeAny, {
621
+ config?: {
622
+ content?: string[] | undefined;
623
+ theme?: Record<string, any> | undefined;
624
+ plugins?: string[] | undefined;
625
+ } | undefined;
626
+ }, {
627
+ config?: {
628
+ content?: string[] | undefined;
629
+ theme?: Record<string, any> | undefined;
630
+ plugins?: string[] | undefined;
631
+ } | undefined;
632
+ }>>;
633
+ cssVars: z.ZodOptional<z.ZodObject<{
634
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
635
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
636
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
637
+ }, "strip", z.ZodTypeAny, {
638
+ theme?: Record<string, string> | undefined;
639
+ light?: Record<string, string> | undefined;
640
+ dark?: Record<string, string> | undefined;
641
+ }, {
642
+ theme?: Record<string, string> | undefined;
643
+ light?: Record<string, string> | undefined;
644
+ dark?: Record<string, string> | undefined;
645
+ }>>;
646
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
647
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
648
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
649
+ docs: z.ZodOptional<z.ZodString>;
650
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
651
+ }, "strip", z.ZodTypeAny, {
652
+ name: string;
653
+ tailwind?: {
654
+ config?: {
655
+ content?: string[] | undefined;
656
+ theme?: Record<string, any> | undefined;
657
+ plugins?: string[] | undefined;
658
+ } | undefined;
659
+ } | undefined;
660
+ $schema?: string | undefined;
661
+ css?: Record<string, any> | undefined;
662
+ extends?: string | undefined;
663
+ title?: string | undefined;
664
+ author?: string | undefined;
665
+ description?: string | undefined;
666
+ dependencies?: string[] | undefined;
667
+ devDependencies?: string[] | undefined;
668
+ registryDependencies?: string[] | undefined;
669
+ files?: ({
670
+ path: string;
671
+ type: "registry:page" | "registry:file";
672
+ target: string;
673
+ content?: string | undefined;
674
+ } | {
675
+ path: string;
676
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
677
+ content?: string | undefined;
678
+ target?: string | undefined;
679
+ })[] | undefined;
680
+ cssVars?: {
681
+ theme?: Record<string, string> | undefined;
682
+ light?: Record<string, string> | undefined;
683
+ dark?: Record<string, string> | undefined;
684
+ } | undefined;
685
+ envVars?: Record<string, string> | undefined;
686
+ meta?: Record<string, any> | undefined;
687
+ docs?: string | undefined;
688
+ categories?: string[] | undefined;
689
+ }, {
690
+ name: string;
691
+ tailwind?: {
692
+ config?: {
693
+ content?: string[] | undefined;
694
+ theme?: Record<string, any> | undefined;
695
+ plugins?: string[] | undefined;
696
+ } | undefined;
697
+ } | undefined;
698
+ $schema?: string | undefined;
699
+ css?: Record<string, any> | undefined;
700
+ extends?: string | undefined;
701
+ title?: string | undefined;
702
+ author?: string | undefined;
703
+ description?: string | undefined;
704
+ dependencies?: string[] | undefined;
705
+ devDependencies?: string[] | undefined;
706
+ registryDependencies?: string[] | undefined;
707
+ files?: ({
708
+ path: string;
709
+ type: "registry:page" | "registry:file";
710
+ target: string;
711
+ content?: string | undefined;
712
+ } | {
713
+ path: string;
714
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
715
+ content?: string | undefined;
716
+ target?: string | undefined;
717
+ })[] | undefined;
718
+ cssVars?: {
719
+ theme?: Record<string, string> | undefined;
720
+ light?: Record<string, string> | undefined;
721
+ dark?: Record<string, string> | undefined;
722
+ } | undefined;
723
+ envVars?: Record<string, string> | undefined;
724
+ meta?: Record<string, any> | undefined;
725
+ docs?: string | undefined;
726
+ categories?: string[] | undefined;
727
+ }>;
728
+ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
729
+ $schema: z.ZodOptional<z.ZodString>;
730
+ extends: z.ZodOptional<z.ZodString>;
731
+ name: z.ZodString;
732
+ title: z.ZodOptional<z.ZodString>;
733
+ author: z.ZodOptional<z.ZodString>;
734
+ description: z.ZodOptional<z.ZodString>;
735
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
736
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
737
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
738
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
739
+ path: z.ZodString;
740
+ content: z.ZodOptional<z.ZodString>;
741
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
742
+ target: z.ZodString;
743
+ }, "strip", z.ZodTypeAny, {
744
+ path: string;
745
+ type: "registry:page" | "registry:file";
746
+ target: string;
747
+ content?: string | undefined;
748
+ }, {
749
+ path: string;
750
+ type: "registry:page" | "registry:file";
751
+ target: string;
752
+ content?: string | undefined;
753
+ }>, z.ZodObject<{
754
+ path: z.ZodString;
755
+ content: z.ZodOptional<z.ZodString>;
756
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
757
+ target: z.ZodOptional<z.ZodString>;
758
+ }, "strip", z.ZodTypeAny, {
759
+ path: string;
760
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
761
+ content?: string | undefined;
762
+ target?: string | undefined;
763
+ }, {
764
+ path: string;
765
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
766
+ content?: string | undefined;
767
+ target?: string | undefined;
768
+ }>]>, "many">>;
769
+ tailwind: z.ZodOptional<z.ZodObject<{
770
+ config: z.ZodOptional<z.ZodObject<{
771
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
772
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
773
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
774
+ }, "strip", z.ZodTypeAny, {
775
+ content?: string[] | undefined;
776
+ theme?: Record<string, any> | undefined;
777
+ plugins?: string[] | undefined;
778
+ }, {
779
+ content?: string[] | undefined;
780
+ theme?: Record<string, any> | undefined;
781
+ plugins?: string[] | undefined;
782
+ }>>;
783
+ }, "strip", z.ZodTypeAny, {
784
+ config?: {
785
+ content?: string[] | undefined;
786
+ theme?: Record<string, any> | undefined;
787
+ plugins?: string[] | undefined;
788
+ } | undefined;
789
+ }, {
790
+ config?: {
791
+ content?: string[] | undefined;
792
+ theme?: Record<string, any> | undefined;
793
+ plugins?: string[] | undefined;
794
+ } | undefined;
795
+ }>>;
796
+ cssVars: z.ZodOptional<z.ZodObject<{
797
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
798
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
799
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
800
+ }, "strip", z.ZodTypeAny, {
801
+ theme?: Record<string, string> | undefined;
802
+ light?: Record<string, string> | undefined;
803
+ dark?: Record<string, string> | undefined;
804
+ }, {
805
+ theme?: Record<string, string> | undefined;
806
+ light?: Record<string, string> | undefined;
807
+ dark?: Record<string, string> | undefined;
808
+ }>>;
809
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
810
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
811
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
812
+ docs: z.ZodOptional<z.ZodString>;
813
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
814
+ } & {
815
+ type: z.ZodLiteral<"registry:base">;
816
+ config: z.ZodOptional<z.ZodObject<{
817
+ $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
818
+ style: z.ZodOptional<z.ZodString>;
819
+ rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
820
+ tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
821
+ tailwind: z.ZodOptional<z.ZodObject<{
822
+ config: z.ZodOptional<z.ZodOptional<z.ZodString>>;
823
+ css: z.ZodOptional<z.ZodString>;
824
+ baseColor: z.ZodOptional<z.ZodString>;
825
+ cssVariables: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
826
+ prefix: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
827
+ }, "strip", z.ZodTypeAny, {
828
+ config?: string | undefined;
829
+ css?: string | undefined;
830
+ baseColor?: string | undefined;
831
+ cssVariables?: boolean | undefined;
832
+ prefix?: string | undefined;
833
+ }, {
834
+ config?: string | undefined;
835
+ css?: string | undefined;
836
+ baseColor?: string | undefined;
837
+ cssVariables?: boolean | undefined;
838
+ prefix?: string | undefined;
839
+ }>>;
840
+ iconLibrary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
841
+ menuColor: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>>;
842
+ menuAccent: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>>;
843
+ aliases: z.ZodOptional<z.ZodObject<{
844
+ components: z.ZodOptional<z.ZodString>;
845
+ utils: z.ZodOptional<z.ZodString>;
846
+ ui: z.ZodOptional<z.ZodOptional<z.ZodString>>;
847
+ lib: z.ZodOptional<z.ZodOptional<z.ZodString>>;
848
+ hooks: z.ZodOptional<z.ZodOptional<z.ZodString>>;
849
+ }, "strip", z.ZodTypeAny, {
850
+ components?: string | undefined;
851
+ ui?: string | undefined;
852
+ utils?: string | undefined;
853
+ lib?: string | undefined;
854
+ hooks?: string | undefined;
855
+ }, {
856
+ components?: string | undefined;
857
+ ui?: string | undefined;
858
+ utils?: string | undefined;
859
+ lib?: string | undefined;
860
+ hooks?: string | undefined;
861
+ }>>;
862
+ registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
863
+ url: z.ZodEffects<z.ZodString, string, string>;
864
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
865
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
866
+ }, "strip", z.ZodTypeAny, {
867
+ url: string;
868
+ params?: Record<string, string> | undefined;
869
+ headers?: Record<string, string> | undefined;
870
+ }, {
871
+ url: string;
872
+ params?: Record<string, string> | undefined;
873
+ headers?: Record<string, string> | undefined;
874
+ }>]>>>>;
875
+ }, "strict", z.ZodTypeAny, {
876
+ tailwind?: {
877
+ config?: string | undefined;
878
+ css?: string | undefined;
879
+ baseColor?: string | undefined;
880
+ cssVariables?: boolean | undefined;
881
+ prefix?: string | undefined;
882
+ } | undefined;
883
+ $schema?: string | undefined;
884
+ style?: string | undefined;
885
+ rsc?: boolean | undefined;
886
+ tsx?: boolean | undefined;
887
+ iconLibrary?: string | undefined;
888
+ menuColor?: "default" | "inverted" | undefined;
889
+ menuAccent?: "subtle" | "bold" | undefined;
890
+ aliases?: {
891
+ components?: string | undefined;
892
+ ui?: string | undefined;
893
+ utils?: string | undefined;
894
+ lib?: string | undefined;
895
+ hooks?: string | undefined;
896
+ } | undefined;
897
+ registries?: Record<string, string | {
898
+ url: string;
899
+ params?: Record<string, string> | undefined;
900
+ headers?: Record<string, string> | undefined;
901
+ }> | undefined;
902
+ }, {
903
+ tailwind?: {
904
+ config?: string | undefined;
905
+ css?: string | undefined;
906
+ baseColor?: string | undefined;
907
+ cssVariables?: boolean | undefined;
908
+ prefix?: string | undefined;
909
+ } | undefined;
910
+ $schema?: string | undefined;
911
+ style?: string | undefined;
912
+ rsc?: boolean | undefined;
913
+ tsx?: boolean | undefined;
914
+ iconLibrary?: string | undefined;
915
+ menuColor?: "default" | "inverted" | undefined;
916
+ menuAccent?: "subtle" | "bold" | undefined;
917
+ aliases?: {
918
+ components?: string | undefined;
919
+ ui?: string | undefined;
920
+ utils?: string | undefined;
921
+ lib?: string | undefined;
922
+ hooks?: string | undefined;
923
+ } | undefined;
924
+ registries?: Record<string, string | {
925
+ url: string;
926
+ params?: Record<string, string> | undefined;
927
+ headers?: Record<string, string> | undefined;
928
+ }> | undefined;
929
+ }>>;
930
+ }, "strip", z.ZodTypeAny, {
931
+ type: "registry:base";
932
+ name: string;
933
+ tailwind?: {
934
+ config?: {
935
+ content?: string[] | undefined;
936
+ theme?: Record<string, any> | undefined;
937
+ plugins?: string[] | undefined;
938
+ } | undefined;
939
+ } | undefined;
940
+ $schema?: string | undefined;
941
+ config?: {
942
+ tailwind?: {
943
+ config?: string | undefined;
944
+ css?: string | undefined;
945
+ baseColor?: string | undefined;
946
+ cssVariables?: boolean | undefined;
947
+ prefix?: string | undefined;
948
+ } | undefined;
949
+ $schema?: string | undefined;
950
+ style?: string | undefined;
951
+ rsc?: boolean | undefined;
952
+ tsx?: boolean | undefined;
953
+ iconLibrary?: string | undefined;
954
+ menuColor?: "default" | "inverted" | undefined;
955
+ menuAccent?: "subtle" | "bold" | undefined;
956
+ aliases?: {
957
+ components?: string | undefined;
958
+ ui?: string | undefined;
959
+ utils?: string | undefined;
960
+ lib?: string | undefined;
961
+ hooks?: string | undefined;
962
+ } | undefined;
963
+ registries?: Record<string, string | {
964
+ url: string;
965
+ params?: Record<string, string> | undefined;
966
+ headers?: Record<string, string> | undefined;
967
+ }> | undefined;
968
+ } | undefined;
969
+ css?: Record<string, any> | undefined;
970
+ extends?: string | undefined;
971
+ title?: string | undefined;
972
+ author?: string | undefined;
973
+ description?: string | undefined;
974
+ dependencies?: string[] | undefined;
975
+ devDependencies?: string[] | undefined;
976
+ registryDependencies?: string[] | undefined;
977
+ files?: ({
978
+ path: string;
979
+ type: "registry:page" | "registry:file";
980
+ target: string;
981
+ content?: string | undefined;
982
+ } | {
983
+ path: string;
984
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
985
+ content?: string | undefined;
986
+ target?: string | undefined;
987
+ })[] | undefined;
988
+ cssVars?: {
989
+ theme?: Record<string, string> | undefined;
990
+ light?: Record<string, string> | undefined;
991
+ dark?: Record<string, string> | undefined;
992
+ } | undefined;
993
+ envVars?: Record<string, string> | undefined;
994
+ meta?: Record<string, any> | undefined;
995
+ docs?: string | undefined;
996
+ categories?: string[] | undefined;
997
+ }, {
998
+ type: "registry:base";
999
+ name: string;
1000
+ tailwind?: {
1001
+ config?: {
1002
+ content?: string[] | undefined;
1003
+ theme?: Record<string, any> | undefined;
1004
+ plugins?: string[] | undefined;
1005
+ } | undefined;
1006
+ } | undefined;
1007
+ $schema?: string | undefined;
1008
+ config?: {
1009
+ tailwind?: {
1010
+ config?: string | undefined;
1011
+ css?: string | undefined;
1012
+ baseColor?: string | undefined;
1013
+ cssVariables?: boolean | undefined;
1014
+ prefix?: string | undefined;
1015
+ } | undefined;
1016
+ $schema?: string | undefined;
1017
+ style?: string | undefined;
1018
+ rsc?: boolean | undefined;
1019
+ tsx?: boolean | undefined;
1020
+ iconLibrary?: string | undefined;
1021
+ menuColor?: "default" | "inverted" | undefined;
1022
+ menuAccent?: "subtle" | "bold" | undefined;
1023
+ aliases?: {
1024
+ components?: string | undefined;
1025
+ ui?: string | undefined;
1026
+ utils?: string | undefined;
1027
+ lib?: string | undefined;
1028
+ hooks?: string | undefined;
1029
+ } | undefined;
1030
+ registries?: Record<string, string | {
1031
+ url: string;
1032
+ params?: Record<string, string> | undefined;
1033
+ headers?: Record<string, string> | undefined;
1034
+ }> | undefined;
1035
+ } | undefined;
1036
+ css?: Record<string, any> | undefined;
1037
+ extends?: string | undefined;
1038
+ title?: string | undefined;
1039
+ author?: string | undefined;
1040
+ description?: string | undefined;
1041
+ dependencies?: string[] | undefined;
1042
+ devDependencies?: string[] | undefined;
1043
+ registryDependencies?: string[] | undefined;
1044
+ files?: ({
1045
+ path: string;
1046
+ type: "registry:page" | "registry:file";
1047
+ target: string;
1048
+ content?: string | undefined;
1049
+ } | {
1050
+ path: string;
1051
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1052
+ content?: string | undefined;
1053
+ target?: string | undefined;
1054
+ })[] | undefined;
1055
+ cssVars?: {
1056
+ theme?: Record<string, string> | undefined;
1057
+ light?: Record<string, string> | undefined;
1058
+ dark?: Record<string, string> | undefined;
1059
+ } | undefined;
1060
+ envVars?: Record<string, string> | undefined;
1061
+ meta?: Record<string, any> | undefined;
1062
+ docs?: string | undefined;
1063
+ categories?: string[] | undefined;
1064
+ }>, z.ZodObject<{
1065
+ $schema: z.ZodOptional<z.ZodString>;
1066
+ extends: z.ZodOptional<z.ZodString>;
1067
+ name: z.ZodString;
1068
+ title: z.ZodOptional<z.ZodString>;
1069
+ author: z.ZodOptional<z.ZodString>;
1070
+ description: z.ZodOptional<z.ZodString>;
1071
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1072
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1073
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1074
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1075
+ path: z.ZodString;
1076
+ content: z.ZodOptional<z.ZodString>;
1077
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1078
+ target: z.ZodString;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ path: string;
1081
+ type: "registry:page" | "registry:file";
1082
+ target: string;
1083
+ content?: string | undefined;
1084
+ }, {
1085
+ path: string;
1086
+ type: "registry:page" | "registry:file";
1087
+ target: string;
1088
+ content?: string | undefined;
1089
+ }>, z.ZodObject<{
1090
+ path: z.ZodString;
1091
+ content: z.ZodOptional<z.ZodString>;
1092
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1093
+ target: z.ZodOptional<z.ZodString>;
1094
+ }, "strip", z.ZodTypeAny, {
1095
+ path: string;
1096
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1097
+ content?: string | undefined;
1098
+ target?: string | undefined;
1099
+ }, {
1100
+ path: string;
1101
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1102
+ content?: string | undefined;
1103
+ target?: string | undefined;
1104
+ }>]>, "many">>;
1105
+ tailwind: z.ZodOptional<z.ZodObject<{
1106
+ config: z.ZodOptional<z.ZodObject<{
1107
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1108
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1109
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1110
+ }, "strip", z.ZodTypeAny, {
1111
+ content?: string[] | undefined;
1112
+ theme?: Record<string, any> | undefined;
1113
+ plugins?: string[] | undefined;
1114
+ }, {
1115
+ content?: string[] | undefined;
1116
+ theme?: Record<string, any> | undefined;
1117
+ plugins?: string[] | undefined;
1118
+ }>>;
1119
+ }, "strip", z.ZodTypeAny, {
1120
+ config?: {
1121
+ content?: string[] | undefined;
1122
+ theme?: Record<string, any> | undefined;
1123
+ plugins?: string[] | undefined;
1124
+ } | undefined;
1125
+ }, {
1126
+ config?: {
1127
+ content?: string[] | undefined;
1128
+ theme?: Record<string, any> | undefined;
1129
+ plugins?: string[] | undefined;
1130
+ } | undefined;
1131
+ }>>;
1132
+ cssVars: z.ZodOptional<z.ZodObject<{
1133
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1134
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1135
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1136
+ }, "strip", z.ZodTypeAny, {
1137
+ theme?: Record<string, string> | undefined;
1138
+ light?: Record<string, string> | undefined;
1139
+ dark?: Record<string, string> | undefined;
1140
+ }, {
1141
+ theme?: Record<string, string> | undefined;
1142
+ light?: Record<string, string> | undefined;
1143
+ dark?: Record<string, string> | undefined;
1144
+ }>>;
1145
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1146
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1147
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1148
+ docs: z.ZodOptional<z.ZodString>;
1149
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1150
+ } & {
1151
+ type: z.ZodLiteral<"registry:font">;
1152
+ font: z.ZodObject<{
1153
+ family: z.ZodString;
1154
+ provider: z.ZodLiteral<"google">;
1155
+ import: z.ZodString;
1156
+ variable: z.ZodString;
1157
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1158
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1159
+ }, "strip", z.ZodTypeAny, {
1160
+ family: string;
1161
+ provider: "google";
1162
+ import: string;
1163
+ variable: string;
1164
+ weight?: string[] | undefined;
1165
+ subsets?: string[] | undefined;
1166
+ }, {
1167
+ family: string;
1168
+ provider: "google";
1169
+ import: string;
1170
+ variable: string;
1171
+ weight?: string[] | undefined;
1172
+ subsets?: string[] | undefined;
1173
+ }>;
1174
+ }, "strip", z.ZodTypeAny, {
1175
+ type: "registry:font";
1176
+ name: string;
1177
+ font: {
1178
+ family: string;
1179
+ provider: "google";
1180
+ import: string;
1181
+ variable: string;
1182
+ weight?: string[] | undefined;
1183
+ subsets?: string[] | undefined;
1184
+ };
1185
+ tailwind?: {
1186
+ config?: {
1187
+ content?: string[] | undefined;
1188
+ theme?: Record<string, any> | undefined;
1189
+ plugins?: string[] | undefined;
1190
+ } | undefined;
1191
+ } | undefined;
1192
+ $schema?: string | undefined;
1193
+ css?: Record<string, any> | undefined;
1194
+ extends?: string | undefined;
1195
+ title?: string | undefined;
1196
+ author?: string | undefined;
1197
+ description?: string | undefined;
1198
+ dependencies?: string[] | undefined;
1199
+ devDependencies?: string[] | undefined;
1200
+ registryDependencies?: string[] | undefined;
1201
+ files?: ({
1202
+ path: string;
1203
+ type: "registry:page" | "registry:file";
1204
+ target: string;
1205
+ content?: string | undefined;
1206
+ } | {
1207
+ path: string;
1208
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1209
+ content?: string | undefined;
1210
+ target?: string | undefined;
1211
+ })[] | undefined;
1212
+ cssVars?: {
1213
+ theme?: Record<string, string> | undefined;
1214
+ light?: Record<string, string> | undefined;
1215
+ dark?: Record<string, string> | undefined;
1216
+ } | undefined;
1217
+ envVars?: Record<string, string> | undefined;
1218
+ meta?: Record<string, any> | undefined;
1219
+ docs?: string | undefined;
1220
+ categories?: string[] | undefined;
1221
+ }, {
1222
+ type: "registry:font";
1223
+ name: string;
1224
+ font: {
1225
+ family: string;
1226
+ provider: "google";
1227
+ import: string;
1228
+ variable: string;
1229
+ weight?: string[] | undefined;
1230
+ subsets?: string[] | undefined;
1231
+ };
1232
+ tailwind?: {
1233
+ config?: {
1234
+ content?: string[] | undefined;
1235
+ theme?: Record<string, any> | undefined;
1236
+ plugins?: string[] | undefined;
1237
+ } | undefined;
1238
+ } | undefined;
1239
+ $schema?: string | undefined;
1240
+ css?: Record<string, any> | undefined;
1241
+ extends?: string | undefined;
1242
+ title?: string | undefined;
1243
+ author?: string | undefined;
1244
+ description?: string | undefined;
1245
+ dependencies?: string[] | undefined;
1246
+ devDependencies?: string[] | undefined;
1247
+ registryDependencies?: string[] | undefined;
1248
+ files?: ({
1249
+ path: string;
1250
+ type: "registry:page" | "registry:file";
1251
+ target: string;
1252
+ content?: string | undefined;
1253
+ } | {
1254
+ path: string;
1255
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1256
+ content?: string | undefined;
1257
+ target?: string | undefined;
1258
+ })[] | undefined;
1259
+ cssVars?: {
1260
+ theme?: Record<string, string> | undefined;
1261
+ light?: Record<string, string> | undefined;
1262
+ dark?: Record<string, string> | undefined;
1263
+ } | undefined;
1264
+ envVars?: Record<string, string> | undefined;
1265
+ meta?: Record<string, any> | undefined;
1266
+ docs?: string | undefined;
1267
+ categories?: string[] | undefined;
1268
+ }>, z.ZodObject<{
1269
+ $schema: z.ZodOptional<z.ZodString>;
1270
+ extends: z.ZodOptional<z.ZodString>;
1271
+ name: z.ZodString;
1272
+ title: z.ZodOptional<z.ZodString>;
1273
+ author: z.ZodOptional<z.ZodString>;
1274
+ description: z.ZodOptional<z.ZodString>;
1275
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1276
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1277
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1278
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1279
+ path: z.ZodString;
1280
+ content: z.ZodOptional<z.ZodString>;
1281
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1282
+ target: z.ZodString;
1283
+ }, "strip", z.ZodTypeAny, {
1284
+ path: string;
1285
+ type: "registry:page" | "registry:file";
1286
+ target: string;
1287
+ content?: string | undefined;
1288
+ }, {
1289
+ path: string;
1290
+ type: "registry:page" | "registry:file";
1291
+ target: string;
1292
+ content?: string | undefined;
1293
+ }>, z.ZodObject<{
1294
+ path: z.ZodString;
1295
+ content: z.ZodOptional<z.ZodString>;
1296
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1297
+ target: z.ZodOptional<z.ZodString>;
1298
+ }, "strip", z.ZodTypeAny, {
1299
+ path: string;
1300
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1301
+ content?: string | undefined;
1302
+ target?: string | undefined;
1303
+ }, {
1304
+ path: string;
1305
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1306
+ content?: string | undefined;
1307
+ target?: string | undefined;
1308
+ }>]>, "many">>;
1309
+ tailwind: z.ZodOptional<z.ZodObject<{
1310
+ config: z.ZodOptional<z.ZodObject<{
1311
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1312
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1313
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1314
+ }, "strip", z.ZodTypeAny, {
1315
+ content?: string[] | undefined;
1316
+ theme?: Record<string, any> | undefined;
1317
+ plugins?: string[] | undefined;
1318
+ }, {
1319
+ content?: string[] | undefined;
1320
+ theme?: Record<string, any> | undefined;
1321
+ plugins?: string[] | undefined;
1322
+ }>>;
1323
+ }, "strip", z.ZodTypeAny, {
1324
+ config?: {
1325
+ content?: string[] | undefined;
1326
+ theme?: Record<string, any> | undefined;
1327
+ plugins?: string[] | undefined;
1328
+ } | undefined;
1329
+ }, {
1330
+ config?: {
1331
+ content?: string[] | undefined;
1332
+ theme?: Record<string, any> | undefined;
1333
+ plugins?: string[] | undefined;
1334
+ } | undefined;
1335
+ }>>;
1336
+ cssVars: z.ZodOptional<z.ZodObject<{
1337
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1338
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1339
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1340
+ }, "strip", z.ZodTypeAny, {
1341
+ theme?: Record<string, string> | undefined;
1342
+ light?: Record<string, string> | undefined;
1343
+ dark?: Record<string, string> | undefined;
1344
+ }, {
1345
+ theme?: Record<string, string> | undefined;
1346
+ light?: Record<string, string> | undefined;
1347
+ dark?: Record<string, string> | undefined;
1348
+ }>>;
1349
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1350
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1351
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1352
+ docs: z.ZodOptional<z.ZodString>;
1353
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1354
+ } & {
1355
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
1356
+ }, "strip", z.ZodTypeAny, {
1357
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1358
+ name: string;
1359
+ tailwind?: {
1360
+ config?: {
1361
+ content?: string[] | undefined;
1362
+ theme?: Record<string, any> | undefined;
1363
+ plugins?: string[] | undefined;
1364
+ } | undefined;
1365
+ } | undefined;
1366
+ $schema?: string | undefined;
1367
+ css?: Record<string, any> | undefined;
1368
+ extends?: string | undefined;
1369
+ title?: string | undefined;
1370
+ author?: string | undefined;
1371
+ description?: string | undefined;
1372
+ dependencies?: string[] | undefined;
1373
+ devDependencies?: string[] | undefined;
1374
+ registryDependencies?: string[] | undefined;
1375
+ files?: ({
1376
+ path: string;
1377
+ type: "registry:page" | "registry:file";
1378
+ target: string;
1379
+ content?: string | undefined;
1380
+ } | {
1381
+ path: string;
1382
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1383
+ content?: string | undefined;
1384
+ target?: string | undefined;
1385
+ })[] | undefined;
1386
+ cssVars?: {
1387
+ theme?: Record<string, string> | undefined;
1388
+ light?: Record<string, string> | undefined;
1389
+ dark?: Record<string, string> | undefined;
1390
+ } | undefined;
1391
+ envVars?: Record<string, string> | undefined;
1392
+ meta?: Record<string, any> | undefined;
1393
+ docs?: string | undefined;
1394
+ categories?: string[] | undefined;
1395
+ }, {
1396
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1397
+ name: string;
1398
+ tailwind?: {
1399
+ config?: {
1400
+ content?: string[] | undefined;
1401
+ theme?: Record<string, any> | undefined;
1402
+ plugins?: string[] | undefined;
1403
+ } | undefined;
1404
+ } | undefined;
1405
+ $schema?: string | undefined;
1406
+ css?: Record<string, any> | undefined;
1407
+ extends?: string | undefined;
1408
+ title?: string | undefined;
1409
+ author?: string | undefined;
1410
+ description?: string | undefined;
1411
+ dependencies?: string[] | undefined;
1412
+ devDependencies?: string[] | undefined;
1413
+ registryDependencies?: string[] | undefined;
1414
+ files?: ({
1415
+ path: string;
1416
+ type: "registry:page" | "registry:file";
1417
+ target: string;
1418
+ content?: string | undefined;
1419
+ } | {
1420
+ path: string;
1421
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1422
+ content?: string | undefined;
1423
+ target?: string | undefined;
1424
+ })[] | undefined;
1425
+ cssVars?: {
1426
+ theme?: Record<string, string> | undefined;
1427
+ light?: Record<string, string> | undefined;
1428
+ dark?: Record<string, string> | undefined;
1429
+ } | undefined;
1430
+ envVars?: Record<string, string> | undefined;
1431
+ meta?: Record<string, any> | undefined;
1432
+ docs?: string | undefined;
1433
+ categories?: string[] | undefined;
1434
+ }>]>;
1435
+ type RegistryItem = z.infer<typeof registryItemSchema>;
1436
+ type RegistryBaseItem = Extract<RegistryItem, {
1437
+ type: "registry:base";
1438
+ }>;
1439
+ type RegistryFontItem = Extract<RegistryItem, {
1440
+ type: "registry:font";
1441
+ }>;
1442
+ declare const registrySchema: z.ZodObject<{
1443
+ name: z.ZodString;
1444
+ homepage: z.ZodString;
1445
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1446
+ $schema: z.ZodOptional<z.ZodString>;
1447
+ extends: z.ZodOptional<z.ZodString>;
1448
+ name: z.ZodString;
1449
+ title: z.ZodOptional<z.ZodString>;
1450
+ author: z.ZodOptional<z.ZodString>;
1451
+ description: z.ZodOptional<z.ZodString>;
1452
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1453
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1454
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1455
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1456
+ path: z.ZodString;
1457
+ content: z.ZodOptional<z.ZodString>;
1458
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1459
+ target: z.ZodString;
1460
+ }, "strip", z.ZodTypeAny, {
1461
+ path: string;
1462
+ type: "registry:page" | "registry:file";
1463
+ target: string;
1464
+ content?: string | undefined;
1465
+ }, {
1466
+ path: string;
1467
+ type: "registry:page" | "registry:file";
1468
+ target: string;
1469
+ content?: string | undefined;
1470
+ }>, z.ZodObject<{
1471
+ path: z.ZodString;
1472
+ content: z.ZodOptional<z.ZodString>;
1473
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1474
+ target: z.ZodOptional<z.ZodString>;
1475
+ }, "strip", z.ZodTypeAny, {
1476
+ path: string;
1477
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1478
+ content?: string | undefined;
1479
+ target?: string | undefined;
1480
+ }, {
1481
+ path: string;
1482
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1483
+ content?: string | undefined;
1484
+ target?: string | undefined;
1485
+ }>]>, "many">>;
1486
+ tailwind: z.ZodOptional<z.ZodObject<{
1487
+ config: z.ZodOptional<z.ZodObject<{
1488
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1489
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1490
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1491
+ }, "strip", z.ZodTypeAny, {
1492
+ content?: string[] | undefined;
1493
+ theme?: Record<string, any> | undefined;
1494
+ plugins?: string[] | undefined;
1495
+ }, {
1496
+ content?: string[] | undefined;
1497
+ theme?: Record<string, any> | undefined;
1498
+ plugins?: string[] | undefined;
1499
+ }>>;
1500
+ }, "strip", z.ZodTypeAny, {
1501
+ config?: {
1502
+ content?: string[] | undefined;
1503
+ theme?: Record<string, any> | undefined;
1504
+ plugins?: string[] | undefined;
1505
+ } | undefined;
1506
+ }, {
1507
+ config?: {
1508
+ content?: string[] | undefined;
1509
+ theme?: Record<string, any> | undefined;
1510
+ plugins?: string[] | undefined;
1511
+ } | undefined;
1512
+ }>>;
1513
+ cssVars: z.ZodOptional<z.ZodObject<{
1514
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1515
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1516
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1517
+ }, "strip", z.ZodTypeAny, {
1518
+ theme?: Record<string, string> | undefined;
1519
+ light?: Record<string, string> | undefined;
1520
+ dark?: Record<string, string> | undefined;
1521
+ }, {
1522
+ theme?: Record<string, string> | undefined;
1523
+ light?: Record<string, string> | undefined;
1524
+ dark?: Record<string, string> | undefined;
1525
+ }>>;
1526
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1527
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1528
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1529
+ docs: z.ZodOptional<z.ZodString>;
1530
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1531
+ } & {
1532
+ type: z.ZodLiteral<"registry:base">;
1533
+ config: z.ZodOptional<z.ZodObject<{
1534
+ $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1535
+ style: z.ZodOptional<z.ZodString>;
1536
+ rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1537
+ tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1538
+ tailwind: z.ZodOptional<z.ZodObject<{
1539
+ config: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1540
+ css: z.ZodOptional<z.ZodString>;
1541
+ baseColor: z.ZodOptional<z.ZodString>;
1542
+ cssVariables: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1543
+ prefix: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
1544
+ }, "strip", z.ZodTypeAny, {
1545
+ config?: string | undefined;
1546
+ css?: string | undefined;
1547
+ baseColor?: string | undefined;
1548
+ cssVariables?: boolean | undefined;
1549
+ prefix?: string | undefined;
1550
+ }, {
1551
+ config?: string | undefined;
1552
+ css?: string | undefined;
1553
+ baseColor?: string | undefined;
1554
+ cssVariables?: boolean | undefined;
1555
+ prefix?: string | undefined;
1556
+ }>>;
1557
+ iconLibrary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1558
+ menuColor: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>>;
1559
+ menuAccent: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>>;
1560
+ aliases: z.ZodOptional<z.ZodObject<{
1561
+ components: z.ZodOptional<z.ZodString>;
1562
+ utils: z.ZodOptional<z.ZodString>;
1563
+ ui: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1564
+ lib: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1565
+ hooks: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1566
+ }, "strip", z.ZodTypeAny, {
1567
+ components?: string | undefined;
1568
+ ui?: string | undefined;
1569
+ utils?: string | undefined;
1570
+ lib?: string | undefined;
1571
+ hooks?: string | undefined;
1572
+ }, {
1573
+ components?: string | undefined;
1574
+ ui?: string | undefined;
1575
+ utils?: string | undefined;
1576
+ lib?: string | undefined;
1577
+ hooks?: string | undefined;
1578
+ }>>;
1579
+ registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1580
+ url: z.ZodEffects<z.ZodString, string, string>;
1581
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1582
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1583
+ }, "strip", z.ZodTypeAny, {
1584
+ url: string;
1585
+ params?: Record<string, string> | undefined;
1586
+ headers?: Record<string, string> | undefined;
1587
+ }, {
1588
+ url: string;
1589
+ params?: Record<string, string> | undefined;
1590
+ headers?: Record<string, string> | undefined;
1591
+ }>]>>>>;
1592
+ }, "strict", z.ZodTypeAny, {
1593
+ tailwind?: {
1594
+ config?: string | undefined;
1595
+ css?: string | undefined;
1596
+ baseColor?: string | undefined;
1597
+ cssVariables?: boolean | undefined;
1598
+ prefix?: string | undefined;
1599
+ } | undefined;
1600
+ $schema?: string | undefined;
1601
+ style?: string | undefined;
1602
+ rsc?: boolean | undefined;
1603
+ tsx?: boolean | undefined;
1604
+ iconLibrary?: string | undefined;
1605
+ menuColor?: "default" | "inverted" | undefined;
1606
+ menuAccent?: "subtle" | "bold" | undefined;
1607
+ aliases?: {
1608
+ components?: string | undefined;
1609
+ ui?: string | undefined;
1610
+ utils?: string | undefined;
1611
+ lib?: string | undefined;
1612
+ hooks?: string | undefined;
1613
+ } | undefined;
1614
+ registries?: Record<string, string | {
1615
+ url: string;
1616
+ params?: Record<string, string> | undefined;
1617
+ headers?: Record<string, string> | undefined;
1618
+ }> | undefined;
1619
+ }, {
1620
+ tailwind?: {
1621
+ config?: string | undefined;
1622
+ css?: string | undefined;
1623
+ baseColor?: string | undefined;
1624
+ cssVariables?: boolean | undefined;
1625
+ prefix?: string | undefined;
1626
+ } | undefined;
1627
+ $schema?: string | undefined;
1628
+ style?: string | undefined;
1629
+ rsc?: boolean | undefined;
1630
+ tsx?: boolean | undefined;
1631
+ iconLibrary?: string | undefined;
1632
+ menuColor?: "default" | "inverted" | undefined;
1633
+ menuAccent?: "subtle" | "bold" | undefined;
1634
+ aliases?: {
1635
+ components?: string | undefined;
1636
+ ui?: string | undefined;
1637
+ utils?: string | undefined;
1638
+ lib?: string | undefined;
1639
+ hooks?: string | undefined;
1640
+ } | undefined;
1641
+ registries?: Record<string, string | {
1642
+ url: string;
1643
+ params?: Record<string, string> | undefined;
1644
+ headers?: Record<string, string> | undefined;
1645
+ }> | undefined;
1646
+ }>>;
1647
+ }, "strip", z.ZodTypeAny, {
1648
+ type: "registry:base";
1649
+ name: string;
1650
+ tailwind?: {
1651
+ config?: {
1652
+ content?: string[] | undefined;
1653
+ theme?: Record<string, any> | undefined;
1654
+ plugins?: string[] | undefined;
1655
+ } | undefined;
1656
+ } | undefined;
1657
+ $schema?: string | undefined;
1658
+ config?: {
1659
+ tailwind?: {
1660
+ config?: string | undefined;
1661
+ css?: string | undefined;
1662
+ baseColor?: string | undefined;
1663
+ cssVariables?: boolean | undefined;
1664
+ prefix?: string | undefined;
1665
+ } | undefined;
1666
+ $schema?: string | undefined;
1667
+ style?: string | undefined;
1668
+ rsc?: boolean | undefined;
1669
+ tsx?: boolean | undefined;
1670
+ iconLibrary?: string | undefined;
1671
+ menuColor?: "default" | "inverted" | undefined;
1672
+ menuAccent?: "subtle" | "bold" | undefined;
1673
+ aliases?: {
1674
+ components?: string | undefined;
1675
+ ui?: string | undefined;
1676
+ utils?: string | undefined;
1677
+ lib?: string | undefined;
1678
+ hooks?: string | undefined;
1679
+ } | undefined;
1680
+ registries?: Record<string, string | {
1681
+ url: string;
1682
+ params?: Record<string, string> | undefined;
1683
+ headers?: Record<string, string> | undefined;
1684
+ }> | undefined;
1685
+ } | undefined;
1686
+ css?: Record<string, any> | undefined;
1687
+ extends?: string | undefined;
1688
+ title?: string | undefined;
1689
+ author?: string | undefined;
1690
+ description?: string | undefined;
1691
+ dependencies?: string[] | undefined;
1692
+ devDependencies?: string[] | undefined;
1693
+ registryDependencies?: string[] | undefined;
1694
+ files?: ({
1695
+ path: string;
1696
+ type: "registry:page" | "registry:file";
1697
+ target: string;
1698
+ content?: string | undefined;
1699
+ } | {
1700
+ path: string;
1701
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1702
+ content?: string | undefined;
1703
+ target?: string | undefined;
1704
+ })[] | undefined;
1705
+ cssVars?: {
1706
+ theme?: Record<string, string> | undefined;
1707
+ light?: Record<string, string> | undefined;
1708
+ dark?: Record<string, string> | undefined;
1709
+ } | undefined;
1710
+ envVars?: Record<string, string> | undefined;
1711
+ meta?: Record<string, any> | undefined;
1712
+ docs?: string | undefined;
1713
+ categories?: string[] | undefined;
1714
+ }, {
1715
+ type: "registry:base";
1716
+ name: string;
1717
+ tailwind?: {
1718
+ config?: {
1719
+ content?: string[] | undefined;
1720
+ theme?: Record<string, any> | undefined;
1721
+ plugins?: string[] | undefined;
1722
+ } | undefined;
1723
+ } | undefined;
1724
+ $schema?: string | undefined;
1725
+ config?: {
1726
+ tailwind?: {
1727
+ config?: string | undefined;
1728
+ css?: string | undefined;
1729
+ baseColor?: string | undefined;
1730
+ cssVariables?: boolean | undefined;
1731
+ prefix?: string | undefined;
1732
+ } | undefined;
1733
+ $schema?: string | undefined;
1734
+ style?: string | undefined;
1735
+ rsc?: boolean | undefined;
1736
+ tsx?: boolean | undefined;
1737
+ iconLibrary?: string | undefined;
1738
+ menuColor?: "default" | "inverted" | undefined;
1739
+ menuAccent?: "subtle" | "bold" | undefined;
1740
+ aliases?: {
1741
+ components?: string | undefined;
1742
+ ui?: string | undefined;
1743
+ utils?: string | undefined;
1744
+ lib?: string | undefined;
1745
+ hooks?: string | undefined;
1746
+ } | undefined;
1747
+ registries?: Record<string, string | {
1748
+ url: string;
1749
+ params?: Record<string, string> | undefined;
1750
+ headers?: Record<string, string> | undefined;
1751
+ }> | undefined;
1752
+ } | undefined;
1753
+ css?: Record<string, any> | undefined;
1754
+ extends?: string | undefined;
1755
+ title?: string | undefined;
1756
+ author?: string | undefined;
1757
+ description?: string | undefined;
1758
+ dependencies?: string[] | undefined;
1759
+ devDependencies?: string[] | undefined;
1760
+ registryDependencies?: string[] | undefined;
1761
+ files?: ({
1762
+ path: string;
1763
+ type: "registry:page" | "registry:file";
1764
+ target: string;
1765
+ content?: string | undefined;
1766
+ } | {
1767
+ path: string;
1768
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1769
+ content?: string | undefined;
1770
+ target?: string | undefined;
1771
+ })[] | undefined;
1772
+ cssVars?: {
1773
+ theme?: Record<string, string> | undefined;
1774
+ light?: Record<string, string> | undefined;
1775
+ dark?: Record<string, string> | undefined;
1776
+ } | undefined;
1777
+ envVars?: Record<string, string> | undefined;
1778
+ meta?: Record<string, any> | undefined;
1779
+ docs?: string | undefined;
1780
+ categories?: string[] | undefined;
1781
+ }>, z.ZodObject<{
1782
+ $schema: z.ZodOptional<z.ZodString>;
1783
+ extends: z.ZodOptional<z.ZodString>;
1784
+ name: z.ZodString;
1785
+ title: z.ZodOptional<z.ZodString>;
1786
+ author: z.ZodOptional<z.ZodString>;
1787
+ description: z.ZodOptional<z.ZodString>;
1788
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1789
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1790
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1791
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1792
+ path: z.ZodString;
1793
+ content: z.ZodOptional<z.ZodString>;
1794
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1795
+ target: z.ZodString;
1796
+ }, "strip", z.ZodTypeAny, {
1797
+ path: string;
1798
+ type: "registry:page" | "registry:file";
1799
+ target: string;
1800
+ content?: string | undefined;
1801
+ }, {
1802
+ path: string;
1803
+ type: "registry:page" | "registry:file";
1804
+ target: string;
1805
+ content?: string | undefined;
1806
+ }>, z.ZodObject<{
1807
+ path: z.ZodString;
1808
+ content: z.ZodOptional<z.ZodString>;
1809
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
1810
+ target: z.ZodOptional<z.ZodString>;
1811
+ }, "strip", z.ZodTypeAny, {
1812
+ path: string;
1813
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1814
+ content?: string | undefined;
1815
+ target?: string | undefined;
1816
+ }, {
1817
+ path: string;
1818
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1819
+ content?: string | undefined;
1820
+ target?: string | undefined;
1821
+ }>]>, "many">>;
1822
+ tailwind: z.ZodOptional<z.ZodObject<{
1823
+ config: z.ZodOptional<z.ZodObject<{
1824
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1825
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1826
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1827
+ }, "strip", z.ZodTypeAny, {
1828
+ content?: string[] | undefined;
1829
+ theme?: Record<string, any> | undefined;
1830
+ plugins?: string[] | undefined;
1831
+ }, {
1832
+ content?: string[] | undefined;
1833
+ theme?: Record<string, any> | undefined;
1834
+ plugins?: string[] | undefined;
1835
+ }>>;
1836
+ }, "strip", z.ZodTypeAny, {
1837
+ config?: {
1838
+ content?: string[] | undefined;
1839
+ theme?: Record<string, any> | undefined;
1840
+ plugins?: string[] | undefined;
1841
+ } | undefined;
1842
+ }, {
1843
+ config?: {
1844
+ content?: string[] | undefined;
1845
+ theme?: Record<string, any> | undefined;
1846
+ plugins?: string[] | undefined;
1847
+ } | undefined;
1848
+ }>>;
1849
+ cssVars: z.ZodOptional<z.ZodObject<{
1850
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1851
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1852
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1853
+ }, "strip", z.ZodTypeAny, {
1854
+ theme?: Record<string, string> | undefined;
1855
+ light?: Record<string, string> | undefined;
1856
+ dark?: Record<string, string> | undefined;
1857
+ }, {
1858
+ theme?: Record<string, string> | undefined;
1859
+ light?: Record<string, string> | undefined;
1860
+ dark?: Record<string, string> | undefined;
1861
+ }>>;
1862
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
1863
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1864
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1865
+ docs: z.ZodOptional<z.ZodString>;
1866
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1867
+ } & {
1868
+ type: z.ZodLiteral<"registry:font">;
1869
+ font: z.ZodObject<{
1870
+ family: z.ZodString;
1871
+ provider: z.ZodLiteral<"google">;
1872
+ import: z.ZodString;
1873
+ variable: z.ZodString;
1874
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1875
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1876
+ }, "strip", z.ZodTypeAny, {
1877
+ family: string;
1878
+ provider: "google";
1879
+ import: string;
1880
+ variable: string;
1881
+ weight?: string[] | undefined;
1882
+ subsets?: string[] | undefined;
1883
+ }, {
1884
+ family: string;
1885
+ provider: "google";
1886
+ import: string;
1887
+ variable: string;
1888
+ weight?: string[] | undefined;
1889
+ subsets?: string[] | undefined;
1890
+ }>;
1891
+ }, "strip", z.ZodTypeAny, {
1892
+ type: "registry:font";
1893
+ name: string;
1894
+ font: {
1895
+ family: string;
1896
+ provider: "google";
1897
+ import: string;
1898
+ variable: string;
1899
+ weight?: string[] | undefined;
1900
+ subsets?: string[] | undefined;
1901
+ };
1902
+ tailwind?: {
1903
+ config?: {
1904
+ content?: string[] | undefined;
1905
+ theme?: Record<string, any> | undefined;
1906
+ plugins?: string[] | undefined;
1907
+ } | undefined;
1908
+ } | undefined;
1909
+ $schema?: string | undefined;
1910
+ css?: Record<string, any> | undefined;
1911
+ extends?: string | undefined;
1912
+ title?: string | undefined;
1913
+ author?: string | undefined;
1914
+ description?: string | undefined;
1915
+ dependencies?: string[] | undefined;
1916
+ devDependencies?: string[] | undefined;
1917
+ registryDependencies?: string[] | undefined;
1918
+ files?: ({
1919
+ path: string;
1920
+ type: "registry:page" | "registry:file";
1921
+ target: string;
1922
+ content?: string | undefined;
1923
+ } | {
1924
+ path: string;
1925
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1926
+ content?: string | undefined;
1927
+ target?: string | undefined;
1928
+ })[] | undefined;
1929
+ cssVars?: {
1930
+ theme?: Record<string, string> | undefined;
1931
+ light?: Record<string, string> | undefined;
1932
+ dark?: Record<string, string> | undefined;
1933
+ } | undefined;
1934
+ envVars?: Record<string, string> | undefined;
1935
+ meta?: Record<string, any> | undefined;
1936
+ docs?: string | undefined;
1937
+ categories?: string[] | undefined;
1938
+ }, {
1939
+ type: "registry:font";
1940
+ name: string;
1941
+ font: {
1942
+ family: string;
1943
+ provider: "google";
1944
+ import: string;
1945
+ variable: string;
1946
+ weight?: string[] | undefined;
1947
+ subsets?: string[] | undefined;
1948
+ };
1949
+ tailwind?: {
1950
+ config?: {
1951
+ content?: string[] | undefined;
1952
+ theme?: Record<string, any> | undefined;
1953
+ plugins?: string[] | undefined;
1954
+ } | undefined;
1955
+ } | undefined;
1956
+ $schema?: string | undefined;
1957
+ css?: Record<string, any> | undefined;
1958
+ extends?: string | undefined;
1959
+ title?: string | undefined;
1960
+ author?: string | undefined;
1961
+ description?: string | undefined;
1962
+ dependencies?: string[] | undefined;
1963
+ devDependencies?: string[] | undefined;
1964
+ registryDependencies?: string[] | undefined;
1965
+ files?: ({
1966
+ path: string;
1967
+ type: "registry:page" | "registry:file";
1968
+ target: string;
1969
+ content?: string | undefined;
1970
+ } | {
1971
+ path: string;
1972
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
1973
+ content?: string | undefined;
1974
+ target?: string | undefined;
1975
+ })[] | undefined;
1976
+ cssVars?: {
1977
+ theme?: Record<string, string> | undefined;
1978
+ light?: Record<string, string> | undefined;
1979
+ dark?: Record<string, string> | undefined;
1980
+ } | undefined;
1981
+ envVars?: Record<string, string> | undefined;
1982
+ meta?: Record<string, any> | undefined;
1983
+ docs?: string | undefined;
1984
+ categories?: string[] | undefined;
1985
+ }>, z.ZodObject<{
1986
+ $schema: z.ZodOptional<z.ZodString>;
1987
+ extends: z.ZodOptional<z.ZodString>;
1988
+ name: z.ZodString;
1989
+ title: z.ZodOptional<z.ZodString>;
1990
+ author: z.ZodOptional<z.ZodString>;
1991
+ description: z.ZodOptional<z.ZodString>;
1992
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1993
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1994
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1995
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1996
+ path: z.ZodString;
1997
+ content: z.ZodOptional<z.ZodString>;
1998
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
1999
+ target: z.ZodString;
2000
+ }, "strip", z.ZodTypeAny, {
2001
+ path: string;
2002
+ type: "registry:page" | "registry:file";
2003
+ target: string;
2004
+ content?: string | undefined;
2005
+ }, {
2006
+ path: string;
2007
+ type: "registry:page" | "registry:file";
2008
+ target: string;
2009
+ content?: string | undefined;
2010
+ }>, z.ZodObject<{
2011
+ path: z.ZodString;
2012
+ content: z.ZodOptional<z.ZodString>;
2013
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
2014
+ target: z.ZodOptional<z.ZodString>;
2015
+ }, "strip", z.ZodTypeAny, {
2016
+ path: string;
2017
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2018
+ content?: string | undefined;
2019
+ target?: string | undefined;
2020
+ }, {
2021
+ path: string;
2022
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2023
+ content?: string | undefined;
2024
+ target?: string | undefined;
2025
+ }>]>, "many">>;
2026
+ tailwind: z.ZodOptional<z.ZodObject<{
2027
+ config: z.ZodOptional<z.ZodObject<{
2028
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2029
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2030
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2031
+ }, "strip", z.ZodTypeAny, {
2032
+ content?: string[] | undefined;
2033
+ theme?: Record<string, any> | undefined;
2034
+ plugins?: string[] | undefined;
2035
+ }, {
2036
+ content?: string[] | undefined;
2037
+ theme?: Record<string, any> | undefined;
2038
+ plugins?: string[] | undefined;
2039
+ }>>;
2040
+ }, "strip", z.ZodTypeAny, {
2041
+ config?: {
2042
+ content?: string[] | undefined;
2043
+ theme?: Record<string, any> | undefined;
2044
+ plugins?: string[] | undefined;
2045
+ } | undefined;
2046
+ }, {
2047
+ config?: {
2048
+ content?: string[] | undefined;
2049
+ theme?: Record<string, any> | undefined;
2050
+ plugins?: string[] | undefined;
2051
+ } | undefined;
2052
+ }>>;
2053
+ cssVars: z.ZodOptional<z.ZodObject<{
2054
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2055
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2056
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2057
+ }, "strip", z.ZodTypeAny, {
2058
+ theme?: Record<string, string> | undefined;
2059
+ light?: Record<string, string> | undefined;
2060
+ dark?: Record<string, string> | undefined;
2061
+ }, {
2062
+ theme?: Record<string, string> | undefined;
2063
+ light?: Record<string, string> | undefined;
2064
+ dark?: Record<string, string> | undefined;
2065
+ }>>;
2066
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
2067
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2068
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2069
+ docs: z.ZodOptional<z.ZodString>;
2070
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2071
+ } & {
2072
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
2073
+ }, "strip", z.ZodTypeAny, {
2074
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2075
+ name: string;
2076
+ tailwind?: {
2077
+ config?: {
2078
+ content?: string[] | undefined;
2079
+ theme?: Record<string, any> | undefined;
2080
+ plugins?: string[] | undefined;
2081
+ } | undefined;
2082
+ } | undefined;
2083
+ $schema?: string | undefined;
2084
+ css?: Record<string, any> | undefined;
2085
+ extends?: string | undefined;
2086
+ title?: string | undefined;
2087
+ author?: string | undefined;
2088
+ description?: string | undefined;
2089
+ dependencies?: string[] | undefined;
2090
+ devDependencies?: string[] | undefined;
2091
+ registryDependencies?: string[] | undefined;
2092
+ files?: ({
2093
+ path: string;
2094
+ type: "registry:page" | "registry:file";
2095
+ target: string;
2096
+ content?: string | undefined;
2097
+ } | {
2098
+ path: string;
2099
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2100
+ content?: string | undefined;
2101
+ target?: string | undefined;
2102
+ })[] | undefined;
2103
+ cssVars?: {
2104
+ theme?: Record<string, string> | undefined;
2105
+ light?: Record<string, string> | undefined;
2106
+ dark?: Record<string, string> | undefined;
2107
+ } | undefined;
2108
+ envVars?: Record<string, string> | undefined;
2109
+ meta?: Record<string, any> | undefined;
2110
+ docs?: string | undefined;
2111
+ categories?: string[] | undefined;
2112
+ }, {
2113
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2114
+ name: string;
2115
+ tailwind?: {
2116
+ config?: {
2117
+ content?: string[] | undefined;
2118
+ theme?: Record<string, any> | undefined;
2119
+ plugins?: string[] | undefined;
2120
+ } | undefined;
2121
+ } | undefined;
2122
+ $schema?: string | undefined;
2123
+ css?: Record<string, any> | undefined;
2124
+ extends?: string | undefined;
2125
+ title?: string | undefined;
2126
+ author?: string | undefined;
2127
+ description?: string | undefined;
2128
+ dependencies?: string[] | undefined;
2129
+ devDependencies?: string[] | undefined;
2130
+ registryDependencies?: string[] | undefined;
2131
+ files?: ({
2132
+ path: string;
2133
+ type: "registry:page" | "registry:file";
2134
+ target: string;
2135
+ content?: string | undefined;
2136
+ } | {
2137
+ path: string;
2138
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2139
+ content?: string | undefined;
2140
+ target?: string | undefined;
2141
+ })[] | undefined;
2142
+ cssVars?: {
2143
+ theme?: Record<string, string> | undefined;
2144
+ light?: Record<string, string> | undefined;
2145
+ dark?: Record<string, string> | undefined;
2146
+ } | undefined;
2147
+ envVars?: Record<string, string> | undefined;
2148
+ meta?: Record<string, any> | undefined;
2149
+ docs?: string | undefined;
2150
+ categories?: string[] | undefined;
2151
+ }>]>, "many">;
2152
+ }, "strip", z.ZodTypeAny, {
2153
+ name: string;
2154
+ homepage: string;
2155
+ items: ({
2156
+ type: "registry:base";
2157
+ name: string;
2158
+ tailwind?: {
2159
+ config?: {
2160
+ content?: string[] | undefined;
2161
+ theme?: Record<string, any> | undefined;
2162
+ plugins?: string[] | undefined;
2163
+ } | undefined;
2164
+ } | undefined;
2165
+ $schema?: string | undefined;
2166
+ config?: {
2167
+ tailwind?: {
2168
+ config?: string | undefined;
2169
+ css?: string | undefined;
2170
+ baseColor?: string | undefined;
2171
+ cssVariables?: boolean | undefined;
2172
+ prefix?: string | undefined;
2173
+ } | undefined;
2174
+ $schema?: string | undefined;
2175
+ style?: string | undefined;
2176
+ rsc?: boolean | undefined;
2177
+ tsx?: boolean | undefined;
2178
+ iconLibrary?: string | undefined;
2179
+ menuColor?: "default" | "inverted" | undefined;
2180
+ menuAccent?: "subtle" | "bold" | undefined;
2181
+ aliases?: {
2182
+ components?: string | undefined;
2183
+ ui?: string | undefined;
2184
+ utils?: string | undefined;
2185
+ lib?: string | undefined;
2186
+ hooks?: string | undefined;
2187
+ } | undefined;
2188
+ registries?: Record<string, string | {
2189
+ url: string;
2190
+ params?: Record<string, string> | undefined;
2191
+ headers?: Record<string, string> | undefined;
2192
+ }> | undefined;
2193
+ } | undefined;
2194
+ css?: Record<string, any> | undefined;
2195
+ extends?: string | undefined;
2196
+ title?: string | undefined;
2197
+ author?: string | undefined;
2198
+ description?: string | undefined;
2199
+ dependencies?: string[] | undefined;
2200
+ devDependencies?: string[] | undefined;
2201
+ registryDependencies?: string[] | undefined;
2202
+ files?: ({
2203
+ path: string;
2204
+ type: "registry:page" | "registry:file";
2205
+ target: string;
2206
+ content?: string | undefined;
2207
+ } | {
2208
+ path: string;
2209
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2210
+ content?: string | undefined;
2211
+ target?: string | undefined;
2212
+ })[] | undefined;
2213
+ cssVars?: {
2214
+ theme?: Record<string, string> | undefined;
2215
+ light?: Record<string, string> | undefined;
2216
+ dark?: Record<string, string> | undefined;
2217
+ } | undefined;
2218
+ envVars?: Record<string, string> | undefined;
2219
+ meta?: Record<string, any> | undefined;
2220
+ docs?: string | undefined;
2221
+ categories?: string[] | undefined;
2222
+ } | {
2223
+ type: "registry:font";
2224
+ name: string;
2225
+ font: {
2226
+ family: string;
2227
+ provider: "google";
2228
+ import: string;
2229
+ variable: string;
2230
+ weight?: string[] | undefined;
2231
+ subsets?: string[] | undefined;
2232
+ };
2233
+ tailwind?: {
2234
+ config?: {
2235
+ content?: string[] | undefined;
2236
+ theme?: Record<string, any> | undefined;
2237
+ plugins?: string[] | undefined;
2238
+ } | undefined;
2239
+ } | undefined;
2240
+ $schema?: string | undefined;
2241
+ css?: Record<string, any> | undefined;
2242
+ extends?: string | undefined;
2243
+ title?: string | undefined;
2244
+ author?: string | undefined;
2245
+ description?: string | undefined;
2246
+ dependencies?: string[] | undefined;
2247
+ devDependencies?: string[] | undefined;
2248
+ registryDependencies?: string[] | undefined;
2249
+ files?: ({
2250
+ path: string;
2251
+ type: "registry:page" | "registry:file";
2252
+ target: string;
2253
+ content?: string | undefined;
2254
+ } | {
2255
+ path: string;
2256
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2257
+ content?: string | undefined;
2258
+ target?: string | undefined;
2259
+ })[] | undefined;
2260
+ cssVars?: {
2261
+ theme?: Record<string, string> | undefined;
2262
+ light?: Record<string, string> | undefined;
2263
+ dark?: Record<string, string> | undefined;
2264
+ } | undefined;
2265
+ envVars?: Record<string, string> | undefined;
2266
+ meta?: Record<string, any> | undefined;
2267
+ docs?: string | undefined;
2268
+ categories?: string[] | undefined;
2269
+ } | {
2270
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2271
+ name: string;
2272
+ tailwind?: {
2273
+ config?: {
2274
+ content?: string[] | undefined;
2275
+ theme?: Record<string, any> | undefined;
2276
+ plugins?: string[] | undefined;
2277
+ } | undefined;
2278
+ } | undefined;
2279
+ $schema?: string | undefined;
2280
+ css?: Record<string, any> | undefined;
2281
+ extends?: string | undefined;
2282
+ title?: string | undefined;
2283
+ author?: string | undefined;
2284
+ description?: string | undefined;
2285
+ dependencies?: string[] | undefined;
2286
+ devDependencies?: string[] | undefined;
2287
+ registryDependencies?: string[] | undefined;
2288
+ files?: ({
2289
+ path: string;
2290
+ type: "registry:page" | "registry:file";
2291
+ target: string;
2292
+ content?: string | undefined;
2293
+ } | {
2294
+ path: string;
2295
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2296
+ content?: string | undefined;
2297
+ target?: string | undefined;
2298
+ })[] | undefined;
2299
+ cssVars?: {
2300
+ theme?: Record<string, string> | undefined;
2301
+ light?: Record<string, string> | undefined;
2302
+ dark?: Record<string, string> | undefined;
2303
+ } | undefined;
2304
+ envVars?: Record<string, string> | undefined;
2305
+ meta?: Record<string, any> | undefined;
2306
+ docs?: string | undefined;
2307
+ categories?: string[] | undefined;
2308
+ })[];
2309
+ }, {
2310
+ name: string;
2311
+ homepage: string;
2312
+ items: ({
2313
+ type: "registry:base";
2314
+ name: string;
2315
+ tailwind?: {
2316
+ config?: {
2317
+ content?: string[] | undefined;
2318
+ theme?: Record<string, any> | undefined;
2319
+ plugins?: string[] | undefined;
2320
+ } | undefined;
2321
+ } | undefined;
2322
+ $schema?: string | undefined;
2323
+ config?: {
2324
+ tailwind?: {
2325
+ config?: string | undefined;
2326
+ css?: string | undefined;
2327
+ baseColor?: string | undefined;
2328
+ cssVariables?: boolean | undefined;
2329
+ prefix?: string | undefined;
2330
+ } | undefined;
2331
+ $schema?: string | undefined;
2332
+ style?: string | undefined;
2333
+ rsc?: boolean | undefined;
2334
+ tsx?: boolean | undefined;
2335
+ iconLibrary?: string | undefined;
2336
+ menuColor?: "default" | "inverted" | undefined;
2337
+ menuAccent?: "subtle" | "bold" | undefined;
2338
+ aliases?: {
2339
+ components?: string | undefined;
2340
+ ui?: string | undefined;
2341
+ utils?: string | undefined;
2342
+ lib?: string | undefined;
2343
+ hooks?: string | undefined;
2344
+ } | undefined;
2345
+ registries?: Record<string, string | {
2346
+ url: string;
2347
+ params?: Record<string, string> | undefined;
2348
+ headers?: Record<string, string> | undefined;
2349
+ }> | undefined;
2350
+ } | undefined;
2351
+ css?: Record<string, any> | undefined;
2352
+ extends?: string | undefined;
2353
+ title?: string | undefined;
2354
+ author?: string | undefined;
2355
+ description?: string | undefined;
2356
+ dependencies?: string[] | undefined;
2357
+ devDependencies?: string[] | undefined;
2358
+ registryDependencies?: string[] | undefined;
2359
+ files?: ({
2360
+ path: string;
2361
+ type: "registry:page" | "registry:file";
2362
+ target: string;
2363
+ content?: string | undefined;
2364
+ } | {
2365
+ path: string;
2366
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2367
+ content?: string | undefined;
2368
+ target?: string | undefined;
2369
+ })[] | undefined;
2370
+ cssVars?: {
2371
+ theme?: Record<string, string> | undefined;
2372
+ light?: Record<string, string> | undefined;
2373
+ dark?: Record<string, string> | undefined;
2374
+ } | undefined;
2375
+ envVars?: Record<string, string> | undefined;
2376
+ meta?: Record<string, any> | undefined;
2377
+ docs?: string | undefined;
2378
+ categories?: string[] | undefined;
2379
+ } | {
2380
+ type: "registry:font";
2381
+ name: string;
2382
+ font: {
2383
+ family: string;
2384
+ provider: "google";
2385
+ import: string;
2386
+ variable: string;
2387
+ weight?: string[] | undefined;
2388
+ subsets?: string[] | undefined;
2389
+ };
2390
+ tailwind?: {
2391
+ config?: {
2392
+ content?: string[] | undefined;
2393
+ theme?: Record<string, any> | undefined;
2394
+ plugins?: string[] | undefined;
2395
+ } | undefined;
2396
+ } | undefined;
2397
+ $schema?: string | undefined;
2398
+ css?: Record<string, any> | undefined;
2399
+ extends?: string | undefined;
2400
+ title?: string | undefined;
2401
+ author?: string | undefined;
2402
+ description?: string | undefined;
2403
+ dependencies?: string[] | undefined;
2404
+ devDependencies?: string[] | undefined;
2405
+ registryDependencies?: string[] | undefined;
2406
+ files?: ({
2407
+ path: string;
2408
+ type: "registry:page" | "registry:file";
2409
+ target: string;
2410
+ content?: string | undefined;
2411
+ } | {
2412
+ path: string;
2413
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2414
+ content?: string | undefined;
2415
+ target?: string | undefined;
2416
+ })[] | undefined;
2417
+ cssVars?: {
2418
+ theme?: Record<string, string> | undefined;
2419
+ light?: Record<string, string> | undefined;
2420
+ dark?: Record<string, string> | undefined;
2421
+ } | undefined;
2422
+ envVars?: Record<string, string> | undefined;
2423
+ meta?: Record<string, any> | undefined;
2424
+ docs?: string | undefined;
2425
+ categories?: string[] | undefined;
2426
+ } | {
2427
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2428
+ name: string;
2429
+ tailwind?: {
2430
+ config?: {
2431
+ content?: string[] | undefined;
2432
+ theme?: Record<string, any> | undefined;
2433
+ plugins?: string[] | undefined;
2434
+ } | undefined;
2435
+ } | undefined;
2436
+ $schema?: string | undefined;
2437
+ css?: Record<string, any> | undefined;
2438
+ extends?: string | undefined;
2439
+ title?: string | undefined;
2440
+ author?: string | undefined;
2441
+ description?: string | undefined;
2442
+ dependencies?: string[] | undefined;
2443
+ devDependencies?: string[] | undefined;
2444
+ registryDependencies?: string[] | undefined;
2445
+ files?: ({
2446
+ path: string;
2447
+ type: "registry:page" | "registry:file";
2448
+ target: string;
2449
+ content?: string | undefined;
2450
+ } | {
2451
+ path: string;
2452
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2453
+ content?: string | undefined;
2454
+ target?: string | undefined;
2455
+ })[] | undefined;
2456
+ cssVars?: {
2457
+ theme?: Record<string, string> | undefined;
2458
+ light?: Record<string, string> | undefined;
2459
+ dark?: Record<string, string> | undefined;
2460
+ } | undefined;
2461
+ envVars?: Record<string, string> | undefined;
2462
+ meta?: Record<string, any> | undefined;
2463
+ docs?: string | undefined;
2464
+ categories?: string[] | undefined;
2465
+ })[];
2466
+ }>;
2467
+ type Registry = z.infer<typeof registrySchema>;
2468
+ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2469
+ $schema: z.ZodOptional<z.ZodString>;
2470
+ extends: z.ZodOptional<z.ZodString>;
2471
+ name: z.ZodString;
2472
+ title: z.ZodOptional<z.ZodString>;
2473
+ author: z.ZodOptional<z.ZodString>;
2474
+ description: z.ZodOptional<z.ZodString>;
2475
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2476
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2477
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2478
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2479
+ path: z.ZodString;
2480
+ content: z.ZodOptional<z.ZodString>;
2481
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
2482
+ target: z.ZodString;
2483
+ }, "strip", z.ZodTypeAny, {
2484
+ path: string;
2485
+ type: "registry:page" | "registry:file";
2486
+ target: string;
2487
+ content?: string | undefined;
2488
+ }, {
2489
+ path: string;
2490
+ type: "registry:page" | "registry:file";
2491
+ target: string;
2492
+ content?: string | undefined;
2493
+ }>, z.ZodObject<{
2494
+ path: z.ZodString;
2495
+ content: z.ZodOptional<z.ZodString>;
2496
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
2497
+ target: z.ZodOptional<z.ZodString>;
2498
+ }, "strip", z.ZodTypeAny, {
2499
+ path: string;
2500
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2501
+ content?: string | undefined;
2502
+ target?: string | undefined;
2503
+ }, {
2504
+ path: string;
2505
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2506
+ content?: string | undefined;
2507
+ target?: string | undefined;
2508
+ }>]>, "many">>;
2509
+ tailwind: z.ZodOptional<z.ZodObject<{
2510
+ config: z.ZodOptional<z.ZodObject<{
2511
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2512
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2513
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2514
+ }, "strip", z.ZodTypeAny, {
2515
+ content?: string[] | undefined;
2516
+ theme?: Record<string, any> | undefined;
2517
+ plugins?: string[] | undefined;
2518
+ }, {
2519
+ content?: string[] | undefined;
2520
+ theme?: Record<string, any> | undefined;
2521
+ plugins?: string[] | undefined;
2522
+ }>>;
2523
+ }, "strip", z.ZodTypeAny, {
2524
+ config?: {
2525
+ content?: string[] | undefined;
2526
+ theme?: Record<string, any> | undefined;
2527
+ plugins?: string[] | undefined;
2528
+ } | undefined;
2529
+ }, {
2530
+ config?: {
2531
+ content?: string[] | undefined;
2532
+ theme?: Record<string, any> | undefined;
2533
+ plugins?: string[] | undefined;
2534
+ } | undefined;
2535
+ }>>;
2536
+ cssVars: z.ZodOptional<z.ZodObject<{
2537
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2538
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2539
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2540
+ }, "strip", z.ZodTypeAny, {
2541
+ theme?: Record<string, string> | undefined;
2542
+ light?: Record<string, string> | undefined;
2543
+ dark?: Record<string, string> | undefined;
2544
+ }, {
2545
+ theme?: Record<string, string> | undefined;
2546
+ light?: Record<string, string> | undefined;
2547
+ dark?: Record<string, string> | undefined;
2548
+ }>>;
2549
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
2550
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2551
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2552
+ docs: z.ZodOptional<z.ZodString>;
2553
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2554
+ } & {
2555
+ type: z.ZodLiteral<"registry:base">;
2556
+ config: z.ZodOptional<z.ZodObject<{
2557
+ $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2558
+ style: z.ZodOptional<z.ZodString>;
2559
+ rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2560
+ tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2561
+ tailwind: z.ZodOptional<z.ZodObject<{
2562
+ config: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2563
+ css: z.ZodOptional<z.ZodString>;
2564
+ baseColor: z.ZodOptional<z.ZodString>;
2565
+ cssVariables: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2566
+ prefix: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodString>>>;
2567
+ }, "strip", z.ZodTypeAny, {
2568
+ config?: string | undefined;
2569
+ css?: string | undefined;
2570
+ baseColor?: string | undefined;
2571
+ cssVariables?: boolean | undefined;
2572
+ prefix?: string | undefined;
2573
+ }, {
2574
+ config?: string | undefined;
2575
+ css?: string | undefined;
2576
+ baseColor?: string | undefined;
2577
+ cssVariables?: boolean | undefined;
2578
+ prefix?: string | undefined;
2579
+ }>>;
2580
+ iconLibrary: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2581
+ menuColor: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>>;
2582
+ menuAccent: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>>;
2583
+ aliases: z.ZodOptional<z.ZodObject<{
2584
+ components: z.ZodOptional<z.ZodString>;
2585
+ utils: z.ZodOptional<z.ZodString>;
2586
+ ui: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2587
+ lib: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2588
+ hooks: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2589
+ }, "strip", z.ZodTypeAny, {
2590
+ components?: string | undefined;
2591
+ ui?: string | undefined;
2592
+ utils?: string | undefined;
2593
+ lib?: string | undefined;
2594
+ hooks?: string | undefined;
2595
+ }, {
2596
+ components?: string | undefined;
2597
+ ui?: string | undefined;
2598
+ utils?: string | undefined;
2599
+ lib?: string | undefined;
2600
+ hooks?: string | undefined;
2601
+ }>>;
2602
+ registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2603
+ url: z.ZodEffects<z.ZodString, string, string>;
2604
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2605
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2606
+ }, "strip", z.ZodTypeAny, {
2607
+ url: string;
2608
+ params?: Record<string, string> | undefined;
2609
+ headers?: Record<string, string> | undefined;
2610
+ }, {
2611
+ url: string;
2612
+ params?: Record<string, string> | undefined;
2613
+ headers?: Record<string, string> | undefined;
2614
+ }>]>>>>;
2615
+ }, "strict", z.ZodTypeAny, {
2616
+ tailwind?: {
2617
+ config?: string | undefined;
2618
+ css?: string | undefined;
2619
+ baseColor?: string | undefined;
2620
+ cssVariables?: boolean | undefined;
2621
+ prefix?: string | undefined;
2622
+ } | undefined;
2623
+ $schema?: string | undefined;
2624
+ style?: string | undefined;
2625
+ rsc?: boolean | undefined;
2626
+ tsx?: boolean | undefined;
2627
+ iconLibrary?: string | undefined;
2628
+ menuColor?: "default" | "inverted" | undefined;
2629
+ menuAccent?: "subtle" | "bold" | undefined;
2630
+ aliases?: {
2631
+ components?: string | undefined;
2632
+ ui?: string | undefined;
2633
+ utils?: string | undefined;
2634
+ lib?: string | undefined;
2635
+ hooks?: string | undefined;
2636
+ } | undefined;
2637
+ registries?: Record<string, string | {
2638
+ url: string;
2639
+ params?: Record<string, string> | undefined;
2640
+ headers?: Record<string, string> | undefined;
2641
+ }> | undefined;
2642
+ }, {
2643
+ tailwind?: {
2644
+ config?: string | undefined;
2645
+ css?: string | undefined;
2646
+ baseColor?: string | undefined;
2647
+ cssVariables?: boolean | undefined;
2648
+ prefix?: string | undefined;
2649
+ } | undefined;
2650
+ $schema?: string | undefined;
2651
+ style?: string | undefined;
2652
+ rsc?: boolean | undefined;
2653
+ tsx?: boolean | undefined;
2654
+ iconLibrary?: string | undefined;
2655
+ menuColor?: "default" | "inverted" | undefined;
2656
+ menuAccent?: "subtle" | "bold" | undefined;
2657
+ aliases?: {
2658
+ components?: string | undefined;
2659
+ ui?: string | undefined;
2660
+ utils?: string | undefined;
2661
+ lib?: string | undefined;
2662
+ hooks?: string | undefined;
2663
+ } | undefined;
2664
+ registries?: Record<string, string | {
2665
+ url: string;
2666
+ params?: Record<string, string> | undefined;
2667
+ headers?: Record<string, string> | undefined;
2668
+ }> | undefined;
2669
+ }>>;
2670
+ }, "strip", z.ZodTypeAny, {
2671
+ type: "registry:base";
2672
+ name: string;
2673
+ tailwind?: {
2674
+ config?: {
2675
+ content?: string[] | undefined;
2676
+ theme?: Record<string, any> | undefined;
2677
+ plugins?: string[] | undefined;
2678
+ } | undefined;
2679
+ } | undefined;
2680
+ $schema?: string | undefined;
2681
+ config?: {
2682
+ tailwind?: {
2683
+ config?: string | undefined;
2684
+ css?: string | undefined;
2685
+ baseColor?: string | undefined;
2686
+ cssVariables?: boolean | undefined;
2687
+ prefix?: string | undefined;
2688
+ } | undefined;
2689
+ $schema?: string | undefined;
2690
+ style?: string | undefined;
2691
+ rsc?: boolean | undefined;
2692
+ tsx?: boolean | undefined;
2693
+ iconLibrary?: string | undefined;
2694
+ menuColor?: "default" | "inverted" | undefined;
2695
+ menuAccent?: "subtle" | "bold" | undefined;
2696
+ aliases?: {
2697
+ components?: string | undefined;
2698
+ ui?: string | undefined;
2699
+ utils?: string | undefined;
2700
+ lib?: string | undefined;
2701
+ hooks?: string | undefined;
2702
+ } | undefined;
2703
+ registries?: Record<string, string | {
2704
+ url: string;
2705
+ params?: Record<string, string> | undefined;
2706
+ headers?: Record<string, string> | undefined;
2707
+ }> | undefined;
2708
+ } | undefined;
2709
+ css?: Record<string, any> | undefined;
2710
+ extends?: string | undefined;
2711
+ title?: string | undefined;
2712
+ author?: string | undefined;
2713
+ description?: string | undefined;
2714
+ dependencies?: string[] | undefined;
2715
+ devDependencies?: string[] | undefined;
2716
+ registryDependencies?: string[] | undefined;
2717
+ files?: ({
2718
+ path: string;
2719
+ type: "registry:page" | "registry:file";
2720
+ target: string;
2721
+ content?: string | undefined;
2722
+ } | {
2723
+ path: string;
2724
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2725
+ content?: string | undefined;
2726
+ target?: string | undefined;
2727
+ })[] | undefined;
2728
+ cssVars?: {
2729
+ theme?: Record<string, string> | undefined;
2730
+ light?: Record<string, string> | undefined;
2731
+ dark?: Record<string, string> | undefined;
2732
+ } | undefined;
2733
+ envVars?: Record<string, string> | undefined;
2734
+ meta?: Record<string, any> | undefined;
2735
+ docs?: string | undefined;
2736
+ categories?: string[] | undefined;
2737
+ }, {
2738
+ type: "registry:base";
2739
+ name: string;
2740
+ tailwind?: {
2741
+ config?: {
2742
+ content?: string[] | undefined;
2743
+ theme?: Record<string, any> | undefined;
2744
+ plugins?: string[] | undefined;
2745
+ } | undefined;
2746
+ } | undefined;
2747
+ $schema?: string | undefined;
2748
+ config?: {
2749
+ tailwind?: {
2750
+ config?: string | undefined;
2751
+ css?: string | undefined;
2752
+ baseColor?: string | undefined;
2753
+ cssVariables?: boolean | undefined;
2754
+ prefix?: string | undefined;
2755
+ } | undefined;
2756
+ $schema?: string | undefined;
2757
+ style?: string | undefined;
2758
+ rsc?: boolean | undefined;
2759
+ tsx?: boolean | undefined;
2760
+ iconLibrary?: string | undefined;
2761
+ menuColor?: "default" | "inverted" | undefined;
2762
+ menuAccent?: "subtle" | "bold" | undefined;
2763
+ aliases?: {
2764
+ components?: string | undefined;
2765
+ ui?: string | undefined;
2766
+ utils?: string | undefined;
2767
+ lib?: string | undefined;
2768
+ hooks?: string | undefined;
2769
+ } | undefined;
2770
+ registries?: Record<string, string | {
2771
+ url: string;
2772
+ params?: Record<string, string> | undefined;
2773
+ headers?: Record<string, string> | undefined;
2774
+ }> | undefined;
2775
+ } | undefined;
2776
+ css?: Record<string, any> | undefined;
2777
+ extends?: string | undefined;
2778
+ title?: string | undefined;
2779
+ author?: string | undefined;
2780
+ description?: string | undefined;
2781
+ dependencies?: string[] | undefined;
2782
+ devDependencies?: string[] | undefined;
2783
+ registryDependencies?: string[] | undefined;
2784
+ files?: ({
2785
+ path: string;
2786
+ type: "registry:page" | "registry:file";
2787
+ target: string;
2788
+ content?: string | undefined;
2789
+ } | {
2790
+ path: string;
2791
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2792
+ content?: string | undefined;
2793
+ target?: string | undefined;
2794
+ })[] | undefined;
2795
+ cssVars?: {
2796
+ theme?: Record<string, string> | undefined;
2797
+ light?: Record<string, string> | undefined;
2798
+ dark?: Record<string, string> | undefined;
2799
+ } | undefined;
2800
+ envVars?: Record<string, string> | undefined;
2801
+ meta?: Record<string, any> | undefined;
2802
+ docs?: string | undefined;
2803
+ categories?: string[] | undefined;
2804
+ }>, z.ZodObject<{
2805
+ $schema: z.ZodOptional<z.ZodString>;
2806
+ extends: z.ZodOptional<z.ZodString>;
2807
+ name: z.ZodString;
2808
+ title: z.ZodOptional<z.ZodString>;
2809
+ author: z.ZodOptional<z.ZodString>;
2810
+ description: z.ZodOptional<z.ZodString>;
2811
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2812
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2813
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2814
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2815
+ path: z.ZodString;
2816
+ content: z.ZodOptional<z.ZodString>;
2817
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
2818
+ target: z.ZodString;
2819
+ }, "strip", z.ZodTypeAny, {
2820
+ path: string;
2821
+ type: "registry:page" | "registry:file";
2822
+ target: string;
2823
+ content?: string | undefined;
2824
+ }, {
2825
+ path: string;
2826
+ type: "registry:page" | "registry:file";
2827
+ target: string;
2828
+ content?: string | undefined;
2829
+ }>, z.ZodObject<{
2830
+ path: z.ZodString;
2831
+ content: z.ZodOptional<z.ZodString>;
2832
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
2833
+ target: z.ZodOptional<z.ZodString>;
2834
+ }, "strip", z.ZodTypeAny, {
2835
+ path: string;
2836
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2837
+ content?: string | undefined;
2838
+ target?: string | undefined;
2839
+ }, {
2840
+ path: string;
2841
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2842
+ content?: string | undefined;
2843
+ target?: string | undefined;
2844
+ }>]>, "many">>;
2845
+ tailwind: z.ZodOptional<z.ZodObject<{
2846
+ config: z.ZodOptional<z.ZodObject<{
2847
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2848
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2849
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2850
+ }, "strip", z.ZodTypeAny, {
2851
+ content?: string[] | undefined;
2852
+ theme?: Record<string, any> | undefined;
2853
+ plugins?: string[] | undefined;
2854
+ }, {
2855
+ content?: string[] | undefined;
2856
+ theme?: Record<string, any> | undefined;
2857
+ plugins?: string[] | undefined;
2858
+ }>>;
2859
+ }, "strip", z.ZodTypeAny, {
2860
+ config?: {
2861
+ content?: string[] | undefined;
2862
+ theme?: Record<string, any> | undefined;
2863
+ plugins?: string[] | undefined;
2864
+ } | undefined;
2865
+ }, {
2866
+ config?: {
2867
+ content?: string[] | undefined;
2868
+ theme?: Record<string, any> | undefined;
2869
+ plugins?: string[] | undefined;
2870
+ } | undefined;
2871
+ }>>;
2872
+ cssVars: z.ZodOptional<z.ZodObject<{
2873
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2874
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2875
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2876
+ }, "strip", z.ZodTypeAny, {
2877
+ theme?: Record<string, string> | undefined;
2878
+ light?: Record<string, string> | undefined;
2879
+ dark?: Record<string, string> | undefined;
2880
+ }, {
2881
+ theme?: Record<string, string> | undefined;
2882
+ light?: Record<string, string> | undefined;
2883
+ dark?: Record<string, string> | undefined;
2884
+ }>>;
2885
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
2886
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2887
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
2888
+ docs: z.ZodOptional<z.ZodString>;
2889
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2890
+ } & {
2891
+ type: z.ZodLiteral<"registry:font">;
2892
+ font: z.ZodObject<{
2893
+ family: z.ZodString;
2894
+ provider: z.ZodLiteral<"google">;
2895
+ import: z.ZodString;
2896
+ variable: z.ZodString;
2897
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2898
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2899
+ }, "strip", z.ZodTypeAny, {
2900
+ family: string;
2901
+ provider: "google";
2902
+ import: string;
2903
+ variable: string;
2904
+ weight?: string[] | undefined;
2905
+ subsets?: string[] | undefined;
2906
+ }, {
2907
+ family: string;
2908
+ provider: "google";
2909
+ import: string;
2910
+ variable: string;
2911
+ weight?: string[] | undefined;
2912
+ subsets?: string[] | undefined;
2913
+ }>;
2914
+ }, "strip", z.ZodTypeAny, {
2915
+ type: "registry:font";
2916
+ name: string;
2917
+ font: {
2918
+ family: string;
2919
+ provider: "google";
2920
+ import: string;
2921
+ variable: string;
2922
+ weight?: string[] | undefined;
2923
+ subsets?: string[] | undefined;
2924
+ };
2925
+ tailwind?: {
2926
+ config?: {
2927
+ content?: string[] | undefined;
2928
+ theme?: Record<string, any> | undefined;
2929
+ plugins?: string[] | undefined;
2930
+ } | undefined;
2931
+ } | undefined;
2932
+ $schema?: string | undefined;
2933
+ css?: Record<string, any> | undefined;
2934
+ extends?: string | undefined;
2935
+ title?: string | undefined;
2936
+ author?: string | undefined;
2937
+ description?: string | undefined;
2938
+ dependencies?: string[] | undefined;
2939
+ devDependencies?: string[] | undefined;
2940
+ registryDependencies?: string[] | undefined;
2941
+ files?: ({
2942
+ path: string;
2943
+ type: "registry:page" | "registry:file";
2944
+ target: string;
2945
+ content?: string | undefined;
2946
+ } | {
2947
+ path: string;
2948
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2949
+ content?: string | undefined;
2950
+ target?: string | undefined;
2951
+ })[] | undefined;
2952
+ cssVars?: {
2953
+ theme?: Record<string, string> | undefined;
2954
+ light?: Record<string, string> | undefined;
2955
+ dark?: Record<string, string> | undefined;
2956
+ } | undefined;
2957
+ envVars?: Record<string, string> | undefined;
2958
+ meta?: Record<string, any> | undefined;
2959
+ docs?: string | undefined;
2960
+ categories?: string[] | undefined;
2961
+ }, {
2962
+ type: "registry:font";
2963
+ name: string;
2964
+ font: {
2965
+ family: string;
2966
+ provider: "google";
2967
+ import: string;
2968
+ variable: string;
2969
+ weight?: string[] | undefined;
2970
+ subsets?: string[] | undefined;
2971
+ };
2972
+ tailwind?: {
2973
+ config?: {
2974
+ content?: string[] | undefined;
2975
+ theme?: Record<string, any> | undefined;
2976
+ plugins?: string[] | undefined;
2977
+ } | undefined;
2978
+ } | undefined;
2979
+ $schema?: string | undefined;
2980
+ css?: Record<string, any> | undefined;
2981
+ extends?: string | undefined;
2982
+ title?: string | undefined;
2983
+ author?: string | undefined;
2984
+ description?: string | undefined;
2985
+ dependencies?: string[] | undefined;
2986
+ devDependencies?: string[] | undefined;
2987
+ registryDependencies?: string[] | undefined;
2988
+ files?: ({
2989
+ path: string;
2990
+ type: "registry:page" | "registry:file";
2991
+ target: string;
2992
+ content?: string | undefined;
2993
+ } | {
2994
+ path: string;
2995
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
2996
+ content?: string | undefined;
2997
+ target?: string | undefined;
2998
+ })[] | undefined;
2999
+ cssVars?: {
3000
+ theme?: Record<string, string> | undefined;
3001
+ light?: Record<string, string> | undefined;
3002
+ dark?: Record<string, string> | undefined;
3003
+ } | undefined;
3004
+ envVars?: Record<string, string> | undefined;
3005
+ meta?: Record<string, any> | undefined;
3006
+ docs?: string | undefined;
3007
+ categories?: string[] | undefined;
3008
+ }>, z.ZodObject<{
3009
+ $schema: z.ZodOptional<z.ZodString>;
3010
+ extends: z.ZodOptional<z.ZodString>;
3011
+ name: z.ZodString;
3012
+ title: z.ZodOptional<z.ZodString>;
3013
+ author: z.ZodOptional<z.ZodString>;
3014
+ description: z.ZodOptional<z.ZodString>;
3015
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3016
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3017
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3018
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3019
+ path: z.ZodString;
3020
+ content: z.ZodOptional<z.ZodString>;
3021
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3022
+ target: z.ZodString;
3023
+ }, "strip", z.ZodTypeAny, {
3024
+ path: string;
3025
+ type: "registry:page" | "registry:file";
3026
+ target: string;
3027
+ content?: string | undefined;
3028
+ }, {
3029
+ path: string;
3030
+ type: "registry:page" | "registry:file";
3031
+ target: string;
3032
+ content?: string | undefined;
3033
+ }>, z.ZodObject<{
3034
+ path: z.ZodString;
3035
+ content: z.ZodOptional<z.ZodString>;
3036
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3037
+ target: z.ZodOptional<z.ZodString>;
3038
+ }, "strip", z.ZodTypeAny, {
3039
+ path: string;
3040
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3041
+ content?: string | undefined;
3042
+ target?: string | undefined;
3043
+ }, {
3044
+ path: string;
3045
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3046
+ content?: string | undefined;
3047
+ target?: string | undefined;
3048
+ }>]>, "many">>;
3049
+ tailwind: z.ZodOptional<z.ZodObject<{
3050
+ config: z.ZodOptional<z.ZodObject<{
3051
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3052
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3053
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3054
+ }, "strip", z.ZodTypeAny, {
3055
+ content?: string[] | undefined;
3056
+ theme?: Record<string, any> | undefined;
3057
+ plugins?: string[] | undefined;
3058
+ }, {
3059
+ content?: string[] | undefined;
3060
+ theme?: Record<string, any> | undefined;
3061
+ plugins?: string[] | undefined;
3062
+ }>>;
3063
+ }, "strip", z.ZodTypeAny, {
3064
+ config?: {
3065
+ content?: string[] | undefined;
3066
+ theme?: Record<string, any> | undefined;
3067
+ plugins?: string[] | undefined;
3068
+ } | undefined;
3069
+ }, {
3070
+ config?: {
3071
+ content?: string[] | undefined;
3072
+ theme?: Record<string, any> | undefined;
3073
+ plugins?: string[] | undefined;
3074
+ } | undefined;
3075
+ }>>;
3076
+ cssVars: z.ZodOptional<z.ZodObject<{
3077
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3078
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3079
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3080
+ }, "strip", z.ZodTypeAny, {
3081
+ theme?: Record<string, string> | undefined;
3082
+ light?: Record<string, string> | undefined;
3083
+ dark?: Record<string, string> | undefined;
3084
+ }, {
3085
+ theme?: Record<string, string> | undefined;
3086
+ light?: Record<string, string> | undefined;
3087
+ dark?: Record<string, string> | undefined;
3088
+ }>>;
3089
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3090
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3091
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3092
+ docs: z.ZodOptional<z.ZodString>;
3093
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3094
+ } & {
3095
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
3096
+ }, "strip", z.ZodTypeAny, {
3097
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3098
+ name: string;
3099
+ tailwind?: {
3100
+ config?: {
3101
+ content?: string[] | undefined;
3102
+ theme?: Record<string, any> | undefined;
3103
+ plugins?: string[] | undefined;
3104
+ } | undefined;
3105
+ } | undefined;
3106
+ $schema?: string | undefined;
3107
+ css?: Record<string, any> | undefined;
3108
+ extends?: string | undefined;
3109
+ title?: string | undefined;
3110
+ author?: string | undefined;
3111
+ description?: string | undefined;
3112
+ dependencies?: string[] | undefined;
3113
+ devDependencies?: string[] | undefined;
3114
+ registryDependencies?: string[] | undefined;
3115
+ files?: ({
3116
+ path: string;
3117
+ type: "registry:page" | "registry:file";
3118
+ target: string;
3119
+ content?: string | undefined;
3120
+ } | {
3121
+ path: string;
3122
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3123
+ content?: string | undefined;
3124
+ target?: string | undefined;
3125
+ })[] | undefined;
3126
+ cssVars?: {
3127
+ theme?: Record<string, string> | undefined;
3128
+ light?: Record<string, string> | undefined;
3129
+ dark?: Record<string, string> | undefined;
3130
+ } | undefined;
3131
+ envVars?: Record<string, string> | undefined;
3132
+ meta?: Record<string, any> | undefined;
3133
+ docs?: string | undefined;
3134
+ categories?: string[] | undefined;
3135
+ }, {
3136
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3137
+ name: string;
3138
+ tailwind?: {
3139
+ config?: {
3140
+ content?: string[] | undefined;
3141
+ theme?: Record<string, any> | undefined;
3142
+ plugins?: string[] | undefined;
3143
+ } | undefined;
3144
+ } | undefined;
3145
+ $schema?: string | undefined;
3146
+ css?: Record<string, any> | undefined;
3147
+ extends?: string | undefined;
3148
+ title?: string | undefined;
3149
+ author?: string | undefined;
3150
+ description?: string | undefined;
3151
+ dependencies?: string[] | undefined;
3152
+ devDependencies?: string[] | undefined;
3153
+ registryDependencies?: string[] | undefined;
3154
+ files?: ({
3155
+ path: string;
3156
+ type: "registry:page" | "registry:file";
3157
+ target: string;
3158
+ content?: string | undefined;
3159
+ } | {
3160
+ path: string;
3161
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3162
+ content?: string | undefined;
3163
+ target?: string | undefined;
3164
+ })[] | undefined;
3165
+ cssVars?: {
3166
+ theme?: Record<string, string> | undefined;
3167
+ light?: Record<string, string> | undefined;
3168
+ dark?: Record<string, string> | undefined;
3169
+ } | undefined;
3170
+ envVars?: Record<string, string> | undefined;
3171
+ meta?: Record<string, any> | undefined;
3172
+ docs?: string | undefined;
3173
+ categories?: string[] | undefined;
3174
+ }>]>, "many">;
3175
+ declare const stylesSchema: z.ZodArray<z.ZodObject<{
3176
+ name: z.ZodString;
3177
+ label: z.ZodString;
3178
+ }, "strip", z.ZodTypeAny, {
3179
+ name: string;
3180
+ label: string;
3181
+ }, {
3182
+ name: string;
3183
+ label: string;
3184
+ }>, "many">;
3185
+ declare const iconsSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
3186
+ declare const registryBaseColorSchema: z.ZodObject<{
3187
+ inlineColors: z.ZodObject<{
3188
+ light: z.ZodRecord<z.ZodString, z.ZodString>;
3189
+ dark: z.ZodRecord<z.ZodString, z.ZodString>;
3190
+ }, "strip", z.ZodTypeAny, {
3191
+ light: Record<string, string>;
3192
+ dark: Record<string, string>;
3193
+ }, {
3194
+ light: Record<string, string>;
3195
+ dark: Record<string, string>;
3196
+ }>;
3197
+ cssVars: z.ZodObject<{
3198
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3199
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3200
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3201
+ }, "strip", z.ZodTypeAny, {
3202
+ theme?: Record<string, string> | undefined;
3203
+ light?: Record<string, string> | undefined;
3204
+ dark?: Record<string, string> | undefined;
3205
+ }, {
3206
+ theme?: Record<string, string> | undefined;
3207
+ light?: Record<string, string> | undefined;
3208
+ dark?: Record<string, string> | undefined;
3209
+ }>;
3210
+ cssVarsV4: z.ZodOptional<z.ZodObject<{
3211
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3212
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3213
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3214
+ }, "strip", z.ZodTypeAny, {
3215
+ theme?: Record<string, string> | undefined;
3216
+ light?: Record<string, string> | undefined;
3217
+ dark?: Record<string, string> | undefined;
3218
+ }, {
3219
+ theme?: Record<string, string> | undefined;
3220
+ light?: Record<string, string> | undefined;
3221
+ dark?: Record<string, string> | undefined;
3222
+ }>>;
3223
+ inlineColorsTemplate: z.ZodString;
3224
+ cssVarsTemplate: z.ZodString;
3225
+ }, "strip", z.ZodTypeAny, {
3226
+ cssVars: {
3227
+ theme?: Record<string, string> | undefined;
3228
+ light?: Record<string, string> | undefined;
3229
+ dark?: Record<string, string> | undefined;
3230
+ };
3231
+ inlineColors: {
3232
+ light: Record<string, string>;
3233
+ dark: Record<string, string>;
3234
+ };
3235
+ inlineColorsTemplate: string;
3236
+ cssVarsTemplate: string;
3237
+ cssVarsV4?: {
3238
+ theme?: Record<string, string> | undefined;
3239
+ light?: Record<string, string> | undefined;
3240
+ dark?: Record<string, string> | undefined;
3241
+ } | undefined;
3242
+ }, {
3243
+ cssVars: {
3244
+ theme?: Record<string, string> | undefined;
3245
+ light?: Record<string, string> | undefined;
3246
+ dark?: Record<string, string> | undefined;
3247
+ };
3248
+ inlineColors: {
3249
+ light: Record<string, string>;
3250
+ dark: Record<string, string>;
3251
+ };
3252
+ inlineColorsTemplate: string;
3253
+ cssVarsTemplate: string;
3254
+ cssVarsV4?: {
3255
+ theme?: Record<string, string> | undefined;
3256
+ light?: Record<string, string> | undefined;
3257
+ dark?: Record<string, string> | undefined;
3258
+ } | undefined;
3259
+ }>;
3260
+ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
3261
+ $schema: z.ZodOptional<z.ZodString>;
3262
+ extends: z.ZodOptional<z.ZodString>;
3263
+ name: z.ZodString;
3264
+ title: z.ZodOptional<z.ZodString>;
3265
+ author: z.ZodOptional<z.ZodString>;
3266
+ description: z.ZodOptional<z.ZodString>;
3267
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3268
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3269
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3270
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3271
+ path: z.ZodString;
3272
+ content: z.ZodOptional<z.ZodString>;
3273
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3274
+ target: z.ZodString;
3275
+ }, "strip", z.ZodTypeAny, {
3276
+ path: string;
3277
+ type: "registry:page" | "registry:file";
3278
+ target: string;
3279
+ content?: string | undefined;
3280
+ }, {
3281
+ path: string;
3282
+ type: "registry:page" | "registry:file";
3283
+ target: string;
3284
+ content?: string | undefined;
3285
+ }>, z.ZodObject<{
3286
+ path: z.ZodString;
3287
+ content: z.ZodOptional<z.ZodString>;
3288
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3289
+ target: z.ZodOptional<z.ZodString>;
3290
+ }, "strip", z.ZodTypeAny, {
3291
+ path: string;
3292
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3293
+ content?: string | undefined;
3294
+ target?: string | undefined;
3295
+ }, {
3296
+ path: string;
3297
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3298
+ content?: string | undefined;
3299
+ target?: string | undefined;
3300
+ }>]>, "many">>;
3301
+ tailwind: z.ZodOptional<z.ZodObject<{
3302
+ config: z.ZodOptional<z.ZodObject<{
3303
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3304
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3305
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3306
+ }, "strip", z.ZodTypeAny, {
3307
+ content?: string[] | undefined;
3308
+ theme?: Record<string, any> | undefined;
3309
+ plugins?: string[] | undefined;
3310
+ }, {
3311
+ content?: string[] | undefined;
3312
+ theme?: Record<string, any> | undefined;
3313
+ plugins?: string[] | undefined;
3314
+ }>>;
3315
+ }, "strip", z.ZodTypeAny, {
3316
+ config?: {
3317
+ content?: string[] | undefined;
3318
+ theme?: Record<string, any> | undefined;
3319
+ plugins?: string[] | undefined;
3320
+ } | undefined;
3321
+ }, {
3322
+ config?: {
3323
+ content?: string[] | undefined;
3324
+ theme?: Record<string, any> | undefined;
3325
+ plugins?: string[] | undefined;
3326
+ } | undefined;
3327
+ }>>;
3328
+ cssVars: z.ZodOptional<z.ZodObject<{
3329
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3330
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3331
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3332
+ }, "strip", z.ZodTypeAny, {
3333
+ theme?: Record<string, string> | undefined;
3334
+ light?: Record<string, string> | undefined;
3335
+ dark?: Record<string, string> | undefined;
3336
+ }, {
3337
+ theme?: Record<string, string> | undefined;
3338
+ light?: Record<string, string> | undefined;
3339
+ dark?: Record<string, string> | undefined;
3340
+ }>>;
3341
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3342
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3343
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3344
+ docs: z.ZodOptional<z.ZodString>;
3345
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3346
+ }, "tailwind" | "css" | "dependencies" | "devDependencies" | "files" | "cssVars" | "envVars" | "docs"> & {
3347
+ fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
3348
+ $schema: z.ZodOptional<z.ZodString>;
3349
+ extends: z.ZodOptional<z.ZodString>;
3350
+ name: z.ZodString;
3351
+ title: z.ZodOptional<z.ZodString>;
3352
+ author: z.ZodOptional<z.ZodString>;
3353
+ description: z.ZodOptional<z.ZodString>;
3354
+ dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3355
+ devDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3356
+ registryDependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3357
+ files: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3358
+ path: z.ZodString;
3359
+ content: z.ZodOptional<z.ZodString>;
3360
+ type: z.ZodEnum<["registry:file", "registry:page"]>;
3361
+ target: z.ZodString;
3362
+ }, "strip", z.ZodTypeAny, {
3363
+ path: string;
3364
+ type: "registry:page" | "registry:file";
3365
+ target: string;
3366
+ content?: string | undefined;
3367
+ }, {
3368
+ path: string;
3369
+ type: "registry:page" | "registry:file";
3370
+ target: string;
3371
+ content?: string | undefined;
3372
+ }>, z.ZodObject<{
3373
+ path: z.ZodString;
3374
+ content: z.ZodOptional<z.ZodString>;
3375
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:style", "registry:item", "registry:base", "registry:font", "registry:example", "registry:internal"]>;
3376
+ target: z.ZodOptional<z.ZodString>;
3377
+ }, "strip", z.ZodTypeAny, {
3378
+ path: string;
3379
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3380
+ content?: string | undefined;
3381
+ target?: string | undefined;
3382
+ }, {
3383
+ path: string;
3384
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3385
+ content?: string | undefined;
3386
+ target?: string | undefined;
3387
+ }>]>, "many">>;
3388
+ tailwind: z.ZodOptional<z.ZodObject<{
3389
+ config: z.ZodOptional<z.ZodObject<{
3390
+ content: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3391
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3392
+ plugins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3393
+ }, "strip", z.ZodTypeAny, {
3394
+ content?: string[] | undefined;
3395
+ theme?: Record<string, any> | undefined;
3396
+ plugins?: string[] | undefined;
3397
+ }, {
3398
+ content?: string[] | undefined;
3399
+ theme?: Record<string, any> | undefined;
3400
+ plugins?: string[] | undefined;
3401
+ }>>;
3402
+ }, "strip", z.ZodTypeAny, {
3403
+ config?: {
3404
+ content?: string[] | undefined;
3405
+ theme?: Record<string, any> | undefined;
3406
+ plugins?: string[] | undefined;
3407
+ } | undefined;
3408
+ }, {
3409
+ config?: {
3410
+ content?: string[] | undefined;
3411
+ theme?: Record<string, any> | undefined;
3412
+ plugins?: string[] | undefined;
3413
+ } | undefined;
3414
+ }>>;
3415
+ cssVars: z.ZodOptional<z.ZodObject<{
3416
+ theme: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3417
+ light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3418
+ dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3419
+ }, "strip", z.ZodTypeAny, {
3420
+ theme?: Record<string, string> | undefined;
3421
+ light?: Record<string, string> | undefined;
3422
+ dark?: Record<string, string> | undefined;
3423
+ }, {
3424
+ theme?: Record<string, string> | undefined;
3425
+ light?: Record<string, string> | undefined;
3426
+ dark?: Record<string, string> | undefined;
3427
+ }>>;
3428
+ css: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<any, z.ZodTypeDef, any>>>;
3429
+ envVars: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3430
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
3431
+ docs: z.ZodOptional<z.ZodString>;
3432
+ categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3433
+ } & {
3434
+ type: z.ZodLiteral<"registry:font">;
3435
+ font: z.ZodObject<{
3436
+ family: z.ZodString;
3437
+ provider: z.ZodLiteral<"google">;
3438
+ import: z.ZodString;
3439
+ variable: z.ZodString;
3440
+ weight: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3441
+ subsets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3442
+ }, "strip", z.ZodTypeAny, {
3443
+ family: string;
3444
+ provider: "google";
3445
+ import: string;
3446
+ variable: string;
3447
+ weight?: string[] | undefined;
3448
+ subsets?: string[] | undefined;
3449
+ }, {
3450
+ family: string;
3451
+ provider: "google";
3452
+ import: string;
3453
+ variable: string;
3454
+ weight?: string[] | undefined;
3455
+ subsets?: string[] | undefined;
3456
+ }>;
3457
+ }, "strip", z.ZodTypeAny, {
3458
+ type: "registry:font";
3459
+ name: string;
3460
+ font: {
3461
+ family: string;
3462
+ provider: "google";
3463
+ import: string;
3464
+ variable: string;
3465
+ weight?: string[] | undefined;
3466
+ subsets?: string[] | undefined;
3467
+ };
3468
+ tailwind?: {
3469
+ config?: {
3470
+ content?: string[] | undefined;
3471
+ theme?: Record<string, any> | undefined;
3472
+ plugins?: string[] | undefined;
3473
+ } | undefined;
3474
+ } | undefined;
3475
+ $schema?: string | undefined;
3476
+ css?: Record<string, any> | undefined;
3477
+ extends?: string | undefined;
3478
+ title?: string | undefined;
3479
+ author?: string | undefined;
3480
+ description?: string | undefined;
3481
+ dependencies?: string[] | undefined;
3482
+ devDependencies?: string[] | undefined;
3483
+ registryDependencies?: string[] | undefined;
3484
+ files?: ({
3485
+ path: string;
3486
+ type: "registry:page" | "registry:file";
3487
+ target: string;
3488
+ content?: string | undefined;
3489
+ } | {
3490
+ path: string;
3491
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3492
+ content?: string | undefined;
3493
+ target?: string | undefined;
3494
+ })[] | undefined;
3495
+ cssVars?: {
3496
+ theme?: Record<string, string> | undefined;
3497
+ light?: Record<string, string> | undefined;
3498
+ dark?: Record<string, string> | undefined;
3499
+ } | undefined;
3500
+ envVars?: Record<string, string> | undefined;
3501
+ meta?: Record<string, any> | undefined;
3502
+ docs?: string | undefined;
3503
+ categories?: string[] | undefined;
3504
+ }, {
3505
+ type: "registry:font";
3506
+ name: string;
3507
+ font: {
3508
+ family: string;
3509
+ provider: "google";
3510
+ import: string;
3511
+ variable: string;
3512
+ weight?: string[] | undefined;
3513
+ subsets?: string[] | undefined;
3514
+ };
3515
+ tailwind?: {
3516
+ config?: {
3517
+ content?: string[] | undefined;
3518
+ theme?: Record<string, any> | undefined;
3519
+ plugins?: string[] | undefined;
3520
+ } | undefined;
3521
+ } | undefined;
3522
+ $schema?: string | undefined;
3523
+ css?: Record<string, any> | undefined;
3524
+ extends?: string | undefined;
3525
+ title?: string | undefined;
3526
+ author?: string | undefined;
3527
+ description?: string | undefined;
3528
+ dependencies?: string[] | undefined;
3529
+ devDependencies?: string[] | undefined;
3530
+ registryDependencies?: string[] | undefined;
3531
+ files?: ({
3532
+ path: string;
3533
+ type: "registry:page" | "registry:file";
3534
+ target: string;
3535
+ content?: string | undefined;
3536
+ } | {
3537
+ path: string;
3538
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3539
+ content?: string | undefined;
3540
+ target?: string | undefined;
3541
+ })[] | undefined;
3542
+ cssVars?: {
3543
+ theme?: Record<string, string> | undefined;
3544
+ light?: Record<string, string> | undefined;
3545
+ dark?: Record<string, string> | undefined;
3546
+ } | undefined;
3547
+ envVars?: Record<string, string> | undefined;
3548
+ meta?: Record<string, any> | undefined;
3549
+ docs?: string | undefined;
3550
+ categories?: string[] | undefined;
3551
+ }>, "many">>;
3552
+ }, "strip", z.ZodTypeAny, {
3553
+ tailwind?: {
3554
+ config?: {
3555
+ content?: string[] | undefined;
3556
+ theme?: Record<string, any> | undefined;
3557
+ plugins?: string[] | undefined;
3558
+ } | undefined;
3559
+ } | undefined;
3560
+ css?: Record<string, any> | undefined;
3561
+ dependencies?: string[] | undefined;
3562
+ devDependencies?: string[] | undefined;
3563
+ files?: ({
3564
+ path: string;
3565
+ type: "registry:page" | "registry:file";
3566
+ target: string;
3567
+ content?: string | undefined;
3568
+ } | {
3569
+ path: string;
3570
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3571
+ content?: string | undefined;
3572
+ target?: string | undefined;
3573
+ })[] | undefined;
3574
+ cssVars?: {
3575
+ theme?: Record<string, string> | undefined;
3576
+ light?: Record<string, string> | undefined;
3577
+ dark?: Record<string, string> | undefined;
3578
+ } | undefined;
3579
+ envVars?: Record<string, string> | undefined;
3580
+ docs?: string | undefined;
3581
+ fonts?: {
3582
+ type: "registry:font";
3583
+ name: string;
3584
+ font: {
3585
+ family: string;
3586
+ provider: "google";
3587
+ import: string;
3588
+ variable: string;
3589
+ weight?: string[] | undefined;
3590
+ subsets?: string[] | undefined;
3591
+ };
3592
+ tailwind?: {
3593
+ config?: {
3594
+ content?: string[] | undefined;
3595
+ theme?: Record<string, any> | undefined;
3596
+ plugins?: string[] | undefined;
3597
+ } | undefined;
3598
+ } | undefined;
3599
+ $schema?: string | undefined;
3600
+ css?: Record<string, any> | undefined;
3601
+ extends?: string | undefined;
3602
+ title?: string | undefined;
3603
+ author?: string | undefined;
3604
+ description?: string | undefined;
3605
+ dependencies?: string[] | undefined;
3606
+ devDependencies?: string[] | undefined;
3607
+ registryDependencies?: string[] | undefined;
3608
+ files?: ({
3609
+ path: string;
3610
+ type: "registry:page" | "registry:file";
3611
+ target: string;
3612
+ content?: string | undefined;
3613
+ } | {
3614
+ path: string;
3615
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3616
+ content?: string | undefined;
3617
+ target?: string | undefined;
3618
+ })[] | undefined;
3619
+ cssVars?: {
3620
+ theme?: Record<string, string> | undefined;
3621
+ light?: Record<string, string> | undefined;
3622
+ dark?: Record<string, string> | undefined;
3623
+ } | undefined;
3624
+ envVars?: Record<string, string> | undefined;
3625
+ meta?: Record<string, any> | undefined;
3626
+ docs?: string | undefined;
3627
+ categories?: string[] | undefined;
3628
+ }[] | undefined;
3629
+ }, {
3630
+ tailwind?: {
3631
+ config?: {
3632
+ content?: string[] | undefined;
3633
+ theme?: Record<string, any> | undefined;
3634
+ plugins?: string[] | undefined;
3635
+ } | undefined;
3636
+ } | undefined;
3637
+ css?: Record<string, any> | undefined;
3638
+ dependencies?: string[] | undefined;
3639
+ devDependencies?: string[] | undefined;
3640
+ files?: ({
3641
+ path: string;
3642
+ type: "registry:page" | "registry:file";
3643
+ target: string;
3644
+ content?: string | undefined;
3645
+ } | {
3646
+ path: string;
3647
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3648
+ content?: string | undefined;
3649
+ target?: string | undefined;
3650
+ })[] | undefined;
3651
+ cssVars?: {
3652
+ theme?: Record<string, string> | undefined;
3653
+ light?: Record<string, string> | undefined;
3654
+ dark?: Record<string, string> | undefined;
3655
+ } | undefined;
3656
+ envVars?: Record<string, string> | undefined;
3657
+ docs?: string | undefined;
3658
+ fonts?: {
3659
+ type: "registry:font";
3660
+ name: string;
3661
+ font: {
3662
+ family: string;
3663
+ provider: "google";
3664
+ import: string;
3665
+ variable: string;
3666
+ weight?: string[] | undefined;
3667
+ subsets?: string[] | undefined;
3668
+ };
3669
+ tailwind?: {
3670
+ config?: {
3671
+ content?: string[] | undefined;
3672
+ theme?: Record<string, any> | undefined;
3673
+ plugins?: string[] | undefined;
3674
+ } | undefined;
3675
+ } | undefined;
3676
+ $schema?: string | undefined;
3677
+ css?: Record<string, any> | undefined;
3678
+ extends?: string | undefined;
3679
+ title?: string | undefined;
3680
+ author?: string | undefined;
3681
+ description?: string | undefined;
3682
+ dependencies?: string[] | undefined;
3683
+ devDependencies?: string[] | undefined;
3684
+ registryDependencies?: string[] | undefined;
3685
+ files?: ({
3686
+ path: string;
3687
+ type: "registry:page" | "registry:file";
3688
+ target: string;
3689
+ content?: string | undefined;
3690
+ } | {
3691
+ path: string;
3692
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:style" | "registry:item" | "registry:base" | "registry:font" | "registry:example" | "registry:internal";
3693
+ content?: string | undefined;
3694
+ target?: string | undefined;
3695
+ })[] | undefined;
3696
+ cssVars?: {
3697
+ theme?: Record<string, string> | undefined;
3698
+ light?: Record<string, string> | undefined;
3699
+ dark?: Record<string, string> | undefined;
3700
+ } | undefined;
3701
+ envVars?: Record<string, string> | undefined;
3702
+ meta?: Record<string, any> | undefined;
3703
+ docs?: string | undefined;
3704
+ categories?: string[] | undefined;
3705
+ }[] | undefined;
3706
+ }>;
3707
+ declare const searchResultItemSchema: z.ZodObject<{
3708
+ name: z.ZodString;
3709
+ type: z.ZodOptional<z.ZodString>;
3710
+ description: z.ZodOptional<z.ZodString>;
3711
+ registry: z.ZodString;
3712
+ addCommandArgument: z.ZodString;
3713
+ }, "strip", z.ZodTypeAny, {
3714
+ name: string;
3715
+ registry: string;
3716
+ addCommandArgument: string;
3717
+ type?: string | undefined;
3718
+ description?: string | undefined;
3719
+ }, {
3720
+ name: string;
3721
+ registry: string;
3722
+ addCommandArgument: string;
3723
+ type?: string | undefined;
3724
+ description?: string | undefined;
3725
+ }>;
3726
+ declare const searchResultsSchema: z.ZodObject<{
3727
+ pagination: z.ZodObject<{
3728
+ total: z.ZodNumber;
3729
+ offset: z.ZodNumber;
3730
+ limit: z.ZodNumber;
3731
+ hasMore: z.ZodBoolean;
3732
+ }, "strip", z.ZodTypeAny, {
3733
+ total: number;
3734
+ offset: number;
3735
+ limit: number;
3736
+ hasMore: boolean;
3737
+ }, {
3738
+ total: number;
3739
+ offset: number;
3740
+ limit: number;
3741
+ hasMore: boolean;
3742
+ }>;
3743
+ items: z.ZodArray<z.ZodObject<{
3744
+ name: z.ZodString;
3745
+ type: z.ZodOptional<z.ZodString>;
3746
+ description: z.ZodOptional<z.ZodString>;
3747
+ registry: z.ZodString;
3748
+ addCommandArgument: z.ZodString;
3749
+ }, "strip", z.ZodTypeAny, {
3750
+ name: string;
3751
+ registry: string;
3752
+ addCommandArgument: string;
3753
+ type?: string | undefined;
3754
+ description?: string | undefined;
3755
+ }, {
3756
+ name: string;
3757
+ registry: string;
3758
+ addCommandArgument: string;
3759
+ type?: string | undefined;
3760
+ description?: string | undefined;
3761
+ }>, "many">;
3762
+ }, "strip", z.ZodTypeAny, {
3763
+ items: {
3764
+ name: string;
3765
+ registry: string;
3766
+ addCommandArgument: string;
3767
+ type?: string | undefined;
3768
+ description?: string | undefined;
3769
+ }[];
3770
+ pagination: {
3771
+ total: number;
3772
+ offset: number;
3773
+ limit: number;
3774
+ hasMore: boolean;
3775
+ };
3776
+ }, {
3777
+ items: {
3778
+ name: string;
3779
+ registry: string;
3780
+ addCommandArgument: string;
3781
+ type?: string | undefined;
3782
+ description?: string | undefined;
3783
+ }[];
3784
+ pagination: {
3785
+ total: number;
3786
+ offset: number;
3787
+ limit: number;
3788
+ hasMore: boolean;
3789
+ };
3790
+ }>;
3791
+ declare const registriesIndexSchema: z.ZodRecord<z.ZodString, z.ZodString>;
3792
+ declare const presetSchema: z.ZodObject<{
3793
+ name: z.ZodString;
3794
+ title: z.ZodString;
3795
+ description: z.ZodString;
3796
+ base: z.ZodString;
3797
+ style: z.ZodString;
3798
+ baseColor: z.ZodString;
3799
+ theme: z.ZodString;
3800
+ iconLibrary: z.ZodString;
3801
+ font: z.ZodString;
3802
+ menuAccent: z.ZodEnum<["subtle", "bold"]>;
3803
+ menuColor: z.ZodEnum<["default", "inverted"]>;
3804
+ radius: z.ZodString;
3805
+ }, "strip", z.ZodTypeAny, {
3806
+ style: string;
3807
+ baseColor: string;
3808
+ iconLibrary: string;
3809
+ menuColor: "default" | "inverted";
3810
+ menuAccent: "subtle" | "bold";
3811
+ theme: string;
3812
+ name: string;
3813
+ title: string;
3814
+ description: string;
3815
+ font: string;
3816
+ base: string;
3817
+ radius: string;
3818
+ }, {
3819
+ style: string;
3820
+ baseColor: string;
3821
+ iconLibrary: string;
3822
+ menuColor: "default" | "inverted";
3823
+ menuAccent: "subtle" | "bold";
3824
+ theme: string;
3825
+ name: string;
3826
+ title: string;
3827
+ description: string;
3828
+ font: string;
3829
+ base: string;
3830
+ radius: string;
3831
+ }>;
3832
+ type Preset = z.infer<typeof presetSchema>;
3833
+ declare const configJsonSchema: z.ZodObject<{
3834
+ presets: z.ZodArray<z.ZodObject<{
3835
+ name: z.ZodString;
3836
+ title: z.ZodString;
3837
+ description: z.ZodString;
3838
+ base: z.ZodString;
3839
+ style: z.ZodString;
3840
+ baseColor: z.ZodString;
3841
+ theme: z.ZodString;
3842
+ iconLibrary: z.ZodString;
3843
+ font: z.ZodString;
3844
+ menuAccent: z.ZodEnum<["subtle", "bold"]>;
3845
+ menuColor: z.ZodEnum<["default", "inverted"]>;
3846
+ radius: z.ZodString;
3847
+ }, "strip", z.ZodTypeAny, {
3848
+ style: string;
3849
+ baseColor: string;
3850
+ iconLibrary: string;
3851
+ menuColor: "default" | "inverted";
3852
+ menuAccent: "subtle" | "bold";
3853
+ theme: string;
3854
+ name: string;
3855
+ title: string;
3856
+ description: string;
3857
+ font: string;
3858
+ base: string;
3859
+ radius: string;
3860
+ }, {
3861
+ style: string;
3862
+ baseColor: string;
3863
+ iconLibrary: string;
3864
+ menuColor: "default" | "inverted";
3865
+ menuAccent: "subtle" | "bold";
3866
+ theme: string;
3867
+ name: string;
3868
+ title: string;
3869
+ description: string;
3870
+ font: string;
3871
+ base: string;
3872
+ radius: string;
3873
+ }>, "many">;
3874
+ }, "strip", z.ZodTypeAny, {
3875
+ presets: {
3876
+ style: string;
3877
+ baseColor: string;
3878
+ iconLibrary: string;
3879
+ menuColor: "default" | "inverted";
3880
+ menuAccent: "subtle" | "bold";
3881
+ theme: string;
3882
+ name: string;
3883
+ title: string;
3884
+ description: string;
3885
+ font: string;
3886
+ base: string;
3887
+ radius: string;
3888
+ }[];
3889
+ }, {
3890
+ presets: {
3891
+ style: string;
3892
+ baseColor: string;
3893
+ iconLibrary: string;
3894
+ menuColor: "default" | "inverted";
3895
+ menuAccent: "subtle" | "bold";
3896
+ theme: string;
3897
+ name: string;
3898
+ title: string;
3899
+ description: string;
3900
+ font: string;
3901
+ base: string;
3902
+ radius: string;
3903
+ }[];
3904
+ }>;
3905
+ type ConfigJson = z.infer<typeof configJsonSchema>;
3906
+
3907
+ export { type ConfigJson, type Preset, type Registry, type RegistryBaseItem, type RegistryFontItem, type RegistryItem, configJsonSchema, configSchema, iconsSchema, presetSchema, rawConfigSchema, registriesIndexSchema, registryBaseColorSchema, registryConfigItemSchema, registryConfigSchema, registryIndexSchema, registryItemCommonSchema, registryItemCssSchema, registryItemCssVarsSchema, registryItemEnvVarsSchema, registryItemFileSchema, registryItemFontSchema, registryItemSchema, registryItemTailwindSchema, registryItemTypeSchema, registryResolvedItemsTreeSchema, registrySchema, searchResultItemSchema, searchResultsSchema, stylesSchema, workspaceConfigSchema };