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