@mulmocast/types 2.1.38 → 2.2.0

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