@mulmocast/types 2.1.38 → 2.1.40

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