@mulmocast/types 2.1.38 → 2.1.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/schema.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { z } from "zod";
2
2
  export { mulmoVideoFilterSchema } from "./schema_video_filter.js";
3
+ export { mulmoSlideMediaSchema } from "./slide.js";
3
4
  export declare const langSchema: z.ZodString;
4
5
  export declare const localizedTextSchema: z.ZodObject<{
5
6
  text: z.ZodString;
@@ -192,8 +193,8 @@ export declare const backgroundImageSourceSchema: z.ZodObject<{
192
193
  }, z.core.$strict>], "kind">;
193
194
  size: z.ZodOptional<z.ZodEnum<{
194
195
  auto: "auto";
195
- cover: "cover";
196
196
  contain: "contain";
197
+ cover: "cover";
197
198
  fill: "fill";
198
199
  }>>;
199
200
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -211,8 +212,8 @@ export declare const backgroundImageSchema: z.ZodOptional<z.ZodNullable<z.ZodUni
211
212
  }, z.core.$strict>], "kind">;
212
213
  size: z.ZodOptional<z.ZodEnum<{
213
214
  auto: "auto";
214
- cover: "cover";
215
215
  contain: "contain";
216
+ cover: "cover";
216
217
  fill: "fill";
217
218
  }>>;
218
219
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -255,8 +256,8 @@ export declare const mulmoMarkdownMediaSchema: z.ZodObject<{
255
256
  }, z.core.$strict>], "kind">;
256
257
  size: z.ZodOptional<z.ZodEnum<{
257
258
  auto: "auto";
258
- cover: "cover";
259
259
  contain: "contain";
260
+ cover: "cover";
260
261
  fill: "fill";
261
262
  }>>;
262
263
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -296,8 +297,8 @@ export declare const mulmoTextSlideMediaSchema: z.ZodObject<{
296
297
  }, z.core.$strict>], "kind">;
297
298
  size: z.ZodOptional<z.ZodEnum<{
298
299
  auto: "auto";
299
- cover: "cover";
300
300
  contain: "contain";
301
+ cover: "cover";
301
302
  fill: "fill";
302
303
  }>>;
303
304
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -363,8 +364,8 @@ export declare const mulmoMermaidMediaSchema: z.ZodObject<{
363
364
  }, z.core.$strict>], "kind">;
364
365
  size: z.ZodOptional<z.ZodEnum<{
365
366
  auto: "auto";
366
- cover: "cover";
367
367
  contain: "contain";
368
+ cover: "cover";
368
369
  fill: "fill";
369
370
  }>>;
370
371
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -413,8 +414,8 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
413
414
  }, z.core.$strict>], "kind">;
414
415
  size: z.ZodOptional<z.ZodEnum<{
415
416
  auto: "auto";
416
- cover: "cover";
417
417
  contain: "contain";
418
+ cover: "cover";
418
419
  fill: "fill";
419
420
  }>>;
420
421
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -491,8 +492,8 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
491
492
  }, z.core.$strict>], "kind">;
492
493
  size: z.ZodOptional<z.ZodEnum<{
493
494
  auto: "auto";
494
- cover: "cover";
495
495
  contain: "contain";
496
+ cover: "cover";
496
497
  fill: "fill";
497
498
  }>>;
498
499
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -532,8 +533,8 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
532
533
  }, z.core.$strict>], "kind">;
533
534
  size: z.ZodOptional<z.ZodEnum<{
534
535
  auto: "auto";
535
- cover: "cover";
536
536
  contain: "contain";
537
+ cover: "cover";
537
538
  fill: "fill";
538
539
  }>>;
539
540
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -551,6 +552,1082 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
551
552
  type: z.ZodLiteral<"vision">;
552
553
  style: z.ZodString;
553
554
  data: z.ZodRecord<z.ZodString, z.ZodAny>;
555
+ }, z.core.$strict>, z.ZodObject<{
556
+ type: z.ZodLiteral<"slide">;
557
+ theme: z.ZodOptional<z.ZodObject<{
558
+ colors: z.ZodObject<{
559
+ bg: z.ZodString;
560
+ bgCard: z.ZodString;
561
+ bgCardAlt: z.ZodString;
562
+ text: z.ZodString;
563
+ textMuted: z.ZodString;
564
+ textDim: z.ZodString;
565
+ primary: z.ZodString;
566
+ accent: z.ZodString;
567
+ success: z.ZodString;
568
+ warning: z.ZodString;
569
+ danger: z.ZodString;
570
+ info: z.ZodString;
571
+ highlight: z.ZodString;
572
+ }, z.core.$strip>;
573
+ fonts: z.ZodObject<{
574
+ title: z.ZodString;
575
+ body: z.ZodString;
576
+ mono: z.ZodString;
577
+ }, z.core.$strip>;
578
+ }, z.core.$strip>>;
579
+ slide: z.ZodDiscriminatedUnion<[z.ZodObject<{
580
+ title: z.ZodString;
581
+ subtitle: z.ZodOptional<z.ZodString>;
582
+ author: z.ZodOptional<z.ZodString>;
583
+ note: z.ZodOptional<z.ZodString>;
584
+ accentColor: z.ZodOptional<z.ZodEnum<{
585
+ success: "success";
586
+ primary: "primary";
587
+ accent: "accent";
588
+ warning: "warning";
589
+ danger: "danger";
590
+ info: "info";
591
+ highlight: "highlight";
592
+ }>>;
593
+ style: z.ZodOptional<z.ZodObject<{
594
+ bgColor: z.ZodOptional<z.ZodString>;
595
+ decorations: z.ZodOptional<z.ZodBoolean>;
596
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
597
+ footer: z.ZodOptional<z.ZodString>;
598
+ }, z.core.$strip>>;
599
+ layout: z.ZodLiteral<"title">;
600
+ }, z.core.$strip>, z.ZodObject<{
601
+ title: z.ZodString;
602
+ stepLabel: z.ZodOptional<z.ZodString>;
603
+ subtitle: z.ZodOptional<z.ZodString>;
604
+ columns: z.ZodArray<z.ZodObject<{
605
+ title: z.ZodString;
606
+ accentColor: z.ZodOptional<z.ZodEnum<{
607
+ success: "success";
608
+ primary: "primary";
609
+ accent: "accent";
610
+ warning: "warning";
611
+ danger: "danger";
612
+ info: "info";
613
+ highlight: "highlight";
614
+ }>>;
615
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
616
+ type: z.ZodLiteral<"text">;
617
+ value: z.ZodString;
618
+ align: z.ZodOptional<z.ZodEnum<{
619
+ left: "left";
620
+ center: "center";
621
+ right: "right";
622
+ }>>;
623
+ bold: z.ZodOptional<z.ZodBoolean>;
624
+ dim: z.ZodOptional<z.ZodBoolean>;
625
+ fontSize: z.ZodOptional<z.ZodNumber>;
626
+ color: z.ZodOptional<z.ZodEnum<{
627
+ success: "success";
628
+ primary: "primary";
629
+ accent: "accent";
630
+ warning: "warning";
631
+ danger: "danger";
632
+ info: "info";
633
+ highlight: "highlight";
634
+ }>>;
635
+ }, z.core.$strip>, z.ZodObject<{
636
+ type: z.ZodLiteral<"bullets">;
637
+ items: z.ZodArray<z.ZodString>;
638
+ ordered: z.ZodOptional<z.ZodBoolean>;
639
+ icon: z.ZodOptional<z.ZodString>;
640
+ }, z.core.$strip>, z.ZodObject<{
641
+ type: z.ZodLiteral<"code">;
642
+ code: z.ZodString;
643
+ language: z.ZodOptional<z.ZodString>;
644
+ }, z.core.$strip>, z.ZodObject<{
645
+ type: z.ZodLiteral<"callout">;
646
+ text: z.ZodString;
647
+ label: z.ZodOptional<z.ZodString>;
648
+ color: z.ZodOptional<z.ZodEnum<{
649
+ success: "success";
650
+ primary: "primary";
651
+ accent: "accent";
652
+ warning: "warning";
653
+ danger: "danger";
654
+ info: "info";
655
+ highlight: "highlight";
656
+ }>>;
657
+ style: z.ZodOptional<z.ZodEnum<{
658
+ warning: "warning";
659
+ info: "info";
660
+ quote: "quote";
661
+ }>>;
662
+ }, z.core.$strip>, z.ZodObject<{
663
+ type: z.ZodLiteral<"metric">;
664
+ value: z.ZodString;
665
+ label: z.ZodString;
666
+ color: z.ZodOptional<z.ZodEnum<{
667
+ success: "success";
668
+ primary: "primary";
669
+ accent: "accent";
670
+ warning: "warning";
671
+ danger: "danger";
672
+ info: "info";
673
+ highlight: "highlight";
674
+ }>>;
675
+ change: z.ZodOptional<z.ZodString>;
676
+ }, z.core.$strip>, z.ZodObject<{
677
+ type: z.ZodLiteral<"divider">;
678
+ color: z.ZodOptional<z.ZodEnum<{
679
+ success: "success";
680
+ primary: "primary";
681
+ accent: "accent";
682
+ warning: "warning";
683
+ danger: "danger";
684
+ info: "info";
685
+ highlight: "highlight";
686
+ }>>;
687
+ }, z.core.$strip>, z.ZodObject<{
688
+ type: z.ZodLiteral<"image">;
689
+ src: z.ZodString;
690
+ alt: z.ZodOptional<z.ZodString>;
691
+ fit: z.ZodOptional<z.ZodEnum<{
692
+ contain: "contain";
693
+ cover: "cover";
694
+ }>>;
695
+ }, z.core.$strip>], "type">>>;
696
+ footer: z.ZodOptional<z.ZodString>;
697
+ label: z.ZodOptional<z.ZodString>;
698
+ num: z.ZodOptional<z.ZodNumber>;
699
+ icon: z.ZodOptional<z.ZodString>;
700
+ }, z.core.$strip>>;
701
+ showArrows: z.ZodOptional<z.ZodBoolean>;
702
+ callout: z.ZodOptional<z.ZodObject<{
703
+ text: z.ZodString;
704
+ label: z.ZodOptional<z.ZodString>;
705
+ color: z.ZodOptional<z.ZodEnum<{
706
+ success: "success";
707
+ primary: "primary";
708
+ accent: "accent";
709
+ warning: "warning";
710
+ danger: "danger";
711
+ info: "info";
712
+ highlight: "highlight";
713
+ }>>;
714
+ align: z.ZodOptional<z.ZodEnum<{
715
+ left: "left";
716
+ center: "center";
717
+ }>>;
718
+ leftBar: z.ZodOptional<z.ZodBoolean>;
719
+ }, z.core.$strip>>;
720
+ bottomText: z.ZodOptional<z.ZodString>;
721
+ accentColor: z.ZodOptional<z.ZodEnum<{
722
+ success: "success";
723
+ primary: "primary";
724
+ accent: "accent";
725
+ warning: "warning";
726
+ danger: "danger";
727
+ info: "info";
728
+ highlight: "highlight";
729
+ }>>;
730
+ style: z.ZodOptional<z.ZodObject<{
731
+ bgColor: z.ZodOptional<z.ZodString>;
732
+ decorations: z.ZodOptional<z.ZodBoolean>;
733
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
734
+ footer: z.ZodOptional<z.ZodString>;
735
+ }, z.core.$strip>>;
736
+ layout: z.ZodLiteral<"columns">;
737
+ }, z.core.$strip>, z.ZodObject<{
738
+ title: z.ZodString;
739
+ stepLabel: z.ZodOptional<z.ZodString>;
740
+ subtitle: z.ZodOptional<z.ZodString>;
741
+ left: z.ZodObject<{
742
+ title: z.ZodString;
743
+ accentColor: z.ZodOptional<z.ZodEnum<{
744
+ success: "success";
745
+ primary: "primary";
746
+ accent: "accent";
747
+ warning: "warning";
748
+ danger: "danger";
749
+ info: "info";
750
+ highlight: "highlight";
751
+ }>>;
752
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
753
+ type: z.ZodLiteral<"text">;
754
+ value: z.ZodString;
755
+ align: z.ZodOptional<z.ZodEnum<{
756
+ left: "left";
757
+ center: "center";
758
+ right: "right";
759
+ }>>;
760
+ bold: z.ZodOptional<z.ZodBoolean>;
761
+ dim: z.ZodOptional<z.ZodBoolean>;
762
+ fontSize: z.ZodOptional<z.ZodNumber>;
763
+ color: z.ZodOptional<z.ZodEnum<{
764
+ success: "success";
765
+ primary: "primary";
766
+ accent: "accent";
767
+ warning: "warning";
768
+ danger: "danger";
769
+ info: "info";
770
+ highlight: "highlight";
771
+ }>>;
772
+ }, z.core.$strip>, z.ZodObject<{
773
+ type: z.ZodLiteral<"bullets">;
774
+ items: z.ZodArray<z.ZodString>;
775
+ ordered: z.ZodOptional<z.ZodBoolean>;
776
+ icon: z.ZodOptional<z.ZodString>;
777
+ }, z.core.$strip>, z.ZodObject<{
778
+ type: z.ZodLiteral<"code">;
779
+ code: z.ZodString;
780
+ language: z.ZodOptional<z.ZodString>;
781
+ }, z.core.$strip>, z.ZodObject<{
782
+ type: z.ZodLiteral<"callout">;
783
+ text: z.ZodString;
784
+ label: z.ZodOptional<z.ZodString>;
785
+ color: z.ZodOptional<z.ZodEnum<{
786
+ success: "success";
787
+ primary: "primary";
788
+ accent: "accent";
789
+ warning: "warning";
790
+ danger: "danger";
791
+ info: "info";
792
+ highlight: "highlight";
793
+ }>>;
794
+ style: z.ZodOptional<z.ZodEnum<{
795
+ warning: "warning";
796
+ info: "info";
797
+ quote: "quote";
798
+ }>>;
799
+ }, z.core.$strip>, z.ZodObject<{
800
+ type: z.ZodLiteral<"metric">;
801
+ value: z.ZodString;
802
+ label: z.ZodString;
803
+ color: z.ZodOptional<z.ZodEnum<{
804
+ success: "success";
805
+ primary: "primary";
806
+ accent: "accent";
807
+ warning: "warning";
808
+ danger: "danger";
809
+ info: "info";
810
+ highlight: "highlight";
811
+ }>>;
812
+ change: z.ZodOptional<z.ZodString>;
813
+ }, z.core.$strip>, z.ZodObject<{
814
+ type: z.ZodLiteral<"divider">;
815
+ color: z.ZodOptional<z.ZodEnum<{
816
+ success: "success";
817
+ primary: "primary";
818
+ accent: "accent";
819
+ warning: "warning";
820
+ danger: "danger";
821
+ info: "info";
822
+ highlight: "highlight";
823
+ }>>;
824
+ }, z.core.$strip>, z.ZodObject<{
825
+ type: z.ZodLiteral<"image">;
826
+ src: z.ZodString;
827
+ alt: z.ZodOptional<z.ZodString>;
828
+ fit: z.ZodOptional<z.ZodEnum<{
829
+ contain: "contain";
830
+ cover: "cover";
831
+ }>>;
832
+ }, z.core.$strip>], "type">>>;
833
+ footer: z.ZodOptional<z.ZodString>;
834
+ }, z.core.$strip>;
835
+ right: z.ZodObject<{
836
+ title: z.ZodString;
837
+ accentColor: z.ZodOptional<z.ZodEnum<{
838
+ success: "success";
839
+ primary: "primary";
840
+ accent: "accent";
841
+ warning: "warning";
842
+ danger: "danger";
843
+ info: "info";
844
+ highlight: "highlight";
845
+ }>>;
846
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
847
+ type: z.ZodLiteral<"text">;
848
+ value: z.ZodString;
849
+ align: z.ZodOptional<z.ZodEnum<{
850
+ left: "left";
851
+ center: "center";
852
+ right: "right";
853
+ }>>;
854
+ bold: z.ZodOptional<z.ZodBoolean>;
855
+ dim: z.ZodOptional<z.ZodBoolean>;
856
+ fontSize: z.ZodOptional<z.ZodNumber>;
857
+ color: z.ZodOptional<z.ZodEnum<{
858
+ success: "success";
859
+ primary: "primary";
860
+ accent: "accent";
861
+ warning: "warning";
862
+ danger: "danger";
863
+ info: "info";
864
+ highlight: "highlight";
865
+ }>>;
866
+ }, z.core.$strip>, z.ZodObject<{
867
+ type: z.ZodLiteral<"bullets">;
868
+ items: z.ZodArray<z.ZodString>;
869
+ ordered: z.ZodOptional<z.ZodBoolean>;
870
+ icon: z.ZodOptional<z.ZodString>;
871
+ }, z.core.$strip>, z.ZodObject<{
872
+ type: z.ZodLiteral<"code">;
873
+ code: z.ZodString;
874
+ language: z.ZodOptional<z.ZodString>;
875
+ }, z.core.$strip>, z.ZodObject<{
876
+ type: z.ZodLiteral<"callout">;
877
+ text: z.ZodString;
878
+ label: z.ZodOptional<z.ZodString>;
879
+ color: z.ZodOptional<z.ZodEnum<{
880
+ success: "success";
881
+ primary: "primary";
882
+ accent: "accent";
883
+ warning: "warning";
884
+ danger: "danger";
885
+ info: "info";
886
+ highlight: "highlight";
887
+ }>>;
888
+ style: z.ZodOptional<z.ZodEnum<{
889
+ warning: "warning";
890
+ info: "info";
891
+ quote: "quote";
892
+ }>>;
893
+ }, z.core.$strip>, z.ZodObject<{
894
+ type: z.ZodLiteral<"metric">;
895
+ value: z.ZodString;
896
+ label: z.ZodString;
897
+ color: z.ZodOptional<z.ZodEnum<{
898
+ success: "success";
899
+ primary: "primary";
900
+ accent: "accent";
901
+ warning: "warning";
902
+ danger: "danger";
903
+ info: "info";
904
+ highlight: "highlight";
905
+ }>>;
906
+ change: z.ZodOptional<z.ZodString>;
907
+ }, z.core.$strip>, z.ZodObject<{
908
+ type: z.ZodLiteral<"divider">;
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
+ }, z.core.$strip>, z.ZodObject<{
919
+ type: z.ZodLiteral<"image">;
920
+ src: z.ZodString;
921
+ alt: z.ZodOptional<z.ZodString>;
922
+ fit: z.ZodOptional<z.ZodEnum<{
923
+ contain: "contain";
924
+ cover: "cover";
925
+ }>>;
926
+ }, z.core.$strip>], "type">>>;
927
+ footer: z.ZodOptional<z.ZodString>;
928
+ }, z.core.$strip>;
929
+ callout: z.ZodOptional<z.ZodObject<{
930
+ text: z.ZodString;
931
+ label: z.ZodOptional<z.ZodString>;
932
+ color: z.ZodOptional<z.ZodEnum<{
933
+ success: "success";
934
+ primary: "primary";
935
+ accent: "accent";
936
+ warning: "warning";
937
+ danger: "danger";
938
+ info: "info";
939
+ highlight: "highlight";
940
+ }>>;
941
+ align: z.ZodOptional<z.ZodEnum<{
942
+ left: "left";
943
+ center: "center";
944
+ }>>;
945
+ leftBar: z.ZodOptional<z.ZodBoolean>;
946
+ }, z.core.$strip>>;
947
+ accentColor: z.ZodOptional<z.ZodEnum<{
948
+ success: "success";
949
+ primary: "primary";
950
+ accent: "accent";
951
+ warning: "warning";
952
+ danger: "danger";
953
+ info: "info";
954
+ highlight: "highlight";
955
+ }>>;
956
+ style: z.ZodOptional<z.ZodObject<{
957
+ bgColor: z.ZodOptional<z.ZodString>;
958
+ decorations: z.ZodOptional<z.ZodBoolean>;
959
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
960
+ footer: z.ZodOptional<z.ZodString>;
961
+ }, z.core.$strip>>;
962
+ layout: z.ZodLiteral<"comparison">;
963
+ }, z.core.$strip>, z.ZodObject<{
964
+ title: z.ZodString;
965
+ subtitle: z.ZodOptional<z.ZodString>;
966
+ gridColumns: z.ZodOptional<z.ZodNumber>;
967
+ items: z.ZodArray<z.ZodObject<{
968
+ title: z.ZodString;
969
+ description: z.ZodOptional<z.ZodString>;
970
+ accentColor: z.ZodOptional<z.ZodEnum<{
971
+ success: "success";
972
+ primary: "primary";
973
+ accent: "accent";
974
+ warning: "warning";
975
+ danger: "danger";
976
+ info: "info";
977
+ highlight: "highlight";
978
+ }>>;
979
+ num: z.ZodOptional<z.ZodNumber>;
980
+ icon: z.ZodOptional<z.ZodString>;
981
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
982
+ type: z.ZodLiteral<"text">;
983
+ value: z.ZodString;
984
+ align: z.ZodOptional<z.ZodEnum<{
985
+ left: "left";
986
+ center: "center";
987
+ right: "right";
988
+ }>>;
989
+ bold: z.ZodOptional<z.ZodBoolean>;
990
+ dim: z.ZodOptional<z.ZodBoolean>;
991
+ fontSize: z.ZodOptional<z.ZodNumber>;
992
+ color: z.ZodOptional<z.ZodEnum<{
993
+ success: "success";
994
+ primary: "primary";
995
+ accent: "accent";
996
+ warning: "warning";
997
+ danger: "danger";
998
+ info: "info";
999
+ highlight: "highlight";
1000
+ }>>;
1001
+ }, z.core.$strip>, z.ZodObject<{
1002
+ type: z.ZodLiteral<"bullets">;
1003
+ items: z.ZodArray<z.ZodString>;
1004
+ ordered: z.ZodOptional<z.ZodBoolean>;
1005
+ icon: z.ZodOptional<z.ZodString>;
1006
+ }, z.core.$strip>, z.ZodObject<{
1007
+ type: z.ZodLiteral<"code">;
1008
+ code: z.ZodString;
1009
+ language: z.ZodOptional<z.ZodString>;
1010
+ }, z.core.$strip>, z.ZodObject<{
1011
+ type: z.ZodLiteral<"callout">;
1012
+ text: z.ZodString;
1013
+ label: z.ZodOptional<z.ZodString>;
1014
+ color: z.ZodOptional<z.ZodEnum<{
1015
+ success: "success";
1016
+ primary: "primary";
1017
+ accent: "accent";
1018
+ warning: "warning";
1019
+ danger: "danger";
1020
+ info: "info";
1021
+ highlight: "highlight";
1022
+ }>>;
1023
+ style: z.ZodOptional<z.ZodEnum<{
1024
+ warning: "warning";
1025
+ info: "info";
1026
+ quote: "quote";
1027
+ }>>;
1028
+ }, z.core.$strip>, z.ZodObject<{
1029
+ type: z.ZodLiteral<"metric">;
1030
+ value: z.ZodString;
1031
+ label: z.ZodString;
1032
+ color: z.ZodOptional<z.ZodEnum<{
1033
+ success: "success";
1034
+ primary: "primary";
1035
+ accent: "accent";
1036
+ warning: "warning";
1037
+ danger: "danger";
1038
+ info: "info";
1039
+ highlight: "highlight";
1040
+ }>>;
1041
+ change: z.ZodOptional<z.ZodString>;
1042
+ }, z.core.$strip>, z.ZodObject<{
1043
+ type: z.ZodLiteral<"divider">;
1044
+ color: z.ZodOptional<z.ZodEnum<{
1045
+ success: "success";
1046
+ primary: "primary";
1047
+ accent: "accent";
1048
+ warning: "warning";
1049
+ danger: "danger";
1050
+ info: "info";
1051
+ highlight: "highlight";
1052
+ }>>;
1053
+ }, z.core.$strip>, z.ZodObject<{
1054
+ type: z.ZodLiteral<"image">;
1055
+ src: z.ZodString;
1056
+ alt: z.ZodOptional<z.ZodString>;
1057
+ fit: z.ZodOptional<z.ZodEnum<{
1058
+ contain: "contain";
1059
+ cover: "cover";
1060
+ }>>;
1061
+ }, z.core.$strip>], "type">>>;
1062
+ }, z.core.$strip>>;
1063
+ footer: z.ZodOptional<z.ZodString>;
1064
+ accentColor: z.ZodOptional<z.ZodEnum<{
1065
+ success: "success";
1066
+ primary: "primary";
1067
+ accent: "accent";
1068
+ warning: "warning";
1069
+ danger: "danger";
1070
+ info: "info";
1071
+ highlight: "highlight";
1072
+ }>>;
1073
+ style: z.ZodOptional<z.ZodObject<{
1074
+ bgColor: z.ZodOptional<z.ZodString>;
1075
+ decorations: z.ZodOptional<z.ZodBoolean>;
1076
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1077
+ footer: z.ZodOptional<z.ZodString>;
1078
+ }, z.core.$strip>>;
1079
+ layout: z.ZodLiteral<"grid">;
1080
+ }, z.core.$strip>, z.ZodObject<{
1081
+ quote: z.ZodString;
1082
+ author: z.ZodOptional<z.ZodString>;
1083
+ role: z.ZodOptional<z.ZodString>;
1084
+ accentColor: z.ZodOptional<z.ZodEnum<{
1085
+ success: "success";
1086
+ primary: "primary";
1087
+ accent: "accent";
1088
+ warning: "warning";
1089
+ danger: "danger";
1090
+ info: "info";
1091
+ highlight: "highlight";
1092
+ }>>;
1093
+ style: z.ZodOptional<z.ZodObject<{
1094
+ bgColor: z.ZodOptional<z.ZodString>;
1095
+ decorations: z.ZodOptional<z.ZodBoolean>;
1096
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1097
+ footer: z.ZodOptional<z.ZodString>;
1098
+ }, z.core.$strip>>;
1099
+ layout: z.ZodLiteral<"bigQuote">;
1100
+ }, z.core.$strip>, z.ZodObject<{
1101
+ title: z.ZodString;
1102
+ stepLabel: z.ZodOptional<z.ZodString>;
1103
+ subtitle: z.ZodOptional<z.ZodString>;
1104
+ stats: z.ZodArray<z.ZodObject<{
1105
+ value: z.ZodString;
1106
+ label: z.ZodString;
1107
+ color: z.ZodOptional<z.ZodEnum<{
1108
+ success: "success";
1109
+ primary: "primary";
1110
+ accent: "accent";
1111
+ warning: "warning";
1112
+ danger: "danger";
1113
+ info: "info";
1114
+ highlight: "highlight";
1115
+ }>>;
1116
+ change: z.ZodOptional<z.ZodString>;
1117
+ }, z.core.$strip>>;
1118
+ callout: z.ZodOptional<z.ZodObject<{
1119
+ text: z.ZodString;
1120
+ label: z.ZodOptional<z.ZodString>;
1121
+ color: z.ZodOptional<z.ZodEnum<{
1122
+ success: "success";
1123
+ primary: "primary";
1124
+ accent: "accent";
1125
+ warning: "warning";
1126
+ danger: "danger";
1127
+ info: "info";
1128
+ highlight: "highlight";
1129
+ }>>;
1130
+ align: z.ZodOptional<z.ZodEnum<{
1131
+ left: "left";
1132
+ center: "center";
1133
+ }>>;
1134
+ leftBar: z.ZodOptional<z.ZodBoolean>;
1135
+ }, z.core.$strip>>;
1136
+ accentColor: z.ZodOptional<z.ZodEnum<{
1137
+ success: "success";
1138
+ primary: "primary";
1139
+ accent: "accent";
1140
+ warning: "warning";
1141
+ danger: "danger";
1142
+ info: "info";
1143
+ highlight: "highlight";
1144
+ }>>;
1145
+ style: z.ZodOptional<z.ZodObject<{
1146
+ bgColor: z.ZodOptional<z.ZodString>;
1147
+ decorations: z.ZodOptional<z.ZodBoolean>;
1148
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1149
+ footer: z.ZodOptional<z.ZodString>;
1150
+ }, z.core.$strip>>;
1151
+ layout: z.ZodLiteral<"stats">;
1152
+ }, z.core.$strip>, z.ZodObject<{
1153
+ title: z.ZodString;
1154
+ stepLabel: z.ZodOptional<z.ZodString>;
1155
+ subtitle: z.ZodOptional<z.ZodString>;
1156
+ items: z.ZodArray<z.ZodObject<{
1157
+ date: z.ZodString;
1158
+ title: z.ZodString;
1159
+ description: z.ZodOptional<z.ZodString>;
1160
+ color: z.ZodOptional<z.ZodEnum<{
1161
+ success: "success";
1162
+ primary: "primary";
1163
+ accent: "accent";
1164
+ warning: "warning";
1165
+ danger: "danger";
1166
+ info: "info";
1167
+ highlight: "highlight";
1168
+ }>>;
1169
+ done: z.ZodOptional<z.ZodBoolean>;
1170
+ }, z.core.$strip>>;
1171
+ accentColor: z.ZodOptional<z.ZodEnum<{
1172
+ success: "success";
1173
+ primary: "primary";
1174
+ accent: "accent";
1175
+ warning: "warning";
1176
+ danger: "danger";
1177
+ info: "info";
1178
+ highlight: "highlight";
1179
+ }>>;
1180
+ style: z.ZodOptional<z.ZodObject<{
1181
+ bgColor: z.ZodOptional<z.ZodString>;
1182
+ decorations: z.ZodOptional<z.ZodBoolean>;
1183
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1184
+ footer: z.ZodOptional<z.ZodString>;
1185
+ }, z.core.$strip>>;
1186
+ layout: z.ZodLiteral<"timeline">;
1187
+ }, z.core.$strip>, z.ZodObject<{
1188
+ left: z.ZodOptional<z.ZodObject<{
1189
+ title: z.ZodOptional<z.ZodString>;
1190
+ subtitle: z.ZodOptional<z.ZodString>;
1191
+ label: z.ZodOptional<z.ZodString>;
1192
+ accentColor: z.ZodOptional<z.ZodEnum<{
1193
+ success: "success";
1194
+ primary: "primary";
1195
+ accent: "accent";
1196
+ warning: "warning";
1197
+ danger: "danger";
1198
+ info: "info";
1199
+ highlight: "highlight";
1200
+ }>>;
1201
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1202
+ type: z.ZodLiteral<"text">;
1203
+ value: z.ZodString;
1204
+ align: z.ZodOptional<z.ZodEnum<{
1205
+ left: "left";
1206
+ center: "center";
1207
+ right: "right";
1208
+ }>>;
1209
+ bold: z.ZodOptional<z.ZodBoolean>;
1210
+ dim: z.ZodOptional<z.ZodBoolean>;
1211
+ fontSize: z.ZodOptional<z.ZodNumber>;
1212
+ color: z.ZodOptional<z.ZodEnum<{
1213
+ success: "success";
1214
+ primary: "primary";
1215
+ accent: "accent";
1216
+ warning: "warning";
1217
+ danger: "danger";
1218
+ info: "info";
1219
+ highlight: "highlight";
1220
+ }>>;
1221
+ }, z.core.$strip>, z.ZodObject<{
1222
+ type: z.ZodLiteral<"bullets">;
1223
+ items: z.ZodArray<z.ZodString>;
1224
+ ordered: z.ZodOptional<z.ZodBoolean>;
1225
+ icon: z.ZodOptional<z.ZodString>;
1226
+ }, z.core.$strip>, z.ZodObject<{
1227
+ type: z.ZodLiteral<"code">;
1228
+ code: z.ZodString;
1229
+ language: z.ZodOptional<z.ZodString>;
1230
+ }, z.core.$strip>, z.ZodObject<{
1231
+ type: z.ZodLiteral<"callout">;
1232
+ text: z.ZodString;
1233
+ label: z.ZodOptional<z.ZodString>;
1234
+ color: z.ZodOptional<z.ZodEnum<{
1235
+ success: "success";
1236
+ primary: "primary";
1237
+ accent: "accent";
1238
+ warning: "warning";
1239
+ danger: "danger";
1240
+ info: "info";
1241
+ highlight: "highlight";
1242
+ }>>;
1243
+ style: z.ZodOptional<z.ZodEnum<{
1244
+ warning: "warning";
1245
+ info: "info";
1246
+ quote: "quote";
1247
+ }>>;
1248
+ }, z.core.$strip>, z.ZodObject<{
1249
+ type: z.ZodLiteral<"metric">;
1250
+ value: z.ZodString;
1251
+ label: z.ZodString;
1252
+ color: z.ZodOptional<z.ZodEnum<{
1253
+ success: "success";
1254
+ primary: "primary";
1255
+ accent: "accent";
1256
+ warning: "warning";
1257
+ danger: "danger";
1258
+ info: "info";
1259
+ highlight: "highlight";
1260
+ }>>;
1261
+ change: z.ZodOptional<z.ZodString>;
1262
+ }, z.core.$strip>, z.ZodObject<{
1263
+ type: z.ZodLiteral<"divider">;
1264
+ color: z.ZodOptional<z.ZodEnum<{
1265
+ success: "success";
1266
+ primary: "primary";
1267
+ accent: "accent";
1268
+ warning: "warning";
1269
+ danger: "danger";
1270
+ info: "info";
1271
+ highlight: "highlight";
1272
+ }>>;
1273
+ }, z.core.$strip>, z.ZodObject<{
1274
+ type: z.ZodLiteral<"image">;
1275
+ src: z.ZodString;
1276
+ alt: z.ZodOptional<z.ZodString>;
1277
+ fit: z.ZodOptional<z.ZodEnum<{
1278
+ contain: "contain";
1279
+ cover: "cover";
1280
+ }>>;
1281
+ }, z.core.$strip>], "type">>>;
1282
+ dark: z.ZodOptional<z.ZodBoolean>;
1283
+ ratio: z.ZodOptional<z.ZodNumber>;
1284
+ }, z.core.$strip>>;
1285
+ right: z.ZodOptional<z.ZodObject<{
1286
+ title: z.ZodOptional<z.ZodString>;
1287
+ subtitle: z.ZodOptional<z.ZodString>;
1288
+ label: z.ZodOptional<z.ZodString>;
1289
+ accentColor: z.ZodOptional<z.ZodEnum<{
1290
+ success: "success";
1291
+ primary: "primary";
1292
+ accent: "accent";
1293
+ warning: "warning";
1294
+ danger: "danger";
1295
+ info: "info";
1296
+ highlight: "highlight";
1297
+ }>>;
1298
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1299
+ type: z.ZodLiteral<"text">;
1300
+ value: z.ZodString;
1301
+ align: z.ZodOptional<z.ZodEnum<{
1302
+ left: "left";
1303
+ center: "center";
1304
+ right: "right";
1305
+ }>>;
1306
+ bold: z.ZodOptional<z.ZodBoolean>;
1307
+ dim: z.ZodOptional<z.ZodBoolean>;
1308
+ fontSize: z.ZodOptional<z.ZodNumber>;
1309
+ color: 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
+ }, z.core.$strip>, z.ZodObject<{
1319
+ type: z.ZodLiteral<"bullets">;
1320
+ items: z.ZodArray<z.ZodString>;
1321
+ ordered: z.ZodOptional<z.ZodBoolean>;
1322
+ icon: z.ZodOptional<z.ZodString>;
1323
+ }, z.core.$strip>, z.ZodObject<{
1324
+ type: z.ZodLiteral<"code">;
1325
+ code: z.ZodString;
1326
+ language: z.ZodOptional<z.ZodString>;
1327
+ }, z.core.$strip>, z.ZodObject<{
1328
+ type: z.ZodLiteral<"callout">;
1329
+ text: z.ZodString;
1330
+ label: z.ZodOptional<z.ZodString>;
1331
+ color: z.ZodOptional<z.ZodEnum<{
1332
+ success: "success";
1333
+ primary: "primary";
1334
+ accent: "accent";
1335
+ warning: "warning";
1336
+ danger: "danger";
1337
+ info: "info";
1338
+ highlight: "highlight";
1339
+ }>>;
1340
+ style: z.ZodOptional<z.ZodEnum<{
1341
+ warning: "warning";
1342
+ info: "info";
1343
+ quote: "quote";
1344
+ }>>;
1345
+ }, z.core.$strip>, z.ZodObject<{
1346
+ type: z.ZodLiteral<"metric">;
1347
+ value: z.ZodString;
1348
+ label: z.ZodString;
1349
+ color: z.ZodOptional<z.ZodEnum<{
1350
+ success: "success";
1351
+ primary: "primary";
1352
+ accent: "accent";
1353
+ warning: "warning";
1354
+ danger: "danger";
1355
+ info: "info";
1356
+ highlight: "highlight";
1357
+ }>>;
1358
+ change: z.ZodOptional<z.ZodString>;
1359
+ }, z.core.$strip>, z.ZodObject<{
1360
+ type: z.ZodLiteral<"divider">;
1361
+ color: z.ZodOptional<z.ZodEnum<{
1362
+ success: "success";
1363
+ primary: "primary";
1364
+ accent: "accent";
1365
+ warning: "warning";
1366
+ danger: "danger";
1367
+ info: "info";
1368
+ highlight: "highlight";
1369
+ }>>;
1370
+ }, z.core.$strip>, z.ZodObject<{
1371
+ type: z.ZodLiteral<"image">;
1372
+ src: z.ZodString;
1373
+ alt: z.ZodOptional<z.ZodString>;
1374
+ fit: z.ZodOptional<z.ZodEnum<{
1375
+ contain: "contain";
1376
+ cover: "cover";
1377
+ }>>;
1378
+ }, z.core.$strip>], "type">>>;
1379
+ dark: z.ZodOptional<z.ZodBoolean>;
1380
+ ratio: z.ZodOptional<z.ZodNumber>;
1381
+ }, z.core.$strip>>;
1382
+ accentColor: z.ZodOptional<z.ZodEnum<{
1383
+ success: "success";
1384
+ primary: "primary";
1385
+ accent: "accent";
1386
+ warning: "warning";
1387
+ danger: "danger";
1388
+ info: "info";
1389
+ highlight: "highlight";
1390
+ }>>;
1391
+ style: z.ZodOptional<z.ZodObject<{
1392
+ bgColor: z.ZodOptional<z.ZodString>;
1393
+ decorations: z.ZodOptional<z.ZodBoolean>;
1394
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1395
+ footer: z.ZodOptional<z.ZodString>;
1396
+ }, z.core.$strip>>;
1397
+ layout: z.ZodLiteral<"split">;
1398
+ }, z.core.$strip>, z.ZodObject<{
1399
+ title: z.ZodString;
1400
+ stepLabel: z.ZodOptional<z.ZodString>;
1401
+ subtitle: z.ZodOptional<z.ZodString>;
1402
+ rows: z.ZodOptional<z.ZodNumber>;
1403
+ cols: z.ZodOptional<z.ZodNumber>;
1404
+ xAxis: z.ZodOptional<z.ZodObject<{
1405
+ low: z.ZodOptional<z.ZodString>;
1406
+ high: z.ZodOptional<z.ZodString>;
1407
+ label: z.ZodOptional<z.ZodString>;
1408
+ }, z.core.$strip>>;
1409
+ yAxis: z.ZodOptional<z.ZodObject<{
1410
+ low: z.ZodOptional<z.ZodString>;
1411
+ high: z.ZodOptional<z.ZodString>;
1412
+ label: z.ZodOptional<z.ZodString>;
1413
+ }, z.core.$strip>>;
1414
+ cells: z.ZodArray<z.ZodObject<{
1415
+ label: z.ZodString;
1416
+ items: z.ZodOptional<z.ZodArray<z.ZodString>>;
1417
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1418
+ type: z.ZodLiteral<"text">;
1419
+ value: z.ZodString;
1420
+ align: z.ZodOptional<z.ZodEnum<{
1421
+ left: "left";
1422
+ center: "center";
1423
+ right: "right";
1424
+ }>>;
1425
+ bold: z.ZodOptional<z.ZodBoolean>;
1426
+ dim: z.ZodOptional<z.ZodBoolean>;
1427
+ fontSize: z.ZodOptional<z.ZodNumber>;
1428
+ color: z.ZodOptional<z.ZodEnum<{
1429
+ success: "success";
1430
+ primary: "primary";
1431
+ accent: "accent";
1432
+ warning: "warning";
1433
+ danger: "danger";
1434
+ info: "info";
1435
+ highlight: "highlight";
1436
+ }>>;
1437
+ }, z.core.$strip>, z.ZodObject<{
1438
+ type: z.ZodLiteral<"bullets">;
1439
+ items: z.ZodArray<z.ZodString>;
1440
+ ordered: z.ZodOptional<z.ZodBoolean>;
1441
+ icon: z.ZodOptional<z.ZodString>;
1442
+ }, z.core.$strip>, z.ZodObject<{
1443
+ type: z.ZodLiteral<"code">;
1444
+ code: z.ZodString;
1445
+ language: z.ZodOptional<z.ZodString>;
1446
+ }, z.core.$strip>, z.ZodObject<{
1447
+ type: z.ZodLiteral<"callout">;
1448
+ text: z.ZodString;
1449
+ label: z.ZodOptional<z.ZodString>;
1450
+ color: z.ZodOptional<z.ZodEnum<{
1451
+ success: "success";
1452
+ primary: "primary";
1453
+ accent: "accent";
1454
+ warning: "warning";
1455
+ danger: "danger";
1456
+ info: "info";
1457
+ highlight: "highlight";
1458
+ }>>;
1459
+ style: z.ZodOptional<z.ZodEnum<{
1460
+ warning: "warning";
1461
+ info: "info";
1462
+ quote: "quote";
1463
+ }>>;
1464
+ }, z.core.$strip>, z.ZodObject<{
1465
+ type: z.ZodLiteral<"metric">;
1466
+ value: z.ZodString;
1467
+ label: z.ZodString;
1468
+ color: z.ZodOptional<z.ZodEnum<{
1469
+ success: "success";
1470
+ primary: "primary";
1471
+ accent: "accent";
1472
+ warning: "warning";
1473
+ danger: "danger";
1474
+ info: "info";
1475
+ highlight: "highlight";
1476
+ }>>;
1477
+ change: z.ZodOptional<z.ZodString>;
1478
+ }, z.core.$strip>, z.ZodObject<{
1479
+ type: z.ZodLiteral<"divider">;
1480
+ color: z.ZodOptional<z.ZodEnum<{
1481
+ success: "success";
1482
+ primary: "primary";
1483
+ accent: "accent";
1484
+ warning: "warning";
1485
+ danger: "danger";
1486
+ info: "info";
1487
+ highlight: "highlight";
1488
+ }>>;
1489
+ }, z.core.$strip>, z.ZodObject<{
1490
+ type: z.ZodLiteral<"image">;
1491
+ src: z.ZodString;
1492
+ alt: z.ZodOptional<z.ZodString>;
1493
+ fit: z.ZodOptional<z.ZodEnum<{
1494
+ contain: "contain";
1495
+ cover: "cover";
1496
+ }>>;
1497
+ }, z.core.$strip>], "type">>>;
1498
+ accentColor: z.ZodOptional<z.ZodEnum<{
1499
+ success: "success";
1500
+ primary: "primary";
1501
+ accent: "accent";
1502
+ warning: "warning";
1503
+ danger: "danger";
1504
+ info: "info";
1505
+ highlight: "highlight";
1506
+ }>>;
1507
+ }, z.core.$strip>>;
1508
+ accentColor: z.ZodOptional<z.ZodEnum<{
1509
+ success: "success";
1510
+ primary: "primary";
1511
+ accent: "accent";
1512
+ warning: "warning";
1513
+ danger: "danger";
1514
+ info: "info";
1515
+ highlight: "highlight";
1516
+ }>>;
1517
+ style: z.ZodOptional<z.ZodObject<{
1518
+ bgColor: z.ZodOptional<z.ZodString>;
1519
+ decorations: z.ZodOptional<z.ZodBoolean>;
1520
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1521
+ footer: z.ZodOptional<z.ZodString>;
1522
+ }, z.core.$strip>>;
1523
+ layout: z.ZodLiteral<"matrix">;
1524
+ }, z.core.$strip>, z.ZodObject<{
1525
+ title: z.ZodString;
1526
+ stepLabel: z.ZodOptional<z.ZodString>;
1527
+ subtitle: z.ZodOptional<z.ZodString>;
1528
+ headers: z.ZodArray<z.ZodString>;
1529
+ rows: z.ZodArray<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
1530
+ text: z.ZodString;
1531
+ color: z.ZodOptional<z.ZodEnum<{
1532
+ success: "success";
1533
+ primary: "primary";
1534
+ accent: "accent";
1535
+ warning: "warning";
1536
+ danger: "danger";
1537
+ info: "info";
1538
+ highlight: "highlight";
1539
+ }>>;
1540
+ bold: z.ZodOptional<z.ZodBoolean>;
1541
+ }, z.core.$strip>]>>>;
1542
+ rowHeaders: z.ZodOptional<z.ZodBoolean>;
1543
+ striped: z.ZodOptional<z.ZodBoolean>;
1544
+ callout: z.ZodOptional<z.ZodObject<{
1545
+ text: z.ZodString;
1546
+ label: z.ZodOptional<z.ZodString>;
1547
+ color: z.ZodOptional<z.ZodEnum<{
1548
+ success: "success";
1549
+ primary: "primary";
1550
+ accent: "accent";
1551
+ warning: "warning";
1552
+ danger: "danger";
1553
+ info: "info";
1554
+ highlight: "highlight";
1555
+ }>>;
1556
+ align: z.ZodOptional<z.ZodEnum<{
1557
+ left: "left";
1558
+ center: "center";
1559
+ }>>;
1560
+ leftBar: z.ZodOptional<z.ZodBoolean>;
1561
+ }, z.core.$strip>>;
1562
+ accentColor: z.ZodOptional<z.ZodEnum<{
1563
+ success: "success";
1564
+ primary: "primary";
1565
+ accent: "accent";
1566
+ warning: "warning";
1567
+ danger: "danger";
1568
+ info: "info";
1569
+ highlight: "highlight";
1570
+ }>>;
1571
+ style: z.ZodOptional<z.ZodObject<{
1572
+ bgColor: z.ZodOptional<z.ZodString>;
1573
+ decorations: z.ZodOptional<z.ZodBoolean>;
1574
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1575
+ footer: z.ZodOptional<z.ZodString>;
1576
+ }, z.core.$strip>>;
1577
+ layout: z.ZodLiteral<"table">;
1578
+ }, z.core.$strip>, z.ZodObject<{
1579
+ title: z.ZodString;
1580
+ stepLabel: z.ZodOptional<z.ZodString>;
1581
+ subtitle: z.ZodOptional<z.ZodString>;
1582
+ stages: z.ZodArray<z.ZodObject<{
1583
+ label: z.ZodString;
1584
+ value: z.ZodOptional<z.ZodString>;
1585
+ description: z.ZodOptional<z.ZodString>;
1586
+ color: z.ZodOptional<z.ZodEnum<{
1587
+ success: "success";
1588
+ primary: "primary";
1589
+ accent: "accent";
1590
+ warning: "warning";
1591
+ danger: "danger";
1592
+ info: "info";
1593
+ highlight: "highlight";
1594
+ }>>;
1595
+ }, z.core.$strip>>;
1596
+ callout: z.ZodOptional<z.ZodObject<{
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
+ align: z.ZodOptional<z.ZodEnum<{
1609
+ left: "left";
1610
+ center: "center";
1611
+ }>>;
1612
+ leftBar: z.ZodOptional<z.ZodBoolean>;
1613
+ }, z.core.$strip>>;
1614
+ accentColor: z.ZodOptional<z.ZodEnum<{
1615
+ success: "success";
1616
+ primary: "primary";
1617
+ accent: "accent";
1618
+ warning: "warning";
1619
+ danger: "danger";
1620
+ info: "info";
1621
+ highlight: "highlight";
1622
+ }>>;
1623
+ style: z.ZodOptional<z.ZodObject<{
1624
+ bgColor: z.ZodOptional<z.ZodString>;
1625
+ decorations: z.ZodOptional<z.ZodBoolean>;
1626
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
1627
+ footer: z.ZodOptional<z.ZodString>;
1628
+ }, z.core.$strip>>;
1629
+ layout: z.ZodLiteral<"funnel">;
1630
+ }, z.core.$strip>], "layout">;
554
1631
  }, z.core.$strict>]>;
555
1632
  export declare const mulmoAudioAssetSchema: z.ZodUnion<readonly [z.ZodObject<{
556
1633
  type: z.ZodLiteral<"audio">;
@@ -685,8 +1762,8 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
685
1762
  }, z.core.$strict>], "kind">;
686
1763
  size: z.ZodOptional<z.ZodEnum<{
687
1764
  auto: "auto";
688
- cover: "cover";
689
1765
  contain: "contain";
1766
+ cover: "cover";
690
1767
  fill: "fill";
691
1768
  }>>;
692
1769
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -695,6 +1772,30 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
695
1772
  export declare const textSlideParamsSchema: z.ZodObject<{
696
1773
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
697
1774
  }, z.core.$strict>;
1775
+ export declare const mulmoSlideParamsSchema: z.ZodObject<{
1776
+ theme: z.ZodObject<{
1777
+ colors: z.ZodObject<{
1778
+ bg: z.ZodString;
1779
+ bgCard: z.ZodString;
1780
+ bgCardAlt: z.ZodString;
1781
+ text: z.ZodString;
1782
+ textMuted: z.ZodString;
1783
+ textDim: z.ZodString;
1784
+ primary: z.ZodString;
1785
+ accent: z.ZodString;
1786
+ success: z.ZodString;
1787
+ warning: z.ZodString;
1788
+ danger: z.ZodString;
1789
+ info: z.ZodString;
1790
+ highlight: z.ZodString;
1791
+ }, z.core.$strip>;
1792
+ fonts: z.ZodObject<{
1793
+ title: z.ZodString;
1794
+ body: z.ZodString;
1795
+ mono: z.ZodString;
1796
+ }, z.core.$strip>;
1797
+ }, z.core.$strip>;
1798
+ }, z.core.$strict>;
698
1799
  export declare const beatAudioParamsSchema: z.ZodObject<{
699
1800
  padding: z.ZodOptional<z.ZodNumber>;
700
1801
  movieVolume: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
@@ -1027,8 +2128,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1027
2128
  }, z.core.$strict>], "kind">;
1028
2129
  size: z.ZodOptional<z.ZodEnum<{
1029
2130
  auto: "auto";
1030
- cover: "cover";
1031
2131
  contain: "contain";
2132
+ cover: "cover";
1032
2133
  fill: "fill";
1033
2134
  }>>;
1034
2135
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -1105,8 +2206,8 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1105
2206
  }, z.core.$strict>], "kind">;
1106
2207
  size: z.ZodOptional<z.ZodEnum<{
1107
2208
  auto: "auto";
1108
- cover: "cover";
1109
2209
  contain: "contain";
2210
+ cover: "cover";
1110
2211
  fill: "fill";
1111
2212
  }>>;
1112
2213
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -1146,25 +2247,1101 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1146
2247
  }, z.core.$strict>], "kind">;
1147
2248
  size: z.ZodOptional<z.ZodEnum<{
1148
2249
  auto: "auto";
1149
- cover: "cover";
1150
2250
  contain: "contain";
2251
+ cover: "cover";
1151
2252
  fill: "fill";
1152
2253
  }>>;
1153
- opacity: z.ZodOptional<z.ZodNumber>;
1154
- }, z.core.$strip>]>>>;
1155
- }, z.core.$strict>, z.ZodObject<{
1156
- type: z.ZodLiteral<"html_tailwind">;
1157
- html: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
1158
- }, z.core.$strict>, z.ZodObject<{
1159
- type: z.ZodLiteral<"beat">;
1160
- id: z.ZodOptional<z.ZodString>;
1161
- }, z.core.$strict>, z.ZodObject<{
1162
- type: z.ZodLiteral<"voice_over">;
1163
- startAt: z.ZodOptional<z.ZodNumber>;
1164
- }, z.core.$strict>, z.ZodObject<{
1165
- type: z.ZodLiteral<"vision">;
1166
- style: z.ZodString;
1167
- data: z.ZodRecord<z.ZodString, z.ZodAny>;
2254
+ opacity: z.ZodOptional<z.ZodNumber>;
2255
+ }, z.core.$strip>]>>>;
2256
+ }, z.core.$strict>, z.ZodObject<{
2257
+ type: z.ZodLiteral<"html_tailwind">;
2258
+ html: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
2259
+ }, z.core.$strict>, z.ZodObject<{
2260
+ type: z.ZodLiteral<"beat">;
2261
+ id: z.ZodOptional<z.ZodString>;
2262
+ }, z.core.$strict>, z.ZodObject<{
2263
+ type: z.ZodLiteral<"voice_over">;
2264
+ startAt: z.ZodOptional<z.ZodNumber>;
2265
+ }, z.core.$strict>, z.ZodObject<{
2266
+ type: z.ZodLiteral<"vision">;
2267
+ style: z.ZodString;
2268
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
2269
+ }, z.core.$strict>, z.ZodObject<{
2270
+ type: z.ZodLiteral<"slide">;
2271
+ theme: z.ZodOptional<z.ZodObject<{
2272
+ colors: z.ZodObject<{
2273
+ bg: z.ZodString;
2274
+ bgCard: z.ZodString;
2275
+ bgCardAlt: z.ZodString;
2276
+ text: z.ZodString;
2277
+ textMuted: z.ZodString;
2278
+ textDim: z.ZodString;
2279
+ primary: z.ZodString;
2280
+ accent: z.ZodString;
2281
+ success: z.ZodString;
2282
+ warning: z.ZodString;
2283
+ danger: z.ZodString;
2284
+ info: z.ZodString;
2285
+ highlight: z.ZodString;
2286
+ }, z.core.$strip>;
2287
+ fonts: z.ZodObject<{
2288
+ title: z.ZodString;
2289
+ body: z.ZodString;
2290
+ mono: z.ZodString;
2291
+ }, z.core.$strip>;
2292
+ }, z.core.$strip>>;
2293
+ slide: z.ZodDiscriminatedUnion<[z.ZodObject<{
2294
+ title: z.ZodString;
2295
+ subtitle: z.ZodOptional<z.ZodString>;
2296
+ author: z.ZodOptional<z.ZodString>;
2297
+ note: z.ZodOptional<z.ZodString>;
2298
+ accentColor: z.ZodOptional<z.ZodEnum<{
2299
+ success: "success";
2300
+ primary: "primary";
2301
+ accent: "accent";
2302
+ warning: "warning";
2303
+ danger: "danger";
2304
+ info: "info";
2305
+ highlight: "highlight";
2306
+ }>>;
2307
+ style: z.ZodOptional<z.ZodObject<{
2308
+ bgColor: z.ZodOptional<z.ZodString>;
2309
+ decorations: z.ZodOptional<z.ZodBoolean>;
2310
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2311
+ footer: z.ZodOptional<z.ZodString>;
2312
+ }, z.core.$strip>>;
2313
+ layout: z.ZodLiteral<"title">;
2314
+ }, z.core.$strip>, z.ZodObject<{
2315
+ title: z.ZodString;
2316
+ stepLabel: z.ZodOptional<z.ZodString>;
2317
+ subtitle: z.ZodOptional<z.ZodString>;
2318
+ columns: z.ZodArray<z.ZodObject<{
2319
+ title: z.ZodString;
2320
+ accentColor: z.ZodOptional<z.ZodEnum<{
2321
+ success: "success";
2322
+ primary: "primary";
2323
+ accent: "accent";
2324
+ warning: "warning";
2325
+ danger: "danger";
2326
+ info: "info";
2327
+ highlight: "highlight";
2328
+ }>>;
2329
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2330
+ type: z.ZodLiteral<"text">;
2331
+ value: z.ZodString;
2332
+ align: z.ZodOptional<z.ZodEnum<{
2333
+ left: "left";
2334
+ center: "center";
2335
+ right: "right";
2336
+ }>>;
2337
+ bold: z.ZodOptional<z.ZodBoolean>;
2338
+ dim: z.ZodOptional<z.ZodBoolean>;
2339
+ fontSize: z.ZodOptional<z.ZodNumber>;
2340
+ color: z.ZodOptional<z.ZodEnum<{
2341
+ success: "success";
2342
+ primary: "primary";
2343
+ accent: "accent";
2344
+ warning: "warning";
2345
+ danger: "danger";
2346
+ info: "info";
2347
+ highlight: "highlight";
2348
+ }>>;
2349
+ }, z.core.$strip>, z.ZodObject<{
2350
+ type: z.ZodLiteral<"bullets">;
2351
+ items: z.ZodArray<z.ZodString>;
2352
+ ordered: z.ZodOptional<z.ZodBoolean>;
2353
+ icon: z.ZodOptional<z.ZodString>;
2354
+ }, z.core.$strip>, z.ZodObject<{
2355
+ type: z.ZodLiteral<"code">;
2356
+ code: z.ZodString;
2357
+ language: z.ZodOptional<z.ZodString>;
2358
+ }, z.core.$strip>, z.ZodObject<{
2359
+ type: z.ZodLiteral<"callout">;
2360
+ text: z.ZodString;
2361
+ label: z.ZodOptional<z.ZodString>;
2362
+ color: z.ZodOptional<z.ZodEnum<{
2363
+ success: "success";
2364
+ primary: "primary";
2365
+ accent: "accent";
2366
+ warning: "warning";
2367
+ danger: "danger";
2368
+ info: "info";
2369
+ highlight: "highlight";
2370
+ }>>;
2371
+ style: z.ZodOptional<z.ZodEnum<{
2372
+ warning: "warning";
2373
+ info: "info";
2374
+ quote: "quote";
2375
+ }>>;
2376
+ }, z.core.$strip>, z.ZodObject<{
2377
+ type: z.ZodLiteral<"metric">;
2378
+ value: z.ZodString;
2379
+ label: z.ZodString;
2380
+ color: z.ZodOptional<z.ZodEnum<{
2381
+ success: "success";
2382
+ primary: "primary";
2383
+ accent: "accent";
2384
+ warning: "warning";
2385
+ danger: "danger";
2386
+ info: "info";
2387
+ highlight: "highlight";
2388
+ }>>;
2389
+ change: z.ZodOptional<z.ZodString>;
2390
+ }, z.core.$strip>, z.ZodObject<{
2391
+ type: z.ZodLiteral<"divider">;
2392
+ color: z.ZodOptional<z.ZodEnum<{
2393
+ success: "success";
2394
+ primary: "primary";
2395
+ accent: "accent";
2396
+ warning: "warning";
2397
+ danger: "danger";
2398
+ info: "info";
2399
+ highlight: "highlight";
2400
+ }>>;
2401
+ }, z.core.$strip>, z.ZodObject<{
2402
+ type: z.ZodLiteral<"image">;
2403
+ src: z.ZodString;
2404
+ alt: z.ZodOptional<z.ZodString>;
2405
+ fit: z.ZodOptional<z.ZodEnum<{
2406
+ contain: "contain";
2407
+ cover: "cover";
2408
+ }>>;
2409
+ }, z.core.$strip>], "type">>>;
2410
+ footer: z.ZodOptional<z.ZodString>;
2411
+ label: z.ZodOptional<z.ZodString>;
2412
+ num: z.ZodOptional<z.ZodNumber>;
2413
+ icon: z.ZodOptional<z.ZodString>;
2414
+ }, z.core.$strip>>;
2415
+ showArrows: z.ZodOptional<z.ZodBoolean>;
2416
+ callout: z.ZodOptional<z.ZodObject<{
2417
+ text: z.ZodString;
2418
+ label: z.ZodOptional<z.ZodString>;
2419
+ color: z.ZodOptional<z.ZodEnum<{
2420
+ success: "success";
2421
+ primary: "primary";
2422
+ accent: "accent";
2423
+ warning: "warning";
2424
+ danger: "danger";
2425
+ info: "info";
2426
+ highlight: "highlight";
2427
+ }>>;
2428
+ align: z.ZodOptional<z.ZodEnum<{
2429
+ left: "left";
2430
+ center: "center";
2431
+ }>>;
2432
+ leftBar: z.ZodOptional<z.ZodBoolean>;
2433
+ }, z.core.$strip>>;
2434
+ bottomText: z.ZodOptional<z.ZodString>;
2435
+ accentColor: z.ZodOptional<z.ZodEnum<{
2436
+ success: "success";
2437
+ primary: "primary";
2438
+ accent: "accent";
2439
+ warning: "warning";
2440
+ danger: "danger";
2441
+ info: "info";
2442
+ highlight: "highlight";
2443
+ }>>;
2444
+ style: z.ZodOptional<z.ZodObject<{
2445
+ bgColor: z.ZodOptional<z.ZodString>;
2446
+ decorations: z.ZodOptional<z.ZodBoolean>;
2447
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2448
+ footer: z.ZodOptional<z.ZodString>;
2449
+ }, z.core.$strip>>;
2450
+ layout: z.ZodLiteral<"columns">;
2451
+ }, z.core.$strip>, z.ZodObject<{
2452
+ title: z.ZodString;
2453
+ stepLabel: z.ZodOptional<z.ZodString>;
2454
+ subtitle: z.ZodOptional<z.ZodString>;
2455
+ left: z.ZodObject<{
2456
+ title: z.ZodString;
2457
+ accentColor: z.ZodOptional<z.ZodEnum<{
2458
+ success: "success";
2459
+ primary: "primary";
2460
+ accent: "accent";
2461
+ warning: "warning";
2462
+ danger: "danger";
2463
+ info: "info";
2464
+ highlight: "highlight";
2465
+ }>>;
2466
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2467
+ type: z.ZodLiteral<"text">;
2468
+ value: z.ZodString;
2469
+ align: z.ZodOptional<z.ZodEnum<{
2470
+ left: "left";
2471
+ center: "center";
2472
+ right: "right";
2473
+ }>>;
2474
+ bold: z.ZodOptional<z.ZodBoolean>;
2475
+ dim: z.ZodOptional<z.ZodBoolean>;
2476
+ fontSize: z.ZodOptional<z.ZodNumber>;
2477
+ color: z.ZodOptional<z.ZodEnum<{
2478
+ success: "success";
2479
+ primary: "primary";
2480
+ accent: "accent";
2481
+ warning: "warning";
2482
+ danger: "danger";
2483
+ info: "info";
2484
+ highlight: "highlight";
2485
+ }>>;
2486
+ }, z.core.$strip>, z.ZodObject<{
2487
+ type: z.ZodLiteral<"bullets">;
2488
+ items: z.ZodArray<z.ZodString>;
2489
+ ordered: z.ZodOptional<z.ZodBoolean>;
2490
+ icon: z.ZodOptional<z.ZodString>;
2491
+ }, z.core.$strip>, z.ZodObject<{
2492
+ type: z.ZodLiteral<"code">;
2493
+ code: z.ZodString;
2494
+ language: z.ZodOptional<z.ZodString>;
2495
+ }, z.core.$strip>, z.ZodObject<{
2496
+ type: z.ZodLiteral<"callout">;
2497
+ text: z.ZodString;
2498
+ label: z.ZodOptional<z.ZodString>;
2499
+ color: z.ZodOptional<z.ZodEnum<{
2500
+ success: "success";
2501
+ primary: "primary";
2502
+ accent: "accent";
2503
+ warning: "warning";
2504
+ danger: "danger";
2505
+ info: "info";
2506
+ highlight: "highlight";
2507
+ }>>;
2508
+ style: z.ZodOptional<z.ZodEnum<{
2509
+ warning: "warning";
2510
+ info: "info";
2511
+ quote: "quote";
2512
+ }>>;
2513
+ }, z.core.$strip>, z.ZodObject<{
2514
+ type: z.ZodLiteral<"metric">;
2515
+ value: z.ZodString;
2516
+ label: z.ZodString;
2517
+ color: z.ZodOptional<z.ZodEnum<{
2518
+ success: "success";
2519
+ primary: "primary";
2520
+ accent: "accent";
2521
+ warning: "warning";
2522
+ danger: "danger";
2523
+ info: "info";
2524
+ highlight: "highlight";
2525
+ }>>;
2526
+ change: z.ZodOptional<z.ZodString>;
2527
+ }, z.core.$strip>, z.ZodObject<{
2528
+ type: z.ZodLiteral<"divider">;
2529
+ color: z.ZodOptional<z.ZodEnum<{
2530
+ success: "success";
2531
+ primary: "primary";
2532
+ accent: "accent";
2533
+ warning: "warning";
2534
+ danger: "danger";
2535
+ info: "info";
2536
+ highlight: "highlight";
2537
+ }>>;
2538
+ }, z.core.$strip>, z.ZodObject<{
2539
+ type: z.ZodLiteral<"image">;
2540
+ src: z.ZodString;
2541
+ alt: z.ZodOptional<z.ZodString>;
2542
+ fit: z.ZodOptional<z.ZodEnum<{
2543
+ contain: "contain";
2544
+ cover: "cover";
2545
+ }>>;
2546
+ }, z.core.$strip>], "type">>>;
2547
+ footer: z.ZodOptional<z.ZodString>;
2548
+ }, z.core.$strip>;
2549
+ right: z.ZodObject<{
2550
+ title: z.ZodString;
2551
+ accentColor: z.ZodOptional<z.ZodEnum<{
2552
+ success: "success";
2553
+ primary: "primary";
2554
+ accent: "accent";
2555
+ warning: "warning";
2556
+ danger: "danger";
2557
+ info: "info";
2558
+ highlight: "highlight";
2559
+ }>>;
2560
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2561
+ type: z.ZodLiteral<"text">;
2562
+ value: z.ZodString;
2563
+ align: z.ZodOptional<z.ZodEnum<{
2564
+ left: "left";
2565
+ center: "center";
2566
+ right: "right";
2567
+ }>>;
2568
+ bold: z.ZodOptional<z.ZodBoolean>;
2569
+ dim: z.ZodOptional<z.ZodBoolean>;
2570
+ fontSize: z.ZodOptional<z.ZodNumber>;
2571
+ color: z.ZodOptional<z.ZodEnum<{
2572
+ success: "success";
2573
+ primary: "primary";
2574
+ accent: "accent";
2575
+ warning: "warning";
2576
+ danger: "danger";
2577
+ info: "info";
2578
+ highlight: "highlight";
2579
+ }>>;
2580
+ }, z.core.$strip>, z.ZodObject<{
2581
+ type: z.ZodLiteral<"bullets">;
2582
+ items: z.ZodArray<z.ZodString>;
2583
+ ordered: z.ZodOptional<z.ZodBoolean>;
2584
+ icon: z.ZodOptional<z.ZodString>;
2585
+ }, z.core.$strip>, z.ZodObject<{
2586
+ type: z.ZodLiteral<"code">;
2587
+ code: z.ZodString;
2588
+ language: z.ZodOptional<z.ZodString>;
2589
+ }, z.core.$strip>, z.ZodObject<{
2590
+ type: z.ZodLiteral<"callout">;
2591
+ text: z.ZodString;
2592
+ label: z.ZodOptional<z.ZodString>;
2593
+ color: z.ZodOptional<z.ZodEnum<{
2594
+ success: "success";
2595
+ primary: "primary";
2596
+ accent: "accent";
2597
+ warning: "warning";
2598
+ danger: "danger";
2599
+ info: "info";
2600
+ highlight: "highlight";
2601
+ }>>;
2602
+ style: z.ZodOptional<z.ZodEnum<{
2603
+ warning: "warning";
2604
+ info: "info";
2605
+ quote: "quote";
2606
+ }>>;
2607
+ }, z.core.$strip>, z.ZodObject<{
2608
+ type: z.ZodLiteral<"metric">;
2609
+ value: z.ZodString;
2610
+ label: z.ZodString;
2611
+ color: z.ZodOptional<z.ZodEnum<{
2612
+ success: "success";
2613
+ primary: "primary";
2614
+ accent: "accent";
2615
+ warning: "warning";
2616
+ danger: "danger";
2617
+ info: "info";
2618
+ highlight: "highlight";
2619
+ }>>;
2620
+ change: z.ZodOptional<z.ZodString>;
2621
+ }, z.core.$strip>, z.ZodObject<{
2622
+ type: z.ZodLiteral<"divider">;
2623
+ color: z.ZodOptional<z.ZodEnum<{
2624
+ success: "success";
2625
+ primary: "primary";
2626
+ accent: "accent";
2627
+ warning: "warning";
2628
+ danger: "danger";
2629
+ info: "info";
2630
+ highlight: "highlight";
2631
+ }>>;
2632
+ }, z.core.$strip>, z.ZodObject<{
2633
+ type: z.ZodLiteral<"image">;
2634
+ src: z.ZodString;
2635
+ alt: z.ZodOptional<z.ZodString>;
2636
+ fit: z.ZodOptional<z.ZodEnum<{
2637
+ contain: "contain";
2638
+ cover: "cover";
2639
+ }>>;
2640
+ }, z.core.$strip>], "type">>>;
2641
+ footer: z.ZodOptional<z.ZodString>;
2642
+ }, z.core.$strip>;
2643
+ callout: z.ZodOptional<z.ZodObject<{
2644
+ text: z.ZodString;
2645
+ label: z.ZodOptional<z.ZodString>;
2646
+ color: z.ZodOptional<z.ZodEnum<{
2647
+ success: "success";
2648
+ primary: "primary";
2649
+ accent: "accent";
2650
+ warning: "warning";
2651
+ danger: "danger";
2652
+ info: "info";
2653
+ highlight: "highlight";
2654
+ }>>;
2655
+ align: z.ZodOptional<z.ZodEnum<{
2656
+ left: "left";
2657
+ center: "center";
2658
+ }>>;
2659
+ leftBar: z.ZodOptional<z.ZodBoolean>;
2660
+ }, z.core.$strip>>;
2661
+ accentColor: z.ZodOptional<z.ZodEnum<{
2662
+ success: "success";
2663
+ primary: "primary";
2664
+ accent: "accent";
2665
+ warning: "warning";
2666
+ danger: "danger";
2667
+ info: "info";
2668
+ highlight: "highlight";
2669
+ }>>;
2670
+ style: z.ZodOptional<z.ZodObject<{
2671
+ bgColor: z.ZodOptional<z.ZodString>;
2672
+ decorations: z.ZodOptional<z.ZodBoolean>;
2673
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2674
+ footer: z.ZodOptional<z.ZodString>;
2675
+ }, z.core.$strip>>;
2676
+ layout: z.ZodLiteral<"comparison">;
2677
+ }, z.core.$strip>, z.ZodObject<{
2678
+ title: z.ZodString;
2679
+ subtitle: z.ZodOptional<z.ZodString>;
2680
+ gridColumns: z.ZodOptional<z.ZodNumber>;
2681
+ items: z.ZodArray<z.ZodObject<{
2682
+ title: z.ZodString;
2683
+ description: z.ZodOptional<z.ZodString>;
2684
+ accentColor: z.ZodOptional<z.ZodEnum<{
2685
+ success: "success";
2686
+ primary: "primary";
2687
+ accent: "accent";
2688
+ warning: "warning";
2689
+ danger: "danger";
2690
+ info: "info";
2691
+ highlight: "highlight";
2692
+ }>>;
2693
+ num: z.ZodOptional<z.ZodNumber>;
2694
+ icon: z.ZodOptional<z.ZodString>;
2695
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2696
+ type: z.ZodLiteral<"text">;
2697
+ value: z.ZodString;
2698
+ align: z.ZodOptional<z.ZodEnum<{
2699
+ left: "left";
2700
+ center: "center";
2701
+ right: "right";
2702
+ }>>;
2703
+ bold: z.ZodOptional<z.ZodBoolean>;
2704
+ dim: z.ZodOptional<z.ZodBoolean>;
2705
+ fontSize: z.ZodOptional<z.ZodNumber>;
2706
+ color: z.ZodOptional<z.ZodEnum<{
2707
+ success: "success";
2708
+ primary: "primary";
2709
+ accent: "accent";
2710
+ warning: "warning";
2711
+ danger: "danger";
2712
+ info: "info";
2713
+ highlight: "highlight";
2714
+ }>>;
2715
+ }, z.core.$strip>, z.ZodObject<{
2716
+ type: z.ZodLiteral<"bullets">;
2717
+ items: z.ZodArray<z.ZodString>;
2718
+ ordered: z.ZodOptional<z.ZodBoolean>;
2719
+ icon: z.ZodOptional<z.ZodString>;
2720
+ }, z.core.$strip>, z.ZodObject<{
2721
+ type: z.ZodLiteral<"code">;
2722
+ code: z.ZodString;
2723
+ language: z.ZodOptional<z.ZodString>;
2724
+ }, z.core.$strip>, z.ZodObject<{
2725
+ type: z.ZodLiteral<"callout">;
2726
+ text: z.ZodString;
2727
+ label: z.ZodOptional<z.ZodString>;
2728
+ color: z.ZodOptional<z.ZodEnum<{
2729
+ success: "success";
2730
+ primary: "primary";
2731
+ accent: "accent";
2732
+ warning: "warning";
2733
+ danger: "danger";
2734
+ info: "info";
2735
+ highlight: "highlight";
2736
+ }>>;
2737
+ style: z.ZodOptional<z.ZodEnum<{
2738
+ warning: "warning";
2739
+ info: "info";
2740
+ quote: "quote";
2741
+ }>>;
2742
+ }, z.core.$strip>, z.ZodObject<{
2743
+ type: z.ZodLiteral<"metric">;
2744
+ value: z.ZodString;
2745
+ label: z.ZodString;
2746
+ color: z.ZodOptional<z.ZodEnum<{
2747
+ success: "success";
2748
+ primary: "primary";
2749
+ accent: "accent";
2750
+ warning: "warning";
2751
+ danger: "danger";
2752
+ info: "info";
2753
+ highlight: "highlight";
2754
+ }>>;
2755
+ change: z.ZodOptional<z.ZodString>;
2756
+ }, z.core.$strip>, z.ZodObject<{
2757
+ type: z.ZodLiteral<"divider">;
2758
+ color: z.ZodOptional<z.ZodEnum<{
2759
+ success: "success";
2760
+ primary: "primary";
2761
+ accent: "accent";
2762
+ warning: "warning";
2763
+ danger: "danger";
2764
+ info: "info";
2765
+ highlight: "highlight";
2766
+ }>>;
2767
+ }, z.core.$strip>, z.ZodObject<{
2768
+ type: z.ZodLiteral<"image">;
2769
+ src: z.ZodString;
2770
+ alt: z.ZodOptional<z.ZodString>;
2771
+ fit: z.ZodOptional<z.ZodEnum<{
2772
+ contain: "contain";
2773
+ cover: "cover";
2774
+ }>>;
2775
+ }, z.core.$strip>], "type">>>;
2776
+ }, z.core.$strip>>;
2777
+ footer: z.ZodOptional<z.ZodString>;
2778
+ accentColor: z.ZodOptional<z.ZodEnum<{
2779
+ success: "success";
2780
+ primary: "primary";
2781
+ accent: "accent";
2782
+ warning: "warning";
2783
+ danger: "danger";
2784
+ info: "info";
2785
+ highlight: "highlight";
2786
+ }>>;
2787
+ style: z.ZodOptional<z.ZodObject<{
2788
+ bgColor: z.ZodOptional<z.ZodString>;
2789
+ decorations: z.ZodOptional<z.ZodBoolean>;
2790
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2791
+ footer: z.ZodOptional<z.ZodString>;
2792
+ }, z.core.$strip>>;
2793
+ layout: z.ZodLiteral<"grid">;
2794
+ }, z.core.$strip>, z.ZodObject<{
2795
+ quote: z.ZodString;
2796
+ author: z.ZodOptional<z.ZodString>;
2797
+ role: z.ZodOptional<z.ZodString>;
2798
+ accentColor: z.ZodOptional<z.ZodEnum<{
2799
+ success: "success";
2800
+ primary: "primary";
2801
+ accent: "accent";
2802
+ warning: "warning";
2803
+ danger: "danger";
2804
+ info: "info";
2805
+ highlight: "highlight";
2806
+ }>>;
2807
+ style: z.ZodOptional<z.ZodObject<{
2808
+ bgColor: z.ZodOptional<z.ZodString>;
2809
+ decorations: z.ZodOptional<z.ZodBoolean>;
2810
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2811
+ footer: z.ZodOptional<z.ZodString>;
2812
+ }, z.core.$strip>>;
2813
+ layout: z.ZodLiteral<"bigQuote">;
2814
+ }, z.core.$strip>, z.ZodObject<{
2815
+ title: z.ZodString;
2816
+ stepLabel: z.ZodOptional<z.ZodString>;
2817
+ subtitle: z.ZodOptional<z.ZodString>;
2818
+ stats: z.ZodArray<z.ZodObject<{
2819
+ value: z.ZodString;
2820
+ label: z.ZodString;
2821
+ color: z.ZodOptional<z.ZodEnum<{
2822
+ success: "success";
2823
+ primary: "primary";
2824
+ accent: "accent";
2825
+ warning: "warning";
2826
+ danger: "danger";
2827
+ info: "info";
2828
+ highlight: "highlight";
2829
+ }>>;
2830
+ change: z.ZodOptional<z.ZodString>;
2831
+ }, z.core.$strip>>;
2832
+ callout: z.ZodOptional<z.ZodObject<{
2833
+ text: z.ZodString;
2834
+ label: z.ZodOptional<z.ZodString>;
2835
+ color: z.ZodOptional<z.ZodEnum<{
2836
+ success: "success";
2837
+ primary: "primary";
2838
+ accent: "accent";
2839
+ warning: "warning";
2840
+ danger: "danger";
2841
+ info: "info";
2842
+ highlight: "highlight";
2843
+ }>>;
2844
+ align: z.ZodOptional<z.ZodEnum<{
2845
+ left: "left";
2846
+ center: "center";
2847
+ }>>;
2848
+ leftBar: z.ZodOptional<z.ZodBoolean>;
2849
+ }, z.core.$strip>>;
2850
+ accentColor: z.ZodOptional<z.ZodEnum<{
2851
+ success: "success";
2852
+ primary: "primary";
2853
+ accent: "accent";
2854
+ warning: "warning";
2855
+ danger: "danger";
2856
+ info: "info";
2857
+ highlight: "highlight";
2858
+ }>>;
2859
+ style: z.ZodOptional<z.ZodObject<{
2860
+ bgColor: z.ZodOptional<z.ZodString>;
2861
+ decorations: z.ZodOptional<z.ZodBoolean>;
2862
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2863
+ footer: z.ZodOptional<z.ZodString>;
2864
+ }, z.core.$strip>>;
2865
+ layout: z.ZodLiteral<"stats">;
2866
+ }, z.core.$strip>, z.ZodObject<{
2867
+ title: z.ZodString;
2868
+ stepLabel: z.ZodOptional<z.ZodString>;
2869
+ subtitle: z.ZodOptional<z.ZodString>;
2870
+ items: z.ZodArray<z.ZodObject<{
2871
+ date: z.ZodString;
2872
+ title: z.ZodString;
2873
+ description: z.ZodOptional<z.ZodString>;
2874
+ color: z.ZodOptional<z.ZodEnum<{
2875
+ success: "success";
2876
+ primary: "primary";
2877
+ accent: "accent";
2878
+ warning: "warning";
2879
+ danger: "danger";
2880
+ info: "info";
2881
+ highlight: "highlight";
2882
+ }>>;
2883
+ done: z.ZodOptional<z.ZodBoolean>;
2884
+ }, z.core.$strip>>;
2885
+ accentColor: z.ZodOptional<z.ZodEnum<{
2886
+ success: "success";
2887
+ primary: "primary";
2888
+ accent: "accent";
2889
+ warning: "warning";
2890
+ danger: "danger";
2891
+ info: "info";
2892
+ highlight: "highlight";
2893
+ }>>;
2894
+ style: z.ZodOptional<z.ZodObject<{
2895
+ bgColor: z.ZodOptional<z.ZodString>;
2896
+ decorations: z.ZodOptional<z.ZodBoolean>;
2897
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
2898
+ footer: z.ZodOptional<z.ZodString>;
2899
+ }, z.core.$strip>>;
2900
+ layout: z.ZodLiteral<"timeline">;
2901
+ }, z.core.$strip>, z.ZodObject<{
2902
+ left: z.ZodOptional<z.ZodObject<{
2903
+ title: z.ZodOptional<z.ZodString>;
2904
+ subtitle: z.ZodOptional<z.ZodString>;
2905
+ label: z.ZodOptional<z.ZodString>;
2906
+ accentColor: z.ZodOptional<z.ZodEnum<{
2907
+ success: "success";
2908
+ primary: "primary";
2909
+ accent: "accent";
2910
+ warning: "warning";
2911
+ danger: "danger";
2912
+ info: "info";
2913
+ highlight: "highlight";
2914
+ }>>;
2915
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2916
+ type: z.ZodLiteral<"text">;
2917
+ value: z.ZodString;
2918
+ align: z.ZodOptional<z.ZodEnum<{
2919
+ left: "left";
2920
+ center: "center";
2921
+ right: "right";
2922
+ }>>;
2923
+ bold: z.ZodOptional<z.ZodBoolean>;
2924
+ dim: z.ZodOptional<z.ZodBoolean>;
2925
+ fontSize: z.ZodOptional<z.ZodNumber>;
2926
+ color: z.ZodOptional<z.ZodEnum<{
2927
+ success: "success";
2928
+ primary: "primary";
2929
+ accent: "accent";
2930
+ warning: "warning";
2931
+ danger: "danger";
2932
+ info: "info";
2933
+ highlight: "highlight";
2934
+ }>>;
2935
+ }, z.core.$strip>, z.ZodObject<{
2936
+ type: z.ZodLiteral<"bullets">;
2937
+ items: z.ZodArray<z.ZodString>;
2938
+ ordered: z.ZodOptional<z.ZodBoolean>;
2939
+ icon: z.ZodOptional<z.ZodString>;
2940
+ }, z.core.$strip>, z.ZodObject<{
2941
+ type: z.ZodLiteral<"code">;
2942
+ code: z.ZodString;
2943
+ language: z.ZodOptional<z.ZodString>;
2944
+ }, z.core.$strip>, z.ZodObject<{
2945
+ type: z.ZodLiteral<"callout">;
2946
+ text: z.ZodString;
2947
+ label: z.ZodOptional<z.ZodString>;
2948
+ color: z.ZodOptional<z.ZodEnum<{
2949
+ success: "success";
2950
+ primary: "primary";
2951
+ accent: "accent";
2952
+ warning: "warning";
2953
+ danger: "danger";
2954
+ info: "info";
2955
+ highlight: "highlight";
2956
+ }>>;
2957
+ style: z.ZodOptional<z.ZodEnum<{
2958
+ warning: "warning";
2959
+ info: "info";
2960
+ quote: "quote";
2961
+ }>>;
2962
+ }, z.core.$strip>, z.ZodObject<{
2963
+ type: z.ZodLiteral<"metric">;
2964
+ value: z.ZodString;
2965
+ label: z.ZodString;
2966
+ color: z.ZodOptional<z.ZodEnum<{
2967
+ success: "success";
2968
+ primary: "primary";
2969
+ accent: "accent";
2970
+ warning: "warning";
2971
+ danger: "danger";
2972
+ info: "info";
2973
+ highlight: "highlight";
2974
+ }>>;
2975
+ change: z.ZodOptional<z.ZodString>;
2976
+ }, z.core.$strip>, z.ZodObject<{
2977
+ type: z.ZodLiteral<"divider">;
2978
+ color: z.ZodOptional<z.ZodEnum<{
2979
+ success: "success";
2980
+ primary: "primary";
2981
+ accent: "accent";
2982
+ warning: "warning";
2983
+ danger: "danger";
2984
+ info: "info";
2985
+ highlight: "highlight";
2986
+ }>>;
2987
+ }, z.core.$strip>, z.ZodObject<{
2988
+ type: z.ZodLiteral<"image">;
2989
+ src: z.ZodString;
2990
+ alt: z.ZodOptional<z.ZodString>;
2991
+ fit: z.ZodOptional<z.ZodEnum<{
2992
+ contain: "contain";
2993
+ cover: "cover";
2994
+ }>>;
2995
+ }, z.core.$strip>], "type">>>;
2996
+ dark: z.ZodOptional<z.ZodBoolean>;
2997
+ ratio: z.ZodOptional<z.ZodNumber>;
2998
+ }, z.core.$strip>>;
2999
+ right: z.ZodOptional<z.ZodObject<{
3000
+ title: z.ZodOptional<z.ZodString>;
3001
+ subtitle: z.ZodOptional<z.ZodString>;
3002
+ label: z.ZodOptional<z.ZodString>;
3003
+ accentColor: z.ZodOptional<z.ZodEnum<{
3004
+ success: "success";
3005
+ primary: "primary";
3006
+ accent: "accent";
3007
+ warning: "warning";
3008
+ danger: "danger";
3009
+ info: "info";
3010
+ highlight: "highlight";
3011
+ }>>;
3012
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3013
+ type: z.ZodLiteral<"text">;
3014
+ value: z.ZodString;
3015
+ align: z.ZodOptional<z.ZodEnum<{
3016
+ left: "left";
3017
+ center: "center";
3018
+ right: "right";
3019
+ }>>;
3020
+ bold: z.ZodOptional<z.ZodBoolean>;
3021
+ dim: z.ZodOptional<z.ZodBoolean>;
3022
+ fontSize: z.ZodOptional<z.ZodNumber>;
3023
+ color: z.ZodOptional<z.ZodEnum<{
3024
+ success: "success";
3025
+ primary: "primary";
3026
+ accent: "accent";
3027
+ warning: "warning";
3028
+ danger: "danger";
3029
+ info: "info";
3030
+ highlight: "highlight";
3031
+ }>>;
3032
+ }, z.core.$strip>, z.ZodObject<{
3033
+ type: z.ZodLiteral<"bullets">;
3034
+ items: z.ZodArray<z.ZodString>;
3035
+ ordered: z.ZodOptional<z.ZodBoolean>;
3036
+ icon: z.ZodOptional<z.ZodString>;
3037
+ }, z.core.$strip>, z.ZodObject<{
3038
+ type: z.ZodLiteral<"code">;
3039
+ code: z.ZodString;
3040
+ language: z.ZodOptional<z.ZodString>;
3041
+ }, z.core.$strip>, z.ZodObject<{
3042
+ type: z.ZodLiteral<"callout">;
3043
+ text: z.ZodString;
3044
+ label: z.ZodOptional<z.ZodString>;
3045
+ color: z.ZodOptional<z.ZodEnum<{
3046
+ success: "success";
3047
+ primary: "primary";
3048
+ accent: "accent";
3049
+ warning: "warning";
3050
+ danger: "danger";
3051
+ info: "info";
3052
+ highlight: "highlight";
3053
+ }>>;
3054
+ style: z.ZodOptional<z.ZodEnum<{
3055
+ warning: "warning";
3056
+ info: "info";
3057
+ quote: "quote";
3058
+ }>>;
3059
+ }, z.core.$strip>, z.ZodObject<{
3060
+ type: z.ZodLiteral<"metric">;
3061
+ value: z.ZodString;
3062
+ label: z.ZodString;
3063
+ color: z.ZodOptional<z.ZodEnum<{
3064
+ success: "success";
3065
+ primary: "primary";
3066
+ accent: "accent";
3067
+ warning: "warning";
3068
+ danger: "danger";
3069
+ info: "info";
3070
+ highlight: "highlight";
3071
+ }>>;
3072
+ change: z.ZodOptional<z.ZodString>;
3073
+ }, z.core.$strip>, z.ZodObject<{
3074
+ type: z.ZodLiteral<"divider">;
3075
+ color: z.ZodOptional<z.ZodEnum<{
3076
+ success: "success";
3077
+ primary: "primary";
3078
+ accent: "accent";
3079
+ warning: "warning";
3080
+ danger: "danger";
3081
+ info: "info";
3082
+ highlight: "highlight";
3083
+ }>>;
3084
+ }, z.core.$strip>, z.ZodObject<{
3085
+ type: z.ZodLiteral<"image">;
3086
+ src: z.ZodString;
3087
+ alt: z.ZodOptional<z.ZodString>;
3088
+ fit: z.ZodOptional<z.ZodEnum<{
3089
+ contain: "contain";
3090
+ cover: "cover";
3091
+ }>>;
3092
+ }, z.core.$strip>], "type">>>;
3093
+ dark: z.ZodOptional<z.ZodBoolean>;
3094
+ ratio: z.ZodOptional<z.ZodNumber>;
3095
+ }, z.core.$strip>>;
3096
+ accentColor: z.ZodOptional<z.ZodEnum<{
3097
+ success: "success";
3098
+ primary: "primary";
3099
+ accent: "accent";
3100
+ warning: "warning";
3101
+ danger: "danger";
3102
+ info: "info";
3103
+ highlight: "highlight";
3104
+ }>>;
3105
+ style: z.ZodOptional<z.ZodObject<{
3106
+ bgColor: z.ZodOptional<z.ZodString>;
3107
+ decorations: z.ZodOptional<z.ZodBoolean>;
3108
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
3109
+ footer: z.ZodOptional<z.ZodString>;
3110
+ }, z.core.$strip>>;
3111
+ layout: z.ZodLiteral<"split">;
3112
+ }, z.core.$strip>, z.ZodObject<{
3113
+ title: z.ZodString;
3114
+ stepLabel: z.ZodOptional<z.ZodString>;
3115
+ subtitle: z.ZodOptional<z.ZodString>;
3116
+ rows: z.ZodOptional<z.ZodNumber>;
3117
+ cols: z.ZodOptional<z.ZodNumber>;
3118
+ xAxis: z.ZodOptional<z.ZodObject<{
3119
+ low: z.ZodOptional<z.ZodString>;
3120
+ high: z.ZodOptional<z.ZodString>;
3121
+ label: z.ZodOptional<z.ZodString>;
3122
+ }, z.core.$strip>>;
3123
+ yAxis: z.ZodOptional<z.ZodObject<{
3124
+ low: z.ZodOptional<z.ZodString>;
3125
+ high: z.ZodOptional<z.ZodString>;
3126
+ label: z.ZodOptional<z.ZodString>;
3127
+ }, z.core.$strip>>;
3128
+ cells: z.ZodArray<z.ZodObject<{
3129
+ label: z.ZodString;
3130
+ items: z.ZodOptional<z.ZodArray<z.ZodString>>;
3131
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
3132
+ type: z.ZodLiteral<"text">;
3133
+ value: z.ZodString;
3134
+ align: z.ZodOptional<z.ZodEnum<{
3135
+ left: "left";
3136
+ center: "center";
3137
+ right: "right";
3138
+ }>>;
3139
+ bold: z.ZodOptional<z.ZodBoolean>;
3140
+ dim: z.ZodOptional<z.ZodBoolean>;
3141
+ fontSize: z.ZodOptional<z.ZodNumber>;
3142
+ color: z.ZodOptional<z.ZodEnum<{
3143
+ success: "success";
3144
+ primary: "primary";
3145
+ accent: "accent";
3146
+ warning: "warning";
3147
+ danger: "danger";
3148
+ info: "info";
3149
+ highlight: "highlight";
3150
+ }>>;
3151
+ }, z.core.$strip>, z.ZodObject<{
3152
+ type: z.ZodLiteral<"bullets">;
3153
+ items: z.ZodArray<z.ZodString>;
3154
+ ordered: z.ZodOptional<z.ZodBoolean>;
3155
+ icon: z.ZodOptional<z.ZodString>;
3156
+ }, z.core.$strip>, z.ZodObject<{
3157
+ type: z.ZodLiteral<"code">;
3158
+ code: z.ZodString;
3159
+ language: z.ZodOptional<z.ZodString>;
3160
+ }, z.core.$strip>, z.ZodObject<{
3161
+ type: z.ZodLiteral<"callout">;
3162
+ text: z.ZodString;
3163
+ label: z.ZodOptional<z.ZodString>;
3164
+ color: z.ZodOptional<z.ZodEnum<{
3165
+ success: "success";
3166
+ primary: "primary";
3167
+ accent: "accent";
3168
+ warning: "warning";
3169
+ danger: "danger";
3170
+ info: "info";
3171
+ highlight: "highlight";
3172
+ }>>;
3173
+ style: z.ZodOptional<z.ZodEnum<{
3174
+ warning: "warning";
3175
+ info: "info";
3176
+ quote: "quote";
3177
+ }>>;
3178
+ }, z.core.$strip>, z.ZodObject<{
3179
+ type: z.ZodLiteral<"metric">;
3180
+ value: z.ZodString;
3181
+ label: z.ZodString;
3182
+ color: z.ZodOptional<z.ZodEnum<{
3183
+ success: "success";
3184
+ primary: "primary";
3185
+ accent: "accent";
3186
+ warning: "warning";
3187
+ danger: "danger";
3188
+ info: "info";
3189
+ highlight: "highlight";
3190
+ }>>;
3191
+ change: z.ZodOptional<z.ZodString>;
3192
+ }, z.core.$strip>, z.ZodObject<{
3193
+ type: z.ZodLiteral<"divider">;
3194
+ color: z.ZodOptional<z.ZodEnum<{
3195
+ success: "success";
3196
+ primary: "primary";
3197
+ accent: "accent";
3198
+ warning: "warning";
3199
+ danger: "danger";
3200
+ info: "info";
3201
+ highlight: "highlight";
3202
+ }>>;
3203
+ }, z.core.$strip>, z.ZodObject<{
3204
+ type: z.ZodLiteral<"image">;
3205
+ src: z.ZodString;
3206
+ alt: z.ZodOptional<z.ZodString>;
3207
+ fit: z.ZodOptional<z.ZodEnum<{
3208
+ contain: "contain";
3209
+ cover: "cover";
3210
+ }>>;
3211
+ }, z.core.$strip>], "type">>>;
3212
+ accentColor: z.ZodOptional<z.ZodEnum<{
3213
+ success: "success";
3214
+ primary: "primary";
3215
+ accent: "accent";
3216
+ warning: "warning";
3217
+ danger: "danger";
3218
+ info: "info";
3219
+ highlight: "highlight";
3220
+ }>>;
3221
+ }, z.core.$strip>>;
3222
+ accentColor: z.ZodOptional<z.ZodEnum<{
3223
+ success: "success";
3224
+ primary: "primary";
3225
+ accent: "accent";
3226
+ warning: "warning";
3227
+ danger: "danger";
3228
+ info: "info";
3229
+ highlight: "highlight";
3230
+ }>>;
3231
+ style: z.ZodOptional<z.ZodObject<{
3232
+ bgColor: z.ZodOptional<z.ZodString>;
3233
+ decorations: z.ZodOptional<z.ZodBoolean>;
3234
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
3235
+ footer: z.ZodOptional<z.ZodString>;
3236
+ }, z.core.$strip>>;
3237
+ layout: z.ZodLiteral<"matrix">;
3238
+ }, z.core.$strip>, z.ZodObject<{
3239
+ title: z.ZodString;
3240
+ stepLabel: z.ZodOptional<z.ZodString>;
3241
+ subtitle: z.ZodOptional<z.ZodString>;
3242
+ headers: z.ZodArray<z.ZodString>;
3243
+ rows: z.ZodArray<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3244
+ text: z.ZodString;
3245
+ color: z.ZodOptional<z.ZodEnum<{
3246
+ success: "success";
3247
+ primary: "primary";
3248
+ accent: "accent";
3249
+ warning: "warning";
3250
+ danger: "danger";
3251
+ info: "info";
3252
+ highlight: "highlight";
3253
+ }>>;
3254
+ bold: z.ZodOptional<z.ZodBoolean>;
3255
+ }, z.core.$strip>]>>>;
3256
+ rowHeaders: z.ZodOptional<z.ZodBoolean>;
3257
+ striped: z.ZodOptional<z.ZodBoolean>;
3258
+ callout: z.ZodOptional<z.ZodObject<{
3259
+ text: z.ZodString;
3260
+ label: z.ZodOptional<z.ZodString>;
3261
+ color: z.ZodOptional<z.ZodEnum<{
3262
+ success: "success";
3263
+ primary: "primary";
3264
+ accent: "accent";
3265
+ warning: "warning";
3266
+ danger: "danger";
3267
+ info: "info";
3268
+ highlight: "highlight";
3269
+ }>>;
3270
+ align: z.ZodOptional<z.ZodEnum<{
3271
+ left: "left";
3272
+ center: "center";
3273
+ }>>;
3274
+ leftBar: z.ZodOptional<z.ZodBoolean>;
3275
+ }, z.core.$strip>>;
3276
+ accentColor: z.ZodOptional<z.ZodEnum<{
3277
+ success: "success";
3278
+ primary: "primary";
3279
+ accent: "accent";
3280
+ warning: "warning";
3281
+ danger: "danger";
3282
+ info: "info";
3283
+ highlight: "highlight";
3284
+ }>>;
3285
+ style: z.ZodOptional<z.ZodObject<{
3286
+ bgColor: z.ZodOptional<z.ZodString>;
3287
+ decorations: z.ZodOptional<z.ZodBoolean>;
3288
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
3289
+ footer: z.ZodOptional<z.ZodString>;
3290
+ }, z.core.$strip>>;
3291
+ layout: z.ZodLiteral<"table">;
3292
+ }, z.core.$strip>, z.ZodObject<{
3293
+ title: z.ZodString;
3294
+ stepLabel: z.ZodOptional<z.ZodString>;
3295
+ subtitle: z.ZodOptional<z.ZodString>;
3296
+ stages: z.ZodArray<z.ZodObject<{
3297
+ label: z.ZodString;
3298
+ value: z.ZodOptional<z.ZodString>;
3299
+ description: z.ZodOptional<z.ZodString>;
3300
+ color: z.ZodOptional<z.ZodEnum<{
3301
+ success: "success";
3302
+ primary: "primary";
3303
+ accent: "accent";
3304
+ warning: "warning";
3305
+ danger: "danger";
3306
+ info: "info";
3307
+ highlight: "highlight";
3308
+ }>>;
3309
+ }, z.core.$strip>>;
3310
+ callout: z.ZodOptional<z.ZodObject<{
3311
+ text: z.ZodString;
3312
+ label: z.ZodOptional<z.ZodString>;
3313
+ color: z.ZodOptional<z.ZodEnum<{
3314
+ success: "success";
3315
+ primary: "primary";
3316
+ accent: "accent";
3317
+ warning: "warning";
3318
+ danger: "danger";
3319
+ info: "info";
3320
+ highlight: "highlight";
3321
+ }>>;
3322
+ align: z.ZodOptional<z.ZodEnum<{
3323
+ left: "left";
3324
+ center: "center";
3325
+ }>>;
3326
+ leftBar: z.ZodOptional<z.ZodBoolean>;
3327
+ }, z.core.$strip>>;
3328
+ accentColor: z.ZodOptional<z.ZodEnum<{
3329
+ success: "success";
3330
+ primary: "primary";
3331
+ accent: "accent";
3332
+ warning: "warning";
3333
+ danger: "danger";
3334
+ info: "info";
3335
+ highlight: "highlight";
3336
+ }>>;
3337
+ style: z.ZodOptional<z.ZodObject<{
3338
+ bgColor: z.ZodOptional<z.ZodString>;
3339
+ decorations: z.ZodOptional<z.ZodBoolean>;
3340
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
3341
+ footer: z.ZodOptional<z.ZodString>;
3342
+ }, z.core.$strip>>;
3343
+ layout: z.ZodLiteral<"funnel">;
3344
+ }, z.core.$strip>], "layout">;
1168
3345
  }, z.core.$strict>]>>;
1169
3346
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
1170
3347
  type: z.ZodLiteral<"audio">;
@@ -1592,8 +3769,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1592
3769
  }, z.core.$strict>], "kind">;
1593
3770
  size: z.ZodOptional<z.ZodEnum<{
1594
3771
  auto: "auto";
1595
- cover: "cover";
1596
3772
  contain: "contain";
3773
+ cover: "cover";
1597
3774
  fill: "fill";
1598
3775
  }>>;
1599
3776
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -1848,6 +4025,30 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
1848
4025
  textSlideParams: z.ZodOptional<z.ZodObject<{
1849
4026
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
1850
4027
  }, z.core.$strict>>;
4028
+ slideParams: z.ZodOptional<z.ZodObject<{
4029
+ theme: z.ZodObject<{
4030
+ colors: z.ZodObject<{
4031
+ bg: z.ZodString;
4032
+ bgCard: z.ZodString;
4033
+ bgCardAlt: z.ZodString;
4034
+ text: z.ZodString;
4035
+ textMuted: z.ZodString;
4036
+ textDim: z.ZodString;
4037
+ primary: z.ZodString;
4038
+ accent: z.ZodString;
4039
+ success: z.ZodString;
4040
+ warning: z.ZodString;
4041
+ danger: z.ZodString;
4042
+ info: z.ZodString;
4043
+ highlight: z.ZodString;
4044
+ }, z.core.$strip>;
4045
+ fonts: z.ZodObject<{
4046
+ title: z.ZodString;
4047
+ body: z.ZodString;
4048
+ mono: z.ZodString;
4049
+ }, z.core.$strip>;
4050
+ }, z.core.$strip>;
4051
+ }, z.core.$strict>>;
1851
4052
  captionParams: z.ZodOptional<z.ZodObject<{
1852
4053
  lang: z.ZodOptional<z.ZodString>;
1853
4054
  styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -1982,8 +4183,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
1982
4183
  }, z.core.$strict>], "kind">;
1983
4184
  size: z.ZodOptional<z.ZodEnum<{
1984
4185
  auto: "auto";
1985
- cover: "cover";
1986
4186
  contain: "contain";
4187
+ cover: "cover";
1987
4188
  fill: "fill";
1988
4189
  }>>;
1989
4190
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -2238,6 +4439,30 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2238
4439
  textSlideParams: z.ZodOptional<z.ZodObject<{
2239
4440
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
2240
4441
  }, z.core.$strict>>;
4442
+ slideParams: z.ZodOptional<z.ZodObject<{
4443
+ theme: z.ZodObject<{
4444
+ colors: z.ZodObject<{
4445
+ bg: z.ZodString;
4446
+ bgCard: z.ZodString;
4447
+ bgCardAlt: z.ZodString;
4448
+ text: z.ZodString;
4449
+ textMuted: z.ZodString;
4450
+ textDim: z.ZodString;
4451
+ primary: z.ZodString;
4452
+ accent: z.ZodString;
4453
+ success: z.ZodString;
4454
+ warning: z.ZodString;
4455
+ danger: z.ZodString;
4456
+ info: z.ZodString;
4457
+ highlight: z.ZodString;
4458
+ }, z.core.$strip>;
4459
+ fonts: z.ZodObject<{
4460
+ title: z.ZodString;
4461
+ body: z.ZodString;
4462
+ mono: z.ZodString;
4463
+ }, z.core.$strip>;
4464
+ }, z.core.$strip>;
4465
+ }, z.core.$strict>>;
2241
4466
  captionParams: z.ZodOptional<z.ZodObject<{
2242
4467
  lang: z.ZodOptional<z.ZodString>;
2243
4468
  styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -2318,8 +4543,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2318
4543
  }, z.core.$strict>], "kind">;
2319
4544
  size: z.ZodOptional<z.ZodEnum<{
2320
4545
  auto: "auto";
2321
- cover: "cover";
2322
4546
  contain: "contain";
4547
+ cover: "cover";
2323
4548
  fill: "fill";
2324
4549
  }>>;
2325
4550
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -2396,8 +4621,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2396
4621
  }, z.core.$strict>], "kind">;
2397
4622
  size: z.ZodOptional<z.ZodEnum<{
2398
4623
  auto: "auto";
2399
- cover: "cover";
2400
4624
  contain: "contain";
4625
+ cover: "cover";
2401
4626
  fill: "fill";
2402
4627
  }>>;
2403
4628
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -2437,8 +4662,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2437
4662
  }, z.core.$strict>], "kind">;
2438
4663
  size: z.ZodOptional<z.ZodEnum<{
2439
4664
  auto: "auto";
2440
- cover: "cover";
2441
4665
  contain: "contain";
4666
+ cover: "cover";
2442
4667
  fill: "fill";
2443
4668
  }>>;
2444
4669
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -2456,6 +4681,1082 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2456
4681
  type: z.ZodLiteral<"vision">;
2457
4682
  style: z.ZodString;
2458
4683
  data: z.ZodRecord<z.ZodString, z.ZodAny>;
4684
+ }, z.core.$strict>, z.ZodObject<{
4685
+ type: z.ZodLiteral<"slide">;
4686
+ theme: z.ZodOptional<z.ZodObject<{
4687
+ colors: z.ZodObject<{
4688
+ bg: z.ZodString;
4689
+ bgCard: z.ZodString;
4690
+ bgCardAlt: z.ZodString;
4691
+ text: z.ZodString;
4692
+ textMuted: z.ZodString;
4693
+ textDim: z.ZodString;
4694
+ primary: z.ZodString;
4695
+ accent: z.ZodString;
4696
+ success: z.ZodString;
4697
+ warning: z.ZodString;
4698
+ danger: z.ZodString;
4699
+ info: z.ZodString;
4700
+ highlight: z.ZodString;
4701
+ }, z.core.$strip>;
4702
+ fonts: z.ZodObject<{
4703
+ title: z.ZodString;
4704
+ body: z.ZodString;
4705
+ mono: z.ZodString;
4706
+ }, z.core.$strip>;
4707
+ }, z.core.$strip>>;
4708
+ slide: z.ZodDiscriminatedUnion<[z.ZodObject<{
4709
+ title: z.ZodString;
4710
+ subtitle: z.ZodOptional<z.ZodString>;
4711
+ author: z.ZodOptional<z.ZodString>;
4712
+ note: z.ZodOptional<z.ZodString>;
4713
+ accentColor: z.ZodOptional<z.ZodEnum<{
4714
+ success: "success";
4715
+ primary: "primary";
4716
+ accent: "accent";
4717
+ warning: "warning";
4718
+ danger: "danger";
4719
+ info: "info";
4720
+ highlight: "highlight";
4721
+ }>>;
4722
+ style: z.ZodOptional<z.ZodObject<{
4723
+ bgColor: z.ZodOptional<z.ZodString>;
4724
+ decorations: z.ZodOptional<z.ZodBoolean>;
4725
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
4726
+ footer: z.ZodOptional<z.ZodString>;
4727
+ }, z.core.$strip>>;
4728
+ layout: z.ZodLiteral<"title">;
4729
+ }, z.core.$strip>, z.ZodObject<{
4730
+ title: z.ZodString;
4731
+ stepLabel: z.ZodOptional<z.ZodString>;
4732
+ subtitle: z.ZodOptional<z.ZodString>;
4733
+ columns: z.ZodArray<z.ZodObject<{
4734
+ title: z.ZodString;
4735
+ accentColor: z.ZodOptional<z.ZodEnum<{
4736
+ success: "success";
4737
+ primary: "primary";
4738
+ accent: "accent";
4739
+ warning: "warning";
4740
+ danger: "danger";
4741
+ info: "info";
4742
+ highlight: "highlight";
4743
+ }>>;
4744
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4745
+ type: z.ZodLiteral<"text">;
4746
+ value: z.ZodString;
4747
+ align: z.ZodOptional<z.ZodEnum<{
4748
+ left: "left";
4749
+ center: "center";
4750
+ right: "right";
4751
+ }>>;
4752
+ bold: z.ZodOptional<z.ZodBoolean>;
4753
+ dim: z.ZodOptional<z.ZodBoolean>;
4754
+ fontSize: z.ZodOptional<z.ZodNumber>;
4755
+ color: z.ZodOptional<z.ZodEnum<{
4756
+ success: "success";
4757
+ primary: "primary";
4758
+ accent: "accent";
4759
+ warning: "warning";
4760
+ danger: "danger";
4761
+ info: "info";
4762
+ highlight: "highlight";
4763
+ }>>;
4764
+ }, z.core.$strip>, z.ZodObject<{
4765
+ type: z.ZodLiteral<"bullets">;
4766
+ items: z.ZodArray<z.ZodString>;
4767
+ ordered: z.ZodOptional<z.ZodBoolean>;
4768
+ icon: z.ZodOptional<z.ZodString>;
4769
+ }, z.core.$strip>, z.ZodObject<{
4770
+ type: z.ZodLiteral<"code">;
4771
+ code: z.ZodString;
4772
+ language: z.ZodOptional<z.ZodString>;
4773
+ }, z.core.$strip>, z.ZodObject<{
4774
+ type: z.ZodLiteral<"callout">;
4775
+ text: z.ZodString;
4776
+ label: z.ZodOptional<z.ZodString>;
4777
+ color: z.ZodOptional<z.ZodEnum<{
4778
+ success: "success";
4779
+ primary: "primary";
4780
+ accent: "accent";
4781
+ warning: "warning";
4782
+ danger: "danger";
4783
+ info: "info";
4784
+ highlight: "highlight";
4785
+ }>>;
4786
+ style: z.ZodOptional<z.ZodEnum<{
4787
+ warning: "warning";
4788
+ info: "info";
4789
+ quote: "quote";
4790
+ }>>;
4791
+ }, z.core.$strip>, z.ZodObject<{
4792
+ type: z.ZodLiteral<"metric">;
4793
+ value: z.ZodString;
4794
+ label: z.ZodString;
4795
+ color: z.ZodOptional<z.ZodEnum<{
4796
+ success: "success";
4797
+ primary: "primary";
4798
+ accent: "accent";
4799
+ warning: "warning";
4800
+ danger: "danger";
4801
+ info: "info";
4802
+ highlight: "highlight";
4803
+ }>>;
4804
+ change: z.ZodOptional<z.ZodString>;
4805
+ }, z.core.$strip>, z.ZodObject<{
4806
+ type: z.ZodLiteral<"divider">;
4807
+ color: z.ZodOptional<z.ZodEnum<{
4808
+ success: "success";
4809
+ primary: "primary";
4810
+ accent: "accent";
4811
+ warning: "warning";
4812
+ danger: "danger";
4813
+ info: "info";
4814
+ highlight: "highlight";
4815
+ }>>;
4816
+ }, z.core.$strip>, z.ZodObject<{
4817
+ type: z.ZodLiteral<"image">;
4818
+ src: z.ZodString;
4819
+ alt: z.ZodOptional<z.ZodString>;
4820
+ fit: z.ZodOptional<z.ZodEnum<{
4821
+ contain: "contain";
4822
+ cover: "cover";
4823
+ }>>;
4824
+ }, z.core.$strip>], "type">>>;
4825
+ footer: z.ZodOptional<z.ZodString>;
4826
+ label: z.ZodOptional<z.ZodString>;
4827
+ num: z.ZodOptional<z.ZodNumber>;
4828
+ icon: z.ZodOptional<z.ZodString>;
4829
+ }, z.core.$strip>>;
4830
+ showArrows: z.ZodOptional<z.ZodBoolean>;
4831
+ callout: z.ZodOptional<z.ZodObject<{
4832
+ text: z.ZodString;
4833
+ label: z.ZodOptional<z.ZodString>;
4834
+ color: z.ZodOptional<z.ZodEnum<{
4835
+ success: "success";
4836
+ primary: "primary";
4837
+ accent: "accent";
4838
+ warning: "warning";
4839
+ danger: "danger";
4840
+ info: "info";
4841
+ highlight: "highlight";
4842
+ }>>;
4843
+ align: z.ZodOptional<z.ZodEnum<{
4844
+ left: "left";
4845
+ center: "center";
4846
+ }>>;
4847
+ leftBar: z.ZodOptional<z.ZodBoolean>;
4848
+ }, z.core.$strip>>;
4849
+ bottomText: z.ZodOptional<z.ZodString>;
4850
+ accentColor: z.ZodOptional<z.ZodEnum<{
4851
+ success: "success";
4852
+ primary: "primary";
4853
+ accent: "accent";
4854
+ warning: "warning";
4855
+ danger: "danger";
4856
+ info: "info";
4857
+ highlight: "highlight";
4858
+ }>>;
4859
+ style: z.ZodOptional<z.ZodObject<{
4860
+ bgColor: z.ZodOptional<z.ZodString>;
4861
+ decorations: z.ZodOptional<z.ZodBoolean>;
4862
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
4863
+ footer: z.ZodOptional<z.ZodString>;
4864
+ }, z.core.$strip>>;
4865
+ layout: z.ZodLiteral<"columns">;
4866
+ }, z.core.$strip>, z.ZodObject<{
4867
+ title: z.ZodString;
4868
+ stepLabel: z.ZodOptional<z.ZodString>;
4869
+ subtitle: z.ZodOptional<z.ZodString>;
4870
+ left: z.ZodObject<{
4871
+ title: z.ZodString;
4872
+ accentColor: z.ZodOptional<z.ZodEnum<{
4873
+ success: "success";
4874
+ primary: "primary";
4875
+ accent: "accent";
4876
+ warning: "warning";
4877
+ danger: "danger";
4878
+ info: "info";
4879
+ highlight: "highlight";
4880
+ }>>;
4881
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4882
+ type: z.ZodLiteral<"text">;
4883
+ value: z.ZodString;
4884
+ align: z.ZodOptional<z.ZodEnum<{
4885
+ left: "left";
4886
+ center: "center";
4887
+ right: "right";
4888
+ }>>;
4889
+ bold: z.ZodOptional<z.ZodBoolean>;
4890
+ dim: z.ZodOptional<z.ZodBoolean>;
4891
+ fontSize: z.ZodOptional<z.ZodNumber>;
4892
+ color: z.ZodOptional<z.ZodEnum<{
4893
+ success: "success";
4894
+ primary: "primary";
4895
+ accent: "accent";
4896
+ warning: "warning";
4897
+ danger: "danger";
4898
+ info: "info";
4899
+ highlight: "highlight";
4900
+ }>>;
4901
+ }, z.core.$strip>, z.ZodObject<{
4902
+ type: z.ZodLiteral<"bullets">;
4903
+ items: z.ZodArray<z.ZodString>;
4904
+ ordered: z.ZodOptional<z.ZodBoolean>;
4905
+ icon: z.ZodOptional<z.ZodString>;
4906
+ }, z.core.$strip>, z.ZodObject<{
4907
+ type: z.ZodLiteral<"code">;
4908
+ code: z.ZodString;
4909
+ language: z.ZodOptional<z.ZodString>;
4910
+ }, z.core.$strip>, z.ZodObject<{
4911
+ type: z.ZodLiteral<"callout">;
4912
+ text: z.ZodString;
4913
+ label: z.ZodOptional<z.ZodString>;
4914
+ color: z.ZodOptional<z.ZodEnum<{
4915
+ success: "success";
4916
+ primary: "primary";
4917
+ accent: "accent";
4918
+ warning: "warning";
4919
+ danger: "danger";
4920
+ info: "info";
4921
+ highlight: "highlight";
4922
+ }>>;
4923
+ style: z.ZodOptional<z.ZodEnum<{
4924
+ warning: "warning";
4925
+ info: "info";
4926
+ quote: "quote";
4927
+ }>>;
4928
+ }, z.core.$strip>, z.ZodObject<{
4929
+ type: z.ZodLiteral<"metric">;
4930
+ value: z.ZodString;
4931
+ label: z.ZodString;
4932
+ color: z.ZodOptional<z.ZodEnum<{
4933
+ success: "success";
4934
+ primary: "primary";
4935
+ accent: "accent";
4936
+ warning: "warning";
4937
+ danger: "danger";
4938
+ info: "info";
4939
+ highlight: "highlight";
4940
+ }>>;
4941
+ change: z.ZodOptional<z.ZodString>;
4942
+ }, z.core.$strip>, z.ZodObject<{
4943
+ type: z.ZodLiteral<"divider">;
4944
+ color: z.ZodOptional<z.ZodEnum<{
4945
+ success: "success";
4946
+ primary: "primary";
4947
+ accent: "accent";
4948
+ warning: "warning";
4949
+ danger: "danger";
4950
+ info: "info";
4951
+ highlight: "highlight";
4952
+ }>>;
4953
+ }, z.core.$strip>, z.ZodObject<{
4954
+ type: z.ZodLiteral<"image">;
4955
+ src: z.ZodString;
4956
+ alt: z.ZodOptional<z.ZodString>;
4957
+ fit: z.ZodOptional<z.ZodEnum<{
4958
+ contain: "contain";
4959
+ cover: "cover";
4960
+ }>>;
4961
+ }, z.core.$strip>], "type">>>;
4962
+ footer: z.ZodOptional<z.ZodString>;
4963
+ }, z.core.$strip>;
4964
+ right: z.ZodObject<{
4965
+ title: z.ZodString;
4966
+ accentColor: z.ZodOptional<z.ZodEnum<{
4967
+ success: "success";
4968
+ primary: "primary";
4969
+ accent: "accent";
4970
+ warning: "warning";
4971
+ danger: "danger";
4972
+ info: "info";
4973
+ highlight: "highlight";
4974
+ }>>;
4975
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
4976
+ type: z.ZodLiteral<"text">;
4977
+ value: z.ZodString;
4978
+ align: z.ZodOptional<z.ZodEnum<{
4979
+ left: "left";
4980
+ center: "center";
4981
+ right: "right";
4982
+ }>>;
4983
+ bold: z.ZodOptional<z.ZodBoolean>;
4984
+ dim: z.ZodOptional<z.ZodBoolean>;
4985
+ fontSize: z.ZodOptional<z.ZodNumber>;
4986
+ color: z.ZodOptional<z.ZodEnum<{
4987
+ success: "success";
4988
+ primary: "primary";
4989
+ accent: "accent";
4990
+ warning: "warning";
4991
+ danger: "danger";
4992
+ info: "info";
4993
+ highlight: "highlight";
4994
+ }>>;
4995
+ }, z.core.$strip>, z.ZodObject<{
4996
+ type: z.ZodLiteral<"bullets">;
4997
+ items: z.ZodArray<z.ZodString>;
4998
+ ordered: z.ZodOptional<z.ZodBoolean>;
4999
+ icon: z.ZodOptional<z.ZodString>;
5000
+ }, z.core.$strip>, z.ZodObject<{
5001
+ type: z.ZodLiteral<"code">;
5002
+ code: z.ZodString;
5003
+ language: z.ZodOptional<z.ZodString>;
5004
+ }, z.core.$strip>, z.ZodObject<{
5005
+ type: z.ZodLiteral<"callout">;
5006
+ text: z.ZodString;
5007
+ label: z.ZodOptional<z.ZodString>;
5008
+ color: z.ZodOptional<z.ZodEnum<{
5009
+ success: "success";
5010
+ primary: "primary";
5011
+ accent: "accent";
5012
+ warning: "warning";
5013
+ danger: "danger";
5014
+ info: "info";
5015
+ highlight: "highlight";
5016
+ }>>;
5017
+ style: z.ZodOptional<z.ZodEnum<{
5018
+ warning: "warning";
5019
+ info: "info";
5020
+ quote: "quote";
5021
+ }>>;
5022
+ }, z.core.$strip>, z.ZodObject<{
5023
+ type: z.ZodLiteral<"metric">;
5024
+ value: z.ZodString;
5025
+ label: z.ZodString;
5026
+ color: z.ZodOptional<z.ZodEnum<{
5027
+ success: "success";
5028
+ primary: "primary";
5029
+ accent: "accent";
5030
+ warning: "warning";
5031
+ danger: "danger";
5032
+ info: "info";
5033
+ highlight: "highlight";
5034
+ }>>;
5035
+ change: z.ZodOptional<z.ZodString>;
5036
+ }, z.core.$strip>, z.ZodObject<{
5037
+ type: z.ZodLiteral<"divider">;
5038
+ color: z.ZodOptional<z.ZodEnum<{
5039
+ success: "success";
5040
+ primary: "primary";
5041
+ accent: "accent";
5042
+ warning: "warning";
5043
+ danger: "danger";
5044
+ info: "info";
5045
+ highlight: "highlight";
5046
+ }>>;
5047
+ }, z.core.$strip>, z.ZodObject<{
5048
+ type: z.ZodLiteral<"image">;
5049
+ src: z.ZodString;
5050
+ alt: z.ZodOptional<z.ZodString>;
5051
+ fit: z.ZodOptional<z.ZodEnum<{
5052
+ contain: "contain";
5053
+ cover: "cover";
5054
+ }>>;
5055
+ }, z.core.$strip>], "type">>>;
5056
+ footer: z.ZodOptional<z.ZodString>;
5057
+ }, z.core.$strip>;
5058
+ callout: z.ZodOptional<z.ZodObject<{
5059
+ text: z.ZodString;
5060
+ label: z.ZodOptional<z.ZodString>;
5061
+ color: z.ZodOptional<z.ZodEnum<{
5062
+ success: "success";
5063
+ primary: "primary";
5064
+ accent: "accent";
5065
+ warning: "warning";
5066
+ danger: "danger";
5067
+ info: "info";
5068
+ highlight: "highlight";
5069
+ }>>;
5070
+ align: z.ZodOptional<z.ZodEnum<{
5071
+ left: "left";
5072
+ center: "center";
5073
+ }>>;
5074
+ leftBar: z.ZodOptional<z.ZodBoolean>;
5075
+ }, z.core.$strip>>;
5076
+ accentColor: z.ZodOptional<z.ZodEnum<{
5077
+ success: "success";
5078
+ primary: "primary";
5079
+ accent: "accent";
5080
+ warning: "warning";
5081
+ danger: "danger";
5082
+ info: "info";
5083
+ highlight: "highlight";
5084
+ }>>;
5085
+ style: z.ZodOptional<z.ZodObject<{
5086
+ bgColor: z.ZodOptional<z.ZodString>;
5087
+ decorations: z.ZodOptional<z.ZodBoolean>;
5088
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5089
+ footer: z.ZodOptional<z.ZodString>;
5090
+ }, z.core.$strip>>;
5091
+ layout: z.ZodLiteral<"comparison">;
5092
+ }, z.core.$strip>, z.ZodObject<{
5093
+ title: z.ZodString;
5094
+ subtitle: z.ZodOptional<z.ZodString>;
5095
+ gridColumns: z.ZodOptional<z.ZodNumber>;
5096
+ items: z.ZodArray<z.ZodObject<{
5097
+ title: z.ZodString;
5098
+ description: z.ZodOptional<z.ZodString>;
5099
+ accentColor: z.ZodOptional<z.ZodEnum<{
5100
+ success: "success";
5101
+ primary: "primary";
5102
+ accent: "accent";
5103
+ warning: "warning";
5104
+ danger: "danger";
5105
+ info: "info";
5106
+ highlight: "highlight";
5107
+ }>>;
5108
+ num: z.ZodOptional<z.ZodNumber>;
5109
+ icon: z.ZodOptional<z.ZodString>;
5110
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5111
+ type: z.ZodLiteral<"text">;
5112
+ value: z.ZodString;
5113
+ align: z.ZodOptional<z.ZodEnum<{
5114
+ left: "left";
5115
+ center: "center";
5116
+ right: "right";
5117
+ }>>;
5118
+ bold: z.ZodOptional<z.ZodBoolean>;
5119
+ dim: z.ZodOptional<z.ZodBoolean>;
5120
+ fontSize: z.ZodOptional<z.ZodNumber>;
5121
+ color: z.ZodOptional<z.ZodEnum<{
5122
+ success: "success";
5123
+ primary: "primary";
5124
+ accent: "accent";
5125
+ warning: "warning";
5126
+ danger: "danger";
5127
+ info: "info";
5128
+ highlight: "highlight";
5129
+ }>>;
5130
+ }, z.core.$strip>, z.ZodObject<{
5131
+ type: z.ZodLiteral<"bullets">;
5132
+ items: z.ZodArray<z.ZodString>;
5133
+ ordered: z.ZodOptional<z.ZodBoolean>;
5134
+ icon: z.ZodOptional<z.ZodString>;
5135
+ }, z.core.$strip>, z.ZodObject<{
5136
+ type: z.ZodLiteral<"code">;
5137
+ code: z.ZodString;
5138
+ language: z.ZodOptional<z.ZodString>;
5139
+ }, z.core.$strip>, z.ZodObject<{
5140
+ type: z.ZodLiteral<"callout">;
5141
+ text: z.ZodString;
5142
+ label: z.ZodOptional<z.ZodString>;
5143
+ color: z.ZodOptional<z.ZodEnum<{
5144
+ success: "success";
5145
+ primary: "primary";
5146
+ accent: "accent";
5147
+ warning: "warning";
5148
+ danger: "danger";
5149
+ info: "info";
5150
+ highlight: "highlight";
5151
+ }>>;
5152
+ style: z.ZodOptional<z.ZodEnum<{
5153
+ warning: "warning";
5154
+ info: "info";
5155
+ quote: "quote";
5156
+ }>>;
5157
+ }, z.core.$strip>, z.ZodObject<{
5158
+ type: z.ZodLiteral<"metric">;
5159
+ value: z.ZodString;
5160
+ label: z.ZodString;
5161
+ color: z.ZodOptional<z.ZodEnum<{
5162
+ success: "success";
5163
+ primary: "primary";
5164
+ accent: "accent";
5165
+ warning: "warning";
5166
+ danger: "danger";
5167
+ info: "info";
5168
+ highlight: "highlight";
5169
+ }>>;
5170
+ change: z.ZodOptional<z.ZodString>;
5171
+ }, z.core.$strip>, z.ZodObject<{
5172
+ type: z.ZodLiteral<"divider">;
5173
+ color: z.ZodOptional<z.ZodEnum<{
5174
+ success: "success";
5175
+ primary: "primary";
5176
+ accent: "accent";
5177
+ warning: "warning";
5178
+ danger: "danger";
5179
+ info: "info";
5180
+ highlight: "highlight";
5181
+ }>>;
5182
+ }, z.core.$strip>, z.ZodObject<{
5183
+ type: z.ZodLiteral<"image">;
5184
+ src: z.ZodString;
5185
+ alt: z.ZodOptional<z.ZodString>;
5186
+ fit: z.ZodOptional<z.ZodEnum<{
5187
+ contain: "contain";
5188
+ cover: "cover";
5189
+ }>>;
5190
+ }, z.core.$strip>], "type">>>;
5191
+ }, z.core.$strip>>;
5192
+ footer: z.ZodOptional<z.ZodString>;
5193
+ accentColor: z.ZodOptional<z.ZodEnum<{
5194
+ success: "success";
5195
+ primary: "primary";
5196
+ accent: "accent";
5197
+ warning: "warning";
5198
+ danger: "danger";
5199
+ info: "info";
5200
+ highlight: "highlight";
5201
+ }>>;
5202
+ style: z.ZodOptional<z.ZodObject<{
5203
+ bgColor: z.ZodOptional<z.ZodString>;
5204
+ decorations: z.ZodOptional<z.ZodBoolean>;
5205
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5206
+ footer: z.ZodOptional<z.ZodString>;
5207
+ }, z.core.$strip>>;
5208
+ layout: z.ZodLiteral<"grid">;
5209
+ }, z.core.$strip>, z.ZodObject<{
5210
+ quote: z.ZodString;
5211
+ author: z.ZodOptional<z.ZodString>;
5212
+ role: z.ZodOptional<z.ZodString>;
5213
+ accentColor: z.ZodOptional<z.ZodEnum<{
5214
+ success: "success";
5215
+ primary: "primary";
5216
+ accent: "accent";
5217
+ warning: "warning";
5218
+ danger: "danger";
5219
+ info: "info";
5220
+ highlight: "highlight";
5221
+ }>>;
5222
+ style: z.ZodOptional<z.ZodObject<{
5223
+ bgColor: z.ZodOptional<z.ZodString>;
5224
+ decorations: z.ZodOptional<z.ZodBoolean>;
5225
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5226
+ footer: z.ZodOptional<z.ZodString>;
5227
+ }, z.core.$strip>>;
5228
+ layout: z.ZodLiteral<"bigQuote">;
5229
+ }, z.core.$strip>, z.ZodObject<{
5230
+ title: z.ZodString;
5231
+ stepLabel: z.ZodOptional<z.ZodString>;
5232
+ subtitle: z.ZodOptional<z.ZodString>;
5233
+ stats: z.ZodArray<z.ZodObject<{
5234
+ value: z.ZodString;
5235
+ label: z.ZodString;
5236
+ color: z.ZodOptional<z.ZodEnum<{
5237
+ success: "success";
5238
+ primary: "primary";
5239
+ accent: "accent";
5240
+ warning: "warning";
5241
+ danger: "danger";
5242
+ info: "info";
5243
+ highlight: "highlight";
5244
+ }>>;
5245
+ change: z.ZodOptional<z.ZodString>;
5246
+ }, z.core.$strip>>;
5247
+ callout: z.ZodOptional<z.ZodObject<{
5248
+ text: z.ZodString;
5249
+ label: z.ZodOptional<z.ZodString>;
5250
+ color: z.ZodOptional<z.ZodEnum<{
5251
+ success: "success";
5252
+ primary: "primary";
5253
+ accent: "accent";
5254
+ warning: "warning";
5255
+ danger: "danger";
5256
+ info: "info";
5257
+ highlight: "highlight";
5258
+ }>>;
5259
+ align: z.ZodOptional<z.ZodEnum<{
5260
+ left: "left";
5261
+ center: "center";
5262
+ }>>;
5263
+ leftBar: z.ZodOptional<z.ZodBoolean>;
5264
+ }, z.core.$strip>>;
5265
+ accentColor: z.ZodOptional<z.ZodEnum<{
5266
+ success: "success";
5267
+ primary: "primary";
5268
+ accent: "accent";
5269
+ warning: "warning";
5270
+ danger: "danger";
5271
+ info: "info";
5272
+ highlight: "highlight";
5273
+ }>>;
5274
+ style: z.ZodOptional<z.ZodObject<{
5275
+ bgColor: z.ZodOptional<z.ZodString>;
5276
+ decorations: z.ZodOptional<z.ZodBoolean>;
5277
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5278
+ footer: z.ZodOptional<z.ZodString>;
5279
+ }, z.core.$strip>>;
5280
+ layout: z.ZodLiteral<"stats">;
5281
+ }, z.core.$strip>, z.ZodObject<{
5282
+ title: z.ZodString;
5283
+ stepLabel: z.ZodOptional<z.ZodString>;
5284
+ subtitle: z.ZodOptional<z.ZodString>;
5285
+ items: z.ZodArray<z.ZodObject<{
5286
+ date: z.ZodString;
5287
+ title: z.ZodString;
5288
+ description: z.ZodOptional<z.ZodString>;
5289
+ color: z.ZodOptional<z.ZodEnum<{
5290
+ success: "success";
5291
+ primary: "primary";
5292
+ accent: "accent";
5293
+ warning: "warning";
5294
+ danger: "danger";
5295
+ info: "info";
5296
+ highlight: "highlight";
5297
+ }>>;
5298
+ done: z.ZodOptional<z.ZodBoolean>;
5299
+ }, z.core.$strip>>;
5300
+ accentColor: z.ZodOptional<z.ZodEnum<{
5301
+ success: "success";
5302
+ primary: "primary";
5303
+ accent: "accent";
5304
+ warning: "warning";
5305
+ danger: "danger";
5306
+ info: "info";
5307
+ highlight: "highlight";
5308
+ }>>;
5309
+ style: z.ZodOptional<z.ZodObject<{
5310
+ bgColor: z.ZodOptional<z.ZodString>;
5311
+ decorations: z.ZodOptional<z.ZodBoolean>;
5312
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5313
+ footer: z.ZodOptional<z.ZodString>;
5314
+ }, z.core.$strip>>;
5315
+ layout: z.ZodLiteral<"timeline">;
5316
+ }, z.core.$strip>, z.ZodObject<{
5317
+ left: z.ZodOptional<z.ZodObject<{
5318
+ title: z.ZodOptional<z.ZodString>;
5319
+ subtitle: z.ZodOptional<z.ZodString>;
5320
+ label: z.ZodOptional<z.ZodString>;
5321
+ accentColor: z.ZodOptional<z.ZodEnum<{
5322
+ success: "success";
5323
+ primary: "primary";
5324
+ accent: "accent";
5325
+ warning: "warning";
5326
+ danger: "danger";
5327
+ info: "info";
5328
+ highlight: "highlight";
5329
+ }>>;
5330
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5331
+ type: z.ZodLiteral<"text">;
5332
+ value: z.ZodString;
5333
+ align: z.ZodOptional<z.ZodEnum<{
5334
+ left: "left";
5335
+ center: "center";
5336
+ right: "right";
5337
+ }>>;
5338
+ bold: z.ZodOptional<z.ZodBoolean>;
5339
+ dim: z.ZodOptional<z.ZodBoolean>;
5340
+ fontSize: z.ZodOptional<z.ZodNumber>;
5341
+ color: z.ZodOptional<z.ZodEnum<{
5342
+ success: "success";
5343
+ primary: "primary";
5344
+ accent: "accent";
5345
+ warning: "warning";
5346
+ danger: "danger";
5347
+ info: "info";
5348
+ highlight: "highlight";
5349
+ }>>;
5350
+ }, z.core.$strip>, z.ZodObject<{
5351
+ type: z.ZodLiteral<"bullets">;
5352
+ items: z.ZodArray<z.ZodString>;
5353
+ ordered: z.ZodOptional<z.ZodBoolean>;
5354
+ icon: z.ZodOptional<z.ZodString>;
5355
+ }, z.core.$strip>, z.ZodObject<{
5356
+ type: z.ZodLiteral<"code">;
5357
+ code: z.ZodString;
5358
+ language: z.ZodOptional<z.ZodString>;
5359
+ }, z.core.$strip>, z.ZodObject<{
5360
+ type: z.ZodLiteral<"callout">;
5361
+ text: z.ZodString;
5362
+ label: z.ZodOptional<z.ZodString>;
5363
+ color: z.ZodOptional<z.ZodEnum<{
5364
+ success: "success";
5365
+ primary: "primary";
5366
+ accent: "accent";
5367
+ warning: "warning";
5368
+ danger: "danger";
5369
+ info: "info";
5370
+ highlight: "highlight";
5371
+ }>>;
5372
+ style: z.ZodOptional<z.ZodEnum<{
5373
+ warning: "warning";
5374
+ info: "info";
5375
+ quote: "quote";
5376
+ }>>;
5377
+ }, z.core.$strip>, z.ZodObject<{
5378
+ type: z.ZodLiteral<"metric">;
5379
+ value: z.ZodString;
5380
+ label: z.ZodString;
5381
+ color: z.ZodOptional<z.ZodEnum<{
5382
+ success: "success";
5383
+ primary: "primary";
5384
+ accent: "accent";
5385
+ warning: "warning";
5386
+ danger: "danger";
5387
+ info: "info";
5388
+ highlight: "highlight";
5389
+ }>>;
5390
+ change: z.ZodOptional<z.ZodString>;
5391
+ }, z.core.$strip>, z.ZodObject<{
5392
+ type: z.ZodLiteral<"divider">;
5393
+ color: z.ZodOptional<z.ZodEnum<{
5394
+ success: "success";
5395
+ primary: "primary";
5396
+ accent: "accent";
5397
+ warning: "warning";
5398
+ danger: "danger";
5399
+ info: "info";
5400
+ highlight: "highlight";
5401
+ }>>;
5402
+ }, z.core.$strip>, z.ZodObject<{
5403
+ type: z.ZodLiteral<"image">;
5404
+ src: z.ZodString;
5405
+ alt: z.ZodOptional<z.ZodString>;
5406
+ fit: z.ZodOptional<z.ZodEnum<{
5407
+ contain: "contain";
5408
+ cover: "cover";
5409
+ }>>;
5410
+ }, z.core.$strip>], "type">>>;
5411
+ dark: z.ZodOptional<z.ZodBoolean>;
5412
+ ratio: z.ZodOptional<z.ZodNumber>;
5413
+ }, z.core.$strip>>;
5414
+ right: z.ZodOptional<z.ZodObject<{
5415
+ title: z.ZodOptional<z.ZodString>;
5416
+ subtitle: z.ZodOptional<z.ZodString>;
5417
+ label: z.ZodOptional<z.ZodString>;
5418
+ accentColor: z.ZodOptional<z.ZodEnum<{
5419
+ success: "success";
5420
+ primary: "primary";
5421
+ accent: "accent";
5422
+ warning: "warning";
5423
+ danger: "danger";
5424
+ info: "info";
5425
+ highlight: "highlight";
5426
+ }>>;
5427
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5428
+ type: z.ZodLiteral<"text">;
5429
+ value: z.ZodString;
5430
+ align: z.ZodOptional<z.ZodEnum<{
5431
+ left: "left";
5432
+ center: "center";
5433
+ right: "right";
5434
+ }>>;
5435
+ bold: z.ZodOptional<z.ZodBoolean>;
5436
+ dim: z.ZodOptional<z.ZodBoolean>;
5437
+ fontSize: z.ZodOptional<z.ZodNumber>;
5438
+ color: z.ZodOptional<z.ZodEnum<{
5439
+ success: "success";
5440
+ primary: "primary";
5441
+ accent: "accent";
5442
+ warning: "warning";
5443
+ danger: "danger";
5444
+ info: "info";
5445
+ highlight: "highlight";
5446
+ }>>;
5447
+ }, z.core.$strip>, z.ZodObject<{
5448
+ type: z.ZodLiteral<"bullets">;
5449
+ items: z.ZodArray<z.ZodString>;
5450
+ ordered: z.ZodOptional<z.ZodBoolean>;
5451
+ icon: z.ZodOptional<z.ZodString>;
5452
+ }, z.core.$strip>, z.ZodObject<{
5453
+ type: z.ZodLiteral<"code">;
5454
+ code: z.ZodString;
5455
+ language: z.ZodOptional<z.ZodString>;
5456
+ }, z.core.$strip>, z.ZodObject<{
5457
+ type: z.ZodLiteral<"callout">;
5458
+ text: z.ZodString;
5459
+ label: z.ZodOptional<z.ZodString>;
5460
+ color: z.ZodOptional<z.ZodEnum<{
5461
+ success: "success";
5462
+ primary: "primary";
5463
+ accent: "accent";
5464
+ warning: "warning";
5465
+ danger: "danger";
5466
+ info: "info";
5467
+ highlight: "highlight";
5468
+ }>>;
5469
+ style: z.ZodOptional<z.ZodEnum<{
5470
+ warning: "warning";
5471
+ info: "info";
5472
+ quote: "quote";
5473
+ }>>;
5474
+ }, z.core.$strip>, z.ZodObject<{
5475
+ type: z.ZodLiteral<"metric">;
5476
+ value: z.ZodString;
5477
+ label: z.ZodString;
5478
+ color: z.ZodOptional<z.ZodEnum<{
5479
+ success: "success";
5480
+ primary: "primary";
5481
+ accent: "accent";
5482
+ warning: "warning";
5483
+ danger: "danger";
5484
+ info: "info";
5485
+ highlight: "highlight";
5486
+ }>>;
5487
+ change: z.ZodOptional<z.ZodString>;
5488
+ }, z.core.$strip>, z.ZodObject<{
5489
+ type: z.ZodLiteral<"divider">;
5490
+ color: z.ZodOptional<z.ZodEnum<{
5491
+ success: "success";
5492
+ primary: "primary";
5493
+ accent: "accent";
5494
+ warning: "warning";
5495
+ danger: "danger";
5496
+ info: "info";
5497
+ highlight: "highlight";
5498
+ }>>;
5499
+ }, z.core.$strip>, z.ZodObject<{
5500
+ type: z.ZodLiteral<"image">;
5501
+ src: z.ZodString;
5502
+ alt: z.ZodOptional<z.ZodString>;
5503
+ fit: z.ZodOptional<z.ZodEnum<{
5504
+ contain: "contain";
5505
+ cover: "cover";
5506
+ }>>;
5507
+ }, z.core.$strip>], "type">>>;
5508
+ dark: z.ZodOptional<z.ZodBoolean>;
5509
+ ratio: z.ZodOptional<z.ZodNumber>;
5510
+ }, z.core.$strip>>;
5511
+ accentColor: z.ZodOptional<z.ZodEnum<{
5512
+ success: "success";
5513
+ primary: "primary";
5514
+ accent: "accent";
5515
+ warning: "warning";
5516
+ danger: "danger";
5517
+ info: "info";
5518
+ highlight: "highlight";
5519
+ }>>;
5520
+ style: z.ZodOptional<z.ZodObject<{
5521
+ bgColor: z.ZodOptional<z.ZodString>;
5522
+ decorations: z.ZodOptional<z.ZodBoolean>;
5523
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5524
+ footer: z.ZodOptional<z.ZodString>;
5525
+ }, z.core.$strip>>;
5526
+ layout: z.ZodLiteral<"split">;
5527
+ }, z.core.$strip>, z.ZodObject<{
5528
+ title: z.ZodString;
5529
+ stepLabel: z.ZodOptional<z.ZodString>;
5530
+ subtitle: z.ZodOptional<z.ZodString>;
5531
+ rows: z.ZodOptional<z.ZodNumber>;
5532
+ cols: z.ZodOptional<z.ZodNumber>;
5533
+ xAxis: z.ZodOptional<z.ZodObject<{
5534
+ low: z.ZodOptional<z.ZodString>;
5535
+ high: z.ZodOptional<z.ZodString>;
5536
+ label: z.ZodOptional<z.ZodString>;
5537
+ }, z.core.$strip>>;
5538
+ yAxis: z.ZodOptional<z.ZodObject<{
5539
+ low: z.ZodOptional<z.ZodString>;
5540
+ high: z.ZodOptional<z.ZodString>;
5541
+ label: z.ZodOptional<z.ZodString>;
5542
+ }, z.core.$strip>>;
5543
+ cells: z.ZodArray<z.ZodObject<{
5544
+ label: z.ZodString;
5545
+ items: z.ZodOptional<z.ZodArray<z.ZodString>>;
5546
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
5547
+ type: z.ZodLiteral<"text">;
5548
+ value: z.ZodString;
5549
+ align: z.ZodOptional<z.ZodEnum<{
5550
+ left: "left";
5551
+ center: "center";
5552
+ right: "right";
5553
+ }>>;
5554
+ bold: z.ZodOptional<z.ZodBoolean>;
5555
+ dim: z.ZodOptional<z.ZodBoolean>;
5556
+ fontSize: z.ZodOptional<z.ZodNumber>;
5557
+ color: z.ZodOptional<z.ZodEnum<{
5558
+ success: "success";
5559
+ primary: "primary";
5560
+ accent: "accent";
5561
+ warning: "warning";
5562
+ danger: "danger";
5563
+ info: "info";
5564
+ highlight: "highlight";
5565
+ }>>;
5566
+ }, z.core.$strip>, z.ZodObject<{
5567
+ type: z.ZodLiteral<"bullets">;
5568
+ items: z.ZodArray<z.ZodString>;
5569
+ ordered: z.ZodOptional<z.ZodBoolean>;
5570
+ icon: z.ZodOptional<z.ZodString>;
5571
+ }, z.core.$strip>, z.ZodObject<{
5572
+ type: z.ZodLiteral<"code">;
5573
+ code: z.ZodString;
5574
+ language: z.ZodOptional<z.ZodString>;
5575
+ }, z.core.$strip>, z.ZodObject<{
5576
+ type: z.ZodLiteral<"callout">;
5577
+ text: z.ZodString;
5578
+ label: z.ZodOptional<z.ZodString>;
5579
+ color: z.ZodOptional<z.ZodEnum<{
5580
+ success: "success";
5581
+ primary: "primary";
5582
+ accent: "accent";
5583
+ warning: "warning";
5584
+ danger: "danger";
5585
+ info: "info";
5586
+ highlight: "highlight";
5587
+ }>>;
5588
+ style: z.ZodOptional<z.ZodEnum<{
5589
+ warning: "warning";
5590
+ info: "info";
5591
+ quote: "quote";
5592
+ }>>;
5593
+ }, z.core.$strip>, z.ZodObject<{
5594
+ type: z.ZodLiteral<"metric">;
5595
+ value: z.ZodString;
5596
+ label: z.ZodString;
5597
+ color: z.ZodOptional<z.ZodEnum<{
5598
+ success: "success";
5599
+ primary: "primary";
5600
+ accent: "accent";
5601
+ warning: "warning";
5602
+ danger: "danger";
5603
+ info: "info";
5604
+ highlight: "highlight";
5605
+ }>>;
5606
+ change: z.ZodOptional<z.ZodString>;
5607
+ }, z.core.$strip>, z.ZodObject<{
5608
+ type: z.ZodLiteral<"divider">;
5609
+ color: z.ZodOptional<z.ZodEnum<{
5610
+ success: "success";
5611
+ primary: "primary";
5612
+ accent: "accent";
5613
+ warning: "warning";
5614
+ danger: "danger";
5615
+ info: "info";
5616
+ highlight: "highlight";
5617
+ }>>;
5618
+ }, z.core.$strip>, z.ZodObject<{
5619
+ type: z.ZodLiteral<"image">;
5620
+ src: z.ZodString;
5621
+ alt: z.ZodOptional<z.ZodString>;
5622
+ fit: z.ZodOptional<z.ZodEnum<{
5623
+ contain: "contain";
5624
+ cover: "cover";
5625
+ }>>;
5626
+ }, z.core.$strip>], "type">>>;
5627
+ accentColor: z.ZodOptional<z.ZodEnum<{
5628
+ success: "success";
5629
+ primary: "primary";
5630
+ accent: "accent";
5631
+ warning: "warning";
5632
+ danger: "danger";
5633
+ info: "info";
5634
+ highlight: "highlight";
5635
+ }>>;
5636
+ }, z.core.$strip>>;
5637
+ accentColor: z.ZodOptional<z.ZodEnum<{
5638
+ success: "success";
5639
+ primary: "primary";
5640
+ accent: "accent";
5641
+ warning: "warning";
5642
+ danger: "danger";
5643
+ info: "info";
5644
+ highlight: "highlight";
5645
+ }>>;
5646
+ style: z.ZodOptional<z.ZodObject<{
5647
+ bgColor: z.ZodOptional<z.ZodString>;
5648
+ decorations: z.ZodOptional<z.ZodBoolean>;
5649
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5650
+ footer: z.ZodOptional<z.ZodString>;
5651
+ }, z.core.$strip>>;
5652
+ layout: z.ZodLiteral<"matrix">;
5653
+ }, z.core.$strip>, z.ZodObject<{
5654
+ title: z.ZodString;
5655
+ stepLabel: z.ZodOptional<z.ZodString>;
5656
+ subtitle: z.ZodOptional<z.ZodString>;
5657
+ headers: z.ZodArray<z.ZodString>;
5658
+ rows: z.ZodArray<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
5659
+ text: z.ZodString;
5660
+ color: z.ZodOptional<z.ZodEnum<{
5661
+ success: "success";
5662
+ primary: "primary";
5663
+ accent: "accent";
5664
+ warning: "warning";
5665
+ danger: "danger";
5666
+ info: "info";
5667
+ highlight: "highlight";
5668
+ }>>;
5669
+ bold: z.ZodOptional<z.ZodBoolean>;
5670
+ }, z.core.$strip>]>>>;
5671
+ rowHeaders: z.ZodOptional<z.ZodBoolean>;
5672
+ striped: z.ZodOptional<z.ZodBoolean>;
5673
+ callout: z.ZodOptional<z.ZodObject<{
5674
+ text: z.ZodString;
5675
+ label: z.ZodOptional<z.ZodString>;
5676
+ color: z.ZodOptional<z.ZodEnum<{
5677
+ success: "success";
5678
+ primary: "primary";
5679
+ accent: "accent";
5680
+ warning: "warning";
5681
+ danger: "danger";
5682
+ info: "info";
5683
+ highlight: "highlight";
5684
+ }>>;
5685
+ align: z.ZodOptional<z.ZodEnum<{
5686
+ left: "left";
5687
+ center: "center";
5688
+ }>>;
5689
+ leftBar: z.ZodOptional<z.ZodBoolean>;
5690
+ }, z.core.$strip>>;
5691
+ accentColor: z.ZodOptional<z.ZodEnum<{
5692
+ success: "success";
5693
+ primary: "primary";
5694
+ accent: "accent";
5695
+ warning: "warning";
5696
+ danger: "danger";
5697
+ info: "info";
5698
+ highlight: "highlight";
5699
+ }>>;
5700
+ style: z.ZodOptional<z.ZodObject<{
5701
+ bgColor: z.ZodOptional<z.ZodString>;
5702
+ decorations: z.ZodOptional<z.ZodBoolean>;
5703
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5704
+ footer: z.ZodOptional<z.ZodString>;
5705
+ }, z.core.$strip>>;
5706
+ layout: z.ZodLiteral<"table">;
5707
+ }, z.core.$strip>, z.ZodObject<{
5708
+ title: z.ZodString;
5709
+ stepLabel: z.ZodOptional<z.ZodString>;
5710
+ subtitle: z.ZodOptional<z.ZodString>;
5711
+ stages: z.ZodArray<z.ZodObject<{
5712
+ label: z.ZodString;
5713
+ value: z.ZodOptional<z.ZodString>;
5714
+ description: z.ZodOptional<z.ZodString>;
5715
+ color: z.ZodOptional<z.ZodEnum<{
5716
+ success: "success";
5717
+ primary: "primary";
5718
+ accent: "accent";
5719
+ warning: "warning";
5720
+ danger: "danger";
5721
+ info: "info";
5722
+ highlight: "highlight";
5723
+ }>>;
5724
+ }, z.core.$strip>>;
5725
+ callout: z.ZodOptional<z.ZodObject<{
5726
+ text: z.ZodString;
5727
+ label: z.ZodOptional<z.ZodString>;
5728
+ color: z.ZodOptional<z.ZodEnum<{
5729
+ success: "success";
5730
+ primary: "primary";
5731
+ accent: "accent";
5732
+ warning: "warning";
5733
+ danger: "danger";
5734
+ info: "info";
5735
+ highlight: "highlight";
5736
+ }>>;
5737
+ align: z.ZodOptional<z.ZodEnum<{
5738
+ left: "left";
5739
+ center: "center";
5740
+ }>>;
5741
+ leftBar: z.ZodOptional<z.ZodBoolean>;
5742
+ }, z.core.$strip>>;
5743
+ accentColor: z.ZodOptional<z.ZodEnum<{
5744
+ success: "success";
5745
+ primary: "primary";
5746
+ accent: "accent";
5747
+ warning: "warning";
5748
+ danger: "danger";
5749
+ info: "info";
5750
+ highlight: "highlight";
5751
+ }>>;
5752
+ style: z.ZodOptional<z.ZodObject<{
5753
+ bgColor: z.ZodOptional<z.ZodString>;
5754
+ decorations: z.ZodOptional<z.ZodBoolean>;
5755
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
5756
+ footer: z.ZodOptional<z.ZodString>;
5757
+ }, z.core.$strip>>;
5758
+ layout: z.ZodLiteral<"funnel">;
5759
+ }, z.core.$strip>], "layout">;
2459
5760
  }, z.core.$strict>]>>;
2460
5761
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
2461
5762
  type: z.ZodLiteral<"audio">;
@@ -2958,8 +6259,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
2958
6259
  }, z.core.$strict>], "kind">;
2959
6260
  size: z.ZodOptional<z.ZodEnum<{
2960
6261
  auto: "auto";
2961
- cover: "cover";
2962
6262
  contain: "contain";
6263
+ cover: "cover";
2963
6264
  fill: "fill";
2964
6265
  }>>;
2965
6266
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -3214,6 +6515,30 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3214
6515
  textSlideParams: z.ZodOptional<z.ZodObject<{
3215
6516
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
3216
6517
  }, z.core.$strict>>;
6518
+ slideParams: z.ZodOptional<z.ZodObject<{
6519
+ theme: z.ZodObject<{
6520
+ colors: z.ZodObject<{
6521
+ bg: z.ZodString;
6522
+ bgCard: z.ZodString;
6523
+ bgCardAlt: z.ZodString;
6524
+ text: z.ZodString;
6525
+ textMuted: z.ZodString;
6526
+ textDim: z.ZodString;
6527
+ primary: z.ZodString;
6528
+ accent: z.ZodString;
6529
+ success: z.ZodString;
6530
+ warning: z.ZodString;
6531
+ danger: z.ZodString;
6532
+ info: z.ZodString;
6533
+ highlight: z.ZodString;
6534
+ }, z.core.$strip>;
6535
+ fonts: z.ZodObject<{
6536
+ title: z.ZodString;
6537
+ body: z.ZodString;
6538
+ mono: z.ZodString;
6539
+ }, z.core.$strip>;
6540
+ }, z.core.$strip>;
6541
+ }, z.core.$strict>>;
3217
6542
  captionParams: z.ZodOptional<z.ZodObject<{
3218
6543
  lang: z.ZodOptional<z.ZodString>;
3219
6544
  styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -3294,8 +6619,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3294
6619
  }, z.core.$strict>], "kind">;
3295
6620
  size: z.ZodOptional<z.ZodEnum<{
3296
6621
  auto: "auto";
3297
- cover: "cover";
3298
6622
  contain: "contain";
6623
+ cover: "cover";
3299
6624
  fill: "fill";
3300
6625
  }>>;
3301
6626
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -3372,8 +6697,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3372
6697
  }, z.core.$strict>], "kind">;
3373
6698
  size: z.ZodOptional<z.ZodEnum<{
3374
6699
  auto: "auto";
3375
- cover: "cover";
3376
6700
  contain: "contain";
6701
+ cover: "cover";
3377
6702
  fill: "fill";
3378
6703
  }>>;
3379
6704
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -3413,8 +6738,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3413
6738
  }, z.core.$strict>], "kind">;
3414
6739
  size: z.ZodOptional<z.ZodEnum<{
3415
6740
  auto: "auto";
3416
- cover: "cover";
3417
6741
  contain: "contain";
6742
+ cover: "cover";
3418
6743
  fill: "fill";
3419
6744
  }>>;
3420
6745
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -3432,6 +6757,1082 @@ export declare const mulmoStudioSchema: z.ZodObject<{
3432
6757
  type: z.ZodLiteral<"vision">;
3433
6758
  style: z.ZodString;
3434
6759
  data: z.ZodRecord<z.ZodString, z.ZodAny>;
6760
+ }, z.core.$strict>, z.ZodObject<{
6761
+ type: z.ZodLiteral<"slide">;
6762
+ theme: z.ZodOptional<z.ZodObject<{
6763
+ colors: z.ZodObject<{
6764
+ bg: z.ZodString;
6765
+ bgCard: z.ZodString;
6766
+ bgCardAlt: z.ZodString;
6767
+ text: z.ZodString;
6768
+ textMuted: z.ZodString;
6769
+ textDim: z.ZodString;
6770
+ primary: z.ZodString;
6771
+ accent: z.ZodString;
6772
+ success: z.ZodString;
6773
+ warning: z.ZodString;
6774
+ danger: z.ZodString;
6775
+ info: z.ZodString;
6776
+ highlight: z.ZodString;
6777
+ }, z.core.$strip>;
6778
+ fonts: z.ZodObject<{
6779
+ title: z.ZodString;
6780
+ body: z.ZodString;
6781
+ mono: z.ZodString;
6782
+ }, z.core.$strip>;
6783
+ }, z.core.$strip>>;
6784
+ slide: z.ZodDiscriminatedUnion<[z.ZodObject<{
6785
+ title: z.ZodString;
6786
+ subtitle: z.ZodOptional<z.ZodString>;
6787
+ author: z.ZodOptional<z.ZodString>;
6788
+ note: z.ZodOptional<z.ZodString>;
6789
+ accentColor: z.ZodOptional<z.ZodEnum<{
6790
+ success: "success";
6791
+ primary: "primary";
6792
+ accent: "accent";
6793
+ warning: "warning";
6794
+ danger: "danger";
6795
+ info: "info";
6796
+ highlight: "highlight";
6797
+ }>>;
6798
+ style: z.ZodOptional<z.ZodObject<{
6799
+ bgColor: z.ZodOptional<z.ZodString>;
6800
+ decorations: z.ZodOptional<z.ZodBoolean>;
6801
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
6802
+ footer: z.ZodOptional<z.ZodString>;
6803
+ }, z.core.$strip>>;
6804
+ layout: z.ZodLiteral<"title">;
6805
+ }, z.core.$strip>, z.ZodObject<{
6806
+ title: z.ZodString;
6807
+ stepLabel: z.ZodOptional<z.ZodString>;
6808
+ subtitle: z.ZodOptional<z.ZodString>;
6809
+ columns: z.ZodArray<z.ZodObject<{
6810
+ title: z.ZodString;
6811
+ accentColor: z.ZodOptional<z.ZodEnum<{
6812
+ success: "success";
6813
+ primary: "primary";
6814
+ accent: "accent";
6815
+ warning: "warning";
6816
+ danger: "danger";
6817
+ info: "info";
6818
+ highlight: "highlight";
6819
+ }>>;
6820
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
6821
+ type: z.ZodLiteral<"text">;
6822
+ value: z.ZodString;
6823
+ align: z.ZodOptional<z.ZodEnum<{
6824
+ left: "left";
6825
+ center: "center";
6826
+ right: "right";
6827
+ }>>;
6828
+ bold: z.ZodOptional<z.ZodBoolean>;
6829
+ dim: z.ZodOptional<z.ZodBoolean>;
6830
+ fontSize: z.ZodOptional<z.ZodNumber>;
6831
+ color: z.ZodOptional<z.ZodEnum<{
6832
+ success: "success";
6833
+ primary: "primary";
6834
+ accent: "accent";
6835
+ warning: "warning";
6836
+ danger: "danger";
6837
+ info: "info";
6838
+ highlight: "highlight";
6839
+ }>>;
6840
+ }, z.core.$strip>, z.ZodObject<{
6841
+ type: z.ZodLiteral<"bullets">;
6842
+ items: z.ZodArray<z.ZodString>;
6843
+ ordered: z.ZodOptional<z.ZodBoolean>;
6844
+ icon: z.ZodOptional<z.ZodString>;
6845
+ }, z.core.$strip>, z.ZodObject<{
6846
+ type: z.ZodLiteral<"code">;
6847
+ code: z.ZodString;
6848
+ language: z.ZodOptional<z.ZodString>;
6849
+ }, z.core.$strip>, z.ZodObject<{
6850
+ type: z.ZodLiteral<"callout">;
6851
+ text: z.ZodString;
6852
+ label: z.ZodOptional<z.ZodString>;
6853
+ color: z.ZodOptional<z.ZodEnum<{
6854
+ success: "success";
6855
+ primary: "primary";
6856
+ accent: "accent";
6857
+ warning: "warning";
6858
+ danger: "danger";
6859
+ info: "info";
6860
+ highlight: "highlight";
6861
+ }>>;
6862
+ style: z.ZodOptional<z.ZodEnum<{
6863
+ warning: "warning";
6864
+ info: "info";
6865
+ quote: "quote";
6866
+ }>>;
6867
+ }, z.core.$strip>, z.ZodObject<{
6868
+ type: z.ZodLiteral<"metric">;
6869
+ value: z.ZodString;
6870
+ label: z.ZodString;
6871
+ color: z.ZodOptional<z.ZodEnum<{
6872
+ success: "success";
6873
+ primary: "primary";
6874
+ accent: "accent";
6875
+ warning: "warning";
6876
+ danger: "danger";
6877
+ info: "info";
6878
+ highlight: "highlight";
6879
+ }>>;
6880
+ change: z.ZodOptional<z.ZodString>;
6881
+ }, z.core.$strip>, z.ZodObject<{
6882
+ type: z.ZodLiteral<"divider">;
6883
+ color: z.ZodOptional<z.ZodEnum<{
6884
+ success: "success";
6885
+ primary: "primary";
6886
+ accent: "accent";
6887
+ warning: "warning";
6888
+ danger: "danger";
6889
+ info: "info";
6890
+ highlight: "highlight";
6891
+ }>>;
6892
+ }, z.core.$strip>, z.ZodObject<{
6893
+ type: z.ZodLiteral<"image">;
6894
+ src: z.ZodString;
6895
+ alt: z.ZodOptional<z.ZodString>;
6896
+ fit: z.ZodOptional<z.ZodEnum<{
6897
+ contain: "contain";
6898
+ cover: "cover";
6899
+ }>>;
6900
+ }, z.core.$strip>], "type">>>;
6901
+ footer: z.ZodOptional<z.ZodString>;
6902
+ label: z.ZodOptional<z.ZodString>;
6903
+ num: z.ZodOptional<z.ZodNumber>;
6904
+ icon: z.ZodOptional<z.ZodString>;
6905
+ }, z.core.$strip>>;
6906
+ showArrows: z.ZodOptional<z.ZodBoolean>;
6907
+ callout: z.ZodOptional<z.ZodObject<{
6908
+ text: z.ZodString;
6909
+ label: z.ZodOptional<z.ZodString>;
6910
+ color: z.ZodOptional<z.ZodEnum<{
6911
+ success: "success";
6912
+ primary: "primary";
6913
+ accent: "accent";
6914
+ warning: "warning";
6915
+ danger: "danger";
6916
+ info: "info";
6917
+ highlight: "highlight";
6918
+ }>>;
6919
+ align: z.ZodOptional<z.ZodEnum<{
6920
+ left: "left";
6921
+ center: "center";
6922
+ }>>;
6923
+ leftBar: z.ZodOptional<z.ZodBoolean>;
6924
+ }, z.core.$strip>>;
6925
+ bottomText: z.ZodOptional<z.ZodString>;
6926
+ accentColor: z.ZodOptional<z.ZodEnum<{
6927
+ success: "success";
6928
+ primary: "primary";
6929
+ accent: "accent";
6930
+ warning: "warning";
6931
+ danger: "danger";
6932
+ info: "info";
6933
+ highlight: "highlight";
6934
+ }>>;
6935
+ style: z.ZodOptional<z.ZodObject<{
6936
+ bgColor: z.ZodOptional<z.ZodString>;
6937
+ decorations: z.ZodOptional<z.ZodBoolean>;
6938
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
6939
+ footer: z.ZodOptional<z.ZodString>;
6940
+ }, z.core.$strip>>;
6941
+ layout: z.ZodLiteral<"columns">;
6942
+ }, z.core.$strip>, z.ZodObject<{
6943
+ title: z.ZodString;
6944
+ stepLabel: z.ZodOptional<z.ZodString>;
6945
+ subtitle: z.ZodOptional<z.ZodString>;
6946
+ left: z.ZodObject<{
6947
+ title: z.ZodString;
6948
+ accentColor: z.ZodOptional<z.ZodEnum<{
6949
+ success: "success";
6950
+ primary: "primary";
6951
+ accent: "accent";
6952
+ warning: "warning";
6953
+ danger: "danger";
6954
+ info: "info";
6955
+ highlight: "highlight";
6956
+ }>>;
6957
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
6958
+ type: z.ZodLiteral<"text">;
6959
+ value: z.ZodString;
6960
+ align: z.ZodOptional<z.ZodEnum<{
6961
+ left: "left";
6962
+ center: "center";
6963
+ right: "right";
6964
+ }>>;
6965
+ bold: z.ZodOptional<z.ZodBoolean>;
6966
+ dim: z.ZodOptional<z.ZodBoolean>;
6967
+ fontSize: z.ZodOptional<z.ZodNumber>;
6968
+ color: z.ZodOptional<z.ZodEnum<{
6969
+ success: "success";
6970
+ primary: "primary";
6971
+ accent: "accent";
6972
+ warning: "warning";
6973
+ danger: "danger";
6974
+ info: "info";
6975
+ highlight: "highlight";
6976
+ }>>;
6977
+ }, z.core.$strip>, z.ZodObject<{
6978
+ type: z.ZodLiteral<"bullets">;
6979
+ items: z.ZodArray<z.ZodString>;
6980
+ ordered: z.ZodOptional<z.ZodBoolean>;
6981
+ icon: z.ZodOptional<z.ZodString>;
6982
+ }, z.core.$strip>, z.ZodObject<{
6983
+ type: z.ZodLiteral<"code">;
6984
+ code: z.ZodString;
6985
+ language: z.ZodOptional<z.ZodString>;
6986
+ }, z.core.$strip>, z.ZodObject<{
6987
+ type: z.ZodLiteral<"callout">;
6988
+ text: z.ZodString;
6989
+ label: z.ZodOptional<z.ZodString>;
6990
+ color: z.ZodOptional<z.ZodEnum<{
6991
+ success: "success";
6992
+ primary: "primary";
6993
+ accent: "accent";
6994
+ warning: "warning";
6995
+ danger: "danger";
6996
+ info: "info";
6997
+ highlight: "highlight";
6998
+ }>>;
6999
+ style: z.ZodOptional<z.ZodEnum<{
7000
+ warning: "warning";
7001
+ info: "info";
7002
+ quote: "quote";
7003
+ }>>;
7004
+ }, z.core.$strip>, z.ZodObject<{
7005
+ type: z.ZodLiteral<"metric">;
7006
+ value: z.ZodString;
7007
+ label: z.ZodString;
7008
+ color: z.ZodOptional<z.ZodEnum<{
7009
+ success: "success";
7010
+ primary: "primary";
7011
+ accent: "accent";
7012
+ warning: "warning";
7013
+ danger: "danger";
7014
+ info: "info";
7015
+ highlight: "highlight";
7016
+ }>>;
7017
+ change: z.ZodOptional<z.ZodString>;
7018
+ }, z.core.$strip>, z.ZodObject<{
7019
+ type: z.ZodLiteral<"divider">;
7020
+ color: z.ZodOptional<z.ZodEnum<{
7021
+ success: "success";
7022
+ primary: "primary";
7023
+ accent: "accent";
7024
+ warning: "warning";
7025
+ danger: "danger";
7026
+ info: "info";
7027
+ highlight: "highlight";
7028
+ }>>;
7029
+ }, z.core.$strip>, z.ZodObject<{
7030
+ type: z.ZodLiteral<"image">;
7031
+ src: z.ZodString;
7032
+ alt: z.ZodOptional<z.ZodString>;
7033
+ fit: z.ZodOptional<z.ZodEnum<{
7034
+ contain: "contain";
7035
+ cover: "cover";
7036
+ }>>;
7037
+ }, z.core.$strip>], "type">>>;
7038
+ footer: z.ZodOptional<z.ZodString>;
7039
+ }, z.core.$strip>;
7040
+ right: z.ZodObject<{
7041
+ title: z.ZodString;
7042
+ accentColor: z.ZodOptional<z.ZodEnum<{
7043
+ success: "success";
7044
+ primary: "primary";
7045
+ accent: "accent";
7046
+ warning: "warning";
7047
+ danger: "danger";
7048
+ info: "info";
7049
+ highlight: "highlight";
7050
+ }>>;
7051
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7052
+ type: z.ZodLiteral<"text">;
7053
+ value: z.ZodString;
7054
+ align: z.ZodOptional<z.ZodEnum<{
7055
+ left: "left";
7056
+ center: "center";
7057
+ right: "right";
7058
+ }>>;
7059
+ bold: z.ZodOptional<z.ZodBoolean>;
7060
+ dim: z.ZodOptional<z.ZodBoolean>;
7061
+ fontSize: z.ZodOptional<z.ZodNumber>;
7062
+ color: z.ZodOptional<z.ZodEnum<{
7063
+ success: "success";
7064
+ primary: "primary";
7065
+ accent: "accent";
7066
+ warning: "warning";
7067
+ danger: "danger";
7068
+ info: "info";
7069
+ highlight: "highlight";
7070
+ }>>;
7071
+ }, z.core.$strip>, z.ZodObject<{
7072
+ type: z.ZodLiteral<"bullets">;
7073
+ items: z.ZodArray<z.ZodString>;
7074
+ ordered: z.ZodOptional<z.ZodBoolean>;
7075
+ icon: z.ZodOptional<z.ZodString>;
7076
+ }, z.core.$strip>, z.ZodObject<{
7077
+ type: z.ZodLiteral<"code">;
7078
+ code: z.ZodString;
7079
+ language: z.ZodOptional<z.ZodString>;
7080
+ }, z.core.$strip>, z.ZodObject<{
7081
+ type: z.ZodLiteral<"callout">;
7082
+ text: z.ZodString;
7083
+ label: z.ZodOptional<z.ZodString>;
7084
+ color: z.ZodOptional<z.ZodEnum<{
7085
+ success: "success";
7086
+ primary: "primary";
7087
+ accent: "accent";
7088
+ warning: "warning";
7089
+ danger: "danger";
7090
+ info: "info";
7091
+ highlight: "highlight";
7092
+ }>>;
7093
+ style: z.ZodOptional<z.ZodEnum<{
7094
+ warning: "warning";
7095
+ info: "info";
7096
+ quote: "quote";
7097
+ }>>;
7098
+ }, z.core.$strip>, z.ZodObject<{
7099
+ type: z.ZodLiteral<"metric">;
7100
+ value: z.ZodString;
7101
+ label: z.ZodString;
7102
+ color: z.ZodOptional<z.ZodEnum<{
7103
+ success: "success";
7104
+ primary: "primary";
7105
+ accent: "accent";
7106
+ warning: "warning";
7107
+ danger: "danger";
7108
+ info: "info";
7109
+ highlight: "highlight";
7110
+ }>>;
7111
+ change: z.ZodOptional<z.ZodString>;
7112
+ }, z.core.$strip>, z.ZodObject<{
7113
+ type: z.ZodLiteral<"divider">;
7114
+ color: z.ZodOptional<z.ZodEnum<{
7115
+ success: "success";
7116
+ primary: "primary";
7117
+ accent: "accent";
7118
+ warning: "warning";
7119
+ danger: "danger";
7120
+ info: "info";
7121
+ highlight: "highlight";
7122
+ }>>;
7123
+ }, z.core.$strip>, z.ZodObject<{
7124
+ type: z.ZodLiteral<"image">;
7125
+ src: z.ZodString;
7126
+ alt: z.ZodOptional<z.ZodString>;
7127
+ fit: z.ZodOptional<z.ZodEnum<{
7128
+ contain: "contain";
7129
+ cover: "cover";
7130
+ }>>;
7131
+ }, z.core.$strip>], "type">>>;
7132
+ footer: z.ZodOptional<z.ZodString>;
7133
+ }, z.core.$strip>;
7134
+ callout: z.ZodOptional<z.ZodObject<{
7135
+ text: z.ZodString;
7136
+ label: z.ZodOptional<z.ZodString>;
7137
+ color: z.ZodOptional<z.ZodEnum<{
7138
+ success: "success";
7139
+ primary: "primary";
7140
+ accent: "accent";
7141
+ warning: "warning";
7142
+ danger: "danger";
7143
+ info: "info";
7144
+ highlight: "highlight";
7145
+ }>>;
7146
+ align: z.ZodOptional<z.ZodEnum<{
7147
+ left: "left";
7148
+ center: "center";
7149
+ }>>;
7150
+ leftBar: z.ZodOptional<z.ZodBoolean>;
7151
+ }, z.core.$strip>>;
7152
+ accentColor: z.ZodOptional<z.ZodEnum<{
7153
+ success: "success";
7154
+ primary: "primary";
7155
+ accent: "accent";
7156
+ warning: "warning";
7157
+ danger: "danger";
7158
+ info: "info";
7159
+ highlight: "highlight";
7160
+ }>>;
7161
+ style: z.ZodOptional<z.ZodObject<{
7162
+ bgColor: z.ZodOptional<z.ZodString>;
7163
+ decorations: z.ZodOptional<z.ZodBoolean>;
7164
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7165
+ footer: z.ZodOptional<z.ZodString>;
7166
+ }, z.core.$strip>>;
7167
+ layout: z.ZodLiteral<"comparison">;
7168
+ }, z.core.$strip>, z.ZodObject<{
7169
+ title: z.ZodString;
7170
+ subtitle: z.ZodOptional<z.ZodString>;
7171
+ gridColumns: z.ZodOptional<z.ZodNumber>;
7172
+ items: z.ZodArray<z.ZodObject<{
7173
+ title: z.ZodString;
7174
+ description: z.ZodOptional<z.ZodString>;
7175
+ accentColor: z.ZodOptional<z.ZodEnum<{
7176
+ success: "success";
7177
+ primary: "primary";
7178
+ accent: "accent";
7179
+ warning: "warning";
7180
+ danger: "danger";
7181
+ info: "info";
7182
+ highlight: "highlight";
7183
+ }>>;
7184
+ num: z.ZodOptional<z.ZodNumber>;
7185
+ icon: z.ZodOptional<z.ZodString>;
7186
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7187
+ type: z.ZodLiteral<"text">;
7188
+ value: z.ZodString;
7189
+ align: z.ZodOptional<z.ZodEnum<{
7190
+ left: "left";
7191
+ center: "center";
7192
+ right: "right";
7193
+ }>>;
7194
+ bold: z.ZodOptional<z.ZodBoolean>;
7195
+ dim: z.ZodOptional<z.ZodBoolean>;
7196
+ fontSize: z.ZodOptional<z.ZodNumber>;
7197
+ color: z.ZodOptional<z.ZodEnum<{
7198
+ success: "success";
7199
+ primary: "primary";
7200
+ accent: "accent";
7201
+ warning: "warning";
7202
+ danger: "danger";
7203
+ info: "info";
7204
+ highlight: "highlight";
7205
+ }>>;
7206
+ }, z.core.$strip>, z.ZodObject<{
7207
+ type: z.ZodLiteral<"bullets">;
7208
+ items: z.ZodArray<z.ZodString>;
7209
+ ordered: z.ZodOptional<z.ZodBoolean>;
7210
+ icon: z.ZodOptional<z.ZodString>;
7211
+ }, z.core.$strip>, z.ZodObject<{
7212
+ type: z.ZodLiteral<"code">;
7213
+ code: z.ZodString;
7214
+ language: z.ZodOptional<z.ZodString>;
7215
+ }, z.core.$strip>, z.ZodObject<{
7216
+ type: z.ZodLiteral<"callout">;
7217
+ text: z.ZodString;
7218
+ label: z.ZodOptional<z.ZodString>;
7219
+ color: z.ZodOptional<z.ZodEnum<{
7220
+ success: "success";
7221
+ primary: "primary";
7222
+ accent: "accent";
7223
+ warning: "warning";
7224
+ danger: "danger";
7225
+ info: "info";
7226
+ highlight: "highlight";
7227
+ }>>;
7228
+ style: z.ZodOptional<z.ZodEnum<{
7229
+ warning: "warning";
7230
+ info: "info";
7231
+ quote: "quote";
7232
+ }>>;
7233
+ }, z.core.$strip>, z.ZodObject<{
7234
+ type: z.ZodLiteral<"metric">;
7235
+ value: z.ZodString;
7236
+ label: z.ZodString;
7237
+ color: z.ZodOptional<z.ZodEnum<{
7238
+ success: "success";
7239
+ primary: "primary";
7240
+ accent: "accent";
7241
+ warning: "warning";
7242
+ danger: "danger";
7243
+ info: "info";
7244
+ highlight: "highlight";
7245
+ }>>;
7246
+ change: z.ZodOptional<z.ZodString>;
7247
+ }, z.core.$strip>, z.ZodObject<{
7248
+ type: z.ZodLiteral<"divider">;
7249
+ color: z.ZodOptional<z.ZodEnum<{
7250
+ success: "success";
7251
+ primary: "primary";
7252
+ accent: "accent";
7253
+ warning: "warning";
7254
+ danger: "danger";
7255
+ info: "info";
7256
+ highlight: "highlight";
7257
+ }>>;
7258
+ }, z.core.$strip>, z.ZodObject<{
7259
+ type: z.ZodLiteral<"image">;
7260
+ src: z.ZodString;
7261
+ alt: z.ZodOptional<z.ZodString>;
7262
+ fit: z.ZodOptional<z.ZodEnum<{
7263
+ contain: "contain";
7264
+ cover: "cover";
7265
+ }>>;
7266
+ }, z.core.$strip>], "type">>>;
7267
+ }, z.core.$strip>>;
7268
+ footer: z.ZodOptional<z.ZodString>;
7269
+ accentColor: z.ZodOptional<z.ZodEnum<{
7270
+ success: "success";
7271
+ primary: "primary";
7272
+ accent: "accent";
7273
+ warning: "warning";
7274
+ danger: "danger";
7275
+ info: "info";
7276
+ highlight: "highlight";
7277
+ }>>;
7278
+ style: z.ZodOptional<z.ZodObject<{
7279
+ bgColor: z.ZodOptional<z.ZodString>;
7280
+ decorations: z.ZodOptional<z.ZodBoolean>;
7281
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7282
+ footer: z.ZodOptional<z.ZodString>;
7283
+ }, z.core.$strip>>;
7284
+ layout: z.ZodLiteral<"grid">;
7285
+ }, z.core.$strip>, z.ZodObject<{
7286
+ quote: z.ZodString;
7287
+ author: z.ZodOptional<z.ZodString>;
7288
+ role: z.ZodOptional<z.ZodString>;
7289
+ accentColor: z.ZodOptional<z.ZodEnum<{
7290
+ success: "success";
7291
+ primary: "primary";
7292
+ accent: "accent";
7293
+ warning: "warning";
7294
+ danger: "danger";
7295
+ info: "info";
7296
+ highlight: "highlight";
7297
+ }>>;
7298
+ style: z.ZodOptional<z.ZodObject<{
7299
+ bgColor: z.ZodOptional<z.ZodString>;
7300
+ decorations: z.ZodOptional<z.ZodBoolean>;
7301
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7302
+ footer: z.ZodOptional<z.ZodString>;
7303
+ }, z.core.$strip>>;
7304
+ layout: z.ZodLiteral<"bigQuote">;
7305
+ }, z.core.$strip>, z.ZodObject<{
7306
+ title: z.ZodString;
7307
+ stepLabel: z.ZodOptional<z.ZodString>;
7308
+ subtitle: z.ZodOptional<z.ZodString>;
7309
+ stats: z.ZodArray<z.ZodObject<{
7310
+ value: z.ZodString;
7311
+ label: z.ZodString;
7312
+ color: z.ZodOptional<z.ZodEnum<{
7313
+ success: "success";
7314
+ primary: "primary";
7315
+ accent: "accent";
7316
+ warning: "warning";
7317
+ danger: "danger";
7318
+ info: "info";
7319
+ highlight: "highlight";
7320
+ }>>;
7321
+ change: z.ZodOptional<z.ZodString>;
7322
+ }, z.core.$strip>>;
7323
+ callout: z.ZodOptional<z.ZodObject<{
7324
+ text: z.ZodString;
7325
+ label: z.ZodOptional<z.ZodString>;
7326
+ color: z.ZodOptional<z.ZodEnum<{
7327
+ success: "success";
7328
+ primary: "primary";
7329
+ accent: "accent";
7330
+ warning: "warning";
7331
+ danger: "danger";
7332
+ info: "info";
7333
+ highlight: "highlight";
7334
+ }>>;
7335
+ align: z.ZodOptional<z.ZodEnum<{
7336
+ left: "left";
7337
+ center: "center";
7338
+ }>>;
7339
+ leftBar: z.ZodOptional<z.ZodBoolean>;
7340
+ }, z.core.$strip>>;
7341
+ accentColor: z.ZodOptional<z.ZodEnum<{
7342
+ success: "success";
7343
+ primary: "primary";
7344
+ accent: "accent";
7345
+ warning: "warning";
7346
+ danger: "danger";
7347
+ info: "info";
7348
+ highlight: "highlight";
7349
+ }>>;
7350
+ style: z.ZodOptional<z.ZodObject<{
7351
+ bgColor: z.ZodOptional<z.ZodString>;
7352
+ decorations: z.ZodOptional<z.ZodBoolean>;
7353
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7354
+ footer: z.ZodOptional<z.ZodString>;
7355
+ }, z.core.$strip>>;
7356
+ layout: z.ZodLiteral<"stats">;
7357
+ }, z.core.$strip>, z.ZodObject<{
7358
+ title: z.ZodString;
7359
+ stepLabel: z.ZodOptional<z.ZodString>;
7360
+ subtitle: z.ZodOptional<z.ZodString>;
7361
+ items: z.ZodArray<z.ZodObject<{
7362
+ date: z.ZodString;
7363
+ title: z.ZodString;
7364
+ description: z.ZodOptional<z.ZodString>;
7365
+ color: z.ZodOptional<z.ZodEnum<{
7366
+ success: "success";
7367
+ primary: "primary";
7368
+ accent: "accent";
7369
+ warning: "warning";
7370
+ danger: "danger";
7371
+ info: "info";
7372
+ highlight: "highlight";
7373
+ }>>;
7374
+ done: z.ZodOptional<z.ZodBoolean>;
7375
+ }, z.core.$strip>>;
7376
+ accentColor: z.ZodOptional<z.ZodEnum<{
7377
+ success: "success";
7378
+ primary: "primary";
7379
+ accent: "accent";
7380
+ warning: "warning";
7381
+ danger: "danger";
7382
+ info: "info";
7383
+ highlight: "highlight";
7384
+ }>>;
7385
+ style: z.ZodOptional<z.ZodObject<{
7386
+ bgColor: z.ZodOptional<z.ZodString>;
7387
+ decorations: z.ZodOptional<z.ZodBoolean>;
7388
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7389
+ footer: z.ZodOptional<z.ZodString>;
7390
+ }, z.core.$strip>>;
7391
+ layout: z.ZodLiteral<"timeline">;
7392
+ }, z.core.$strip>, z.ZodObject<{
7393
+ left: z.ZodOptional<z.ZodObject<{
7394
+ title: z.ZodOptional<z.ZodString>;
7395
+ subtitle: z.ZodOptional<z.ZodString>;
7396
+ label: z.ZodOptional<z.ZodString>;
7397
+ accentColor: z.ZodOptional<z.ZodEnum<{
7398
+ success: "success";
7399
+ primary: "primary";
7400
+ accent: "accent";
7401
+ warning: "warning";
7402
+ danger: "danger";
7403
+ info: "info";
7404
+ highlight: "highlight";
7405
+ }>>;
7406
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7407
+ type: z.ZodLiteral<"text">;
7408
+ value: z.ZodString;
7409
+ align: z.ZodOptional<z.ZodEnum<{
7410
+ left: "left";
7411
+ center: "center";
7412
+ right: "right";
7413
+ }>>;
7414
+ bold: z.ZodOptional<z.ZodBoolean>;
7415
+ dim: z.ZodOptional<z.ZodBoolean>;
7416
+ fontSize: z.ZodOptional<z.ZodNumber>;
7417
+ color: z.ZodOptional<z.ZodEnum<{
7418
+ success: "success";
7419
+ primary: "primary";
7420
+ accent: "accent";
7421
+ warning: "warning";
7422
+ danger: "danger";
7423
+ info: "info";
7424
+ highlight: "highlight";
7425
+ }>>;
7426
+ }, z.core.$strip>, z.ZodObject<{
7427
+ type: z.ZodLiteral<"bullets">;
7428
+ items: z.ZodArray<z.ZodString>;
7429
+ ordered: z.ZodOptional<z.ZodBoolean>;
7430
+ icon: z.ZodOptional<z.ZodString>;
7431
+ }, z.core.$strip>, z.ZodObject<{
7432
+ type: z.ZodLiteral<"code">;
7433
+ code: z.ZodString;
7434
+ language: z.ZodOptional<z.ZodString>;
7435
+ }, z.core.$strip>, z.ZodObject<{
7436
+ type: z.ZodLiteral<"callout">;
7437
+ text: z.ZodString;
7438
+ label: z.ZodOptional<z.ZodString>;
7439
+ color: z.ZodOptional<z.ZodEnum<{
7440
+ success: "success";
7441
+ primary: "primary";
7442
+ accent: "accent";
7443
+ warning: "warning";
7444
+ danger: "danger";
7445
+ info: "info";
7446
+ highlight: "highlight";
7447
+ }>>;
7448
+ style: z.ZodOptional<z.ZodEnum<{
7449
+ warning: "warning";
7450
+ info: "info";
7451
+ quote: "quote";
7452
+ }>>;
7453
+ }, z.core.$strip>, z.ZodObject<{
7454
+ type: z.ZodLiteral<"metric">;
7455
+ value: z.ZodString;
7456
+ label: z.ZodString;
7457
+ color: z.ZodOptional<z.ZodEnum<{
7458
+ success: "success";
7459
+ primary: "primary";
7460
+ accent: "accent";
7461
+ warning: "warning";
7462
+ danger: "danger";
7463
+ info: "info";
7464
+ highlight: "highlight";
7465
+ }>>;
7466
+ change: z.ZodOptional<z.ZodString>;
7467
+ }, z.core.$strip>, z.ZodObject<{
7468
+ type: z.ZodLiteral<"divider">;
7469
+ color: z.ZodOptional<z.ZodEnum<{
7470
+ success: "success";
7471
+ primary: "primary";
7472
+ accent: "accent";
7473
+ warning: "warning";
7474
+ danger: "danger";
7475
+ info: "info";
7476
+ highlight: "highlight";
7477
+ }>>;
7478
+ }, z.core.$strip>, z.ZodObject<{
7479
+ type: z.ZodLiteral<"image">;
7480
+ src: z.ZodString;
7481
+ alt: z.ZodOptional<z.ZodString>;
7482
+ fit: z.ZodOptional<z.ZodEnum<{
7483
+ contain: "contain";
7484
+ cover: "cover";
7485
+ }>>;
7486
+ }, z.core.$strip>], "type">>>;
7487
+ dark: z.ZodOptional<z.ZodBoolean>;
7488
+ ratio: z.ZodOptional<z.ZodNumber>;
7489
+ }, z.core.$strip>>;
7490
+ right: z.ZodOptional<z.ZodObject<{
7491
+ title: z.ZodOptional<z.ZodString>;
7492
+ subtitle: z.ZodOptional<z.ZodString>;
7493
+ label: z.ZodOptional<z.ZodString>;
7494
+ accentColor: z.ZodOptional<z.ZodEnum<{
7495
+ success: "success";
7496
+ primary: "primary";
7497
+ accent: "accent";
7498
+ warning: "warning";
7499
+ danger: "danger";
7500
+ info: "info";
7501
+ highlight: "highlight";
7502
+ }>>;
7503
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7504
+ type: z.ZodLiteral<"text">;
7505
+ value: z.ZodString;
7506
+ align: z.ZodOptional<z.ZodEnum<{
7507
+ left: "left";
7508
+ center: "center";
7509
+ right: "right";
7510
+ }>>;
7511
+ bold: z.ZodOptional<z.ZodBoolean>;
7512
+ dim: z.ZodOptional<z.ZodBoolean>;
7513
+ fontSize: z.ZodOptional<z.ZodNumber>;
7514
+ color: z.ZodOptional<z.ZodEnum<{
7515
+ success: "success";
7516
+ primary: "primary";
7517
+ accent: "accent";
7518
+ warning: "warning";
7519
+ danger: "danger";
7520
+ info: "info";
7521
+ highlight: "highlight";
7522
+ }>>;
7523
+ }, z.core.$strip>, z.ZodObject<{
7524
+ type: z.ZodLiteral<"bullets">;
7525
+ items: z.ZodArray<z.ZodString>;
7526
+ ordered: z.ZodOptional<z.ZodBoolean>;
7527
+ icon: z.ZodOptional<z.ZodString>;
7528
+ }, z.core.$strip>, z.ZodObject<{
7529
+ type: z.ZodLiteral<"code">;
7530
+ code: z.ZodString;
7531
+ language: z.ZodOptional<z.ZodString>;
7532
+ }, z.core.$strip>, z.ZodObject<{
7533
+ type: z.ZodLiteral<"callout">;
7534
+ text: z.ZodString;
7535
+ label: z.ZodOptional<z.ZodString>;
7536
+ color: z.ZodOptional<z.ZodEnum<{
7537
+ success: "success";
7538
+ primary: "primary";
7539
+ accent: "accent";
7540
+ warning: "warning";
7541
+ danger: "danger";
7542
+ info: "info";
7543
+ highlight: "highlight";
7544
+ }>>;
7545
+ style: z.ZodOptional<z.ZodEnum<{
7546
+ warning: "warning";
7547
+ info: "info";
7548
+ quote: "quote";
7549
+ }>>;
7550
+ }, z.core.$strip>, z.ZodObject<{
7551
+ type: z.ZodLiteral<"metric">;
7552
+ value: z.ZodString;
7553
+ label: z.ZodString;
7554
+ color: z.ZodOptional<z.ZodEnum<{
7555
+ success: "success";
7556
+ primary: "primary";
7557
+ accent: "accent";
7558
+ warning: "warning";
7559
+ danger: "danger";
7560
+ info: "info";
7561
+ highlight: "highlight";
7562
+ }>>;
7563
+ change: z.ZodOptional<z.ZodString>;
7564
+ }, z.core.$strip>, z.ZodObject<{
7565
+ type: z.ZodLiteral<"divider">;
7566
+ color: z.ZodOptional<z.ZodEnum<{
7567
+ success: "success";
7568
+ primary: "primary";
7569
+ accent: "accent";
7570
+ warning: "warning";
7571
+ danger: "danger";
7572
+ info: "info";
7573
+ highlight: "highlight";
7574
+ }>>;
7575
+ }, z.core.$strip>, z.ZodObject<{
7576
+ type: z.ZodLiteral<"image">;
7577
+ src: z.ZodString;
7578
+ alt: z.ZodOptional<z.ZodString>;
7579
+ fit: z.ZodOptional<z.ZodEnum<{
7580
+ contain: "contain";
7581
+ cover: "cover";
7582
+ }>>;
7583
+ }, z.core.$strip>], "type">>>;
7584
+ dark: z.ZodOptional<z.ZodBoolean>;
7585
+ ratio: z.ZodOptional<z.ZodNumber>;
7586
+ }, z.core.$strip>>;
7587
+ accentColor: z.ZodOptional<z.ZodEnum<{
7588
+ success: "success";
7589
+ primary: "primary";
7590
+ accent: "accent";
7591
+ warning: "warning";
7592
+ danger: "danger";
7593
+ info: "info";
7594
+ highlight: "highlight";
7595
+ }>>;
7596
+ style: z.ZodOptional<z.ZodObject<{
7597
+ bgColor: z.ZodOptional<z.ZodString>;
7598
+ decorations: z.ZodOptional<z.ZodBoolean>;
7599
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7600
+ footer: z.ZodOptional<z.ZodString>;
7601
+ }, z.core.$strip>>;
7602
+ layout: z.ZodLiteral<"split">;
7603
+ }, z.core.$strip>, z.ZodObject<{
7604
+ title: z.ZodString;
7605
+ stepLabel: z.ZodOptional<z.ZodString>;
7606
+ subtitle: z.ZodOptional<z.ZodString>;
7607
+ rows: z.ZodOptional<z.ZodNumber>;
7608
+ cols: z.ZodOptional<z.ZodNumber>;
7609
+ xAxis: z.ZodOptional<z.ZodObject<{
7610
+ low: z.ZodOptional<z.ZodString>;
7611
+ high: z.ZodOptional<z.ZodString>;
7612
+ label: z.ZodOptional<z.ZodString>;
7613
+ }, z.core.$strip>>;
7614
+ yAxis: z.ZodOptional<z.ZodObject<{
7615
+ low: z.ZodOptional<z.ZodString>;
7616
+ high: z.ZodOptional<z.ZodString>;
7617
+ label: z.ZodOptional<z.ZodString>;
7618
+ }, z.core.$strip>>;
7619
+ cells: z.ZodArray<z.ZodObject<{
7620
+ label: z.ZodString;
7621
+ items: z.ZodOptional<z.ZodArray<z.ZodString>>;
7622
+ content: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
7623
+ type: z.ZodLiteral<"text">;
7624
+ value: z.ZodString;
7625
+ align: z.ZodOptional<z.ZodEnum<{
7626
+ left: "left";
7627
+ center: "center";
7628
+ right: "right";
7629
+ }>>;
7630
+ bold: z.ZodOptional<z.ZodBoolean>;
7631
+ dim: z.ZodOptional<z.ZodBoolean>;
7632
+ fontSize: z.ZodOptional<z.ZodNumber>;
7633
+ color: z.ZodOptional<z.ZodEnum<{
7634
+ success: "success";
7635
+ primary: "primary";
7636
+ accent: "accent";
7637
+ warning: "warning";
7638
+ danger: "danger";
7639
+ info: "info";
7640
+ highlight: "highlight";
7641
+ }>>;
7642
+ }, z.core.$strip>, z.ZodObject<{
7643
+ type: z.ZodLiteral<"bullets">;
7644
+ items: z.ZodArray<z.ZodString>;
7645
+ ordered: z.ZodOptional<z.ZodBoolean>;
7646
+ icon: z.ZodOptional<z.ZodString>;
7647
+ }, z.core.$strip>, z.ZodObject<{
7648
+ type: z.ZodLiteral<"code">;
7649
+ code: z.ZodString;
7650
+ language: z.ZodOptional<z.ZodString>;
7651
+ }, z.core.$strip>, z.ZodObject<{
7652
+ type: z.ZodLiteral<"callout">;
7653
+ text: z.ZodString;
7654
+ label: z.ZodOptional<z.ZodString>;
7655
+ color: z.ZodOptional<z.ZodEnum<{
7656
+ success: "success";
7657
+ primary: "primary";
7658
+ accent: "accent";
7659
+ warning: "warning";
7660
+ danger: "danger";
7661
+ info: "info";
7662
+ highlight: "highlight";
7663
+ }>>;
7664
+ style: z.ZodOptional<z.ZodEnum<{
7665
+ warning: "warning";
7666
+ info: "info";
7667
+ quote: "quote";
7668
+ }>>;
7669
+ }, z.core.$strip>, z.ZodObject<{
7670
+ type: z.ZodLiteral<"metric">;
7671
+ value: z.ZodString;
7672
+ label: z.ZodString;
7673
+ color: z.ZodOptional<z.ZodEnum<{
7674
+ success: "success";
7675
+ primary: "primary";
7676
+ accent: "accent";
7677
+ warning: "warning";
7678
+ danger: "danger";
7679
+ info: "info";
7680
+ highlight: "highlight";
7681
+ }>>;
7682
+ change: z.ZodOptional<z.ZodString>;
7683
+ }, z.core.$strip>, z.ZodObject<{
7684
+ type: z.ZodLiteral<"divider">;
7685
+ color: z.ZodOptional<z.ZodEnum<{
7686
+ success: "success";
7687
+ primary: "primary";
7688
+ accent: "accent";
7689
+ warning: "warning";
7690
+ danger: "danger";
7691
+ info: "info";
7692
+ highlight: "highlight";
7693
+ }>>;
7694
+ }, z.core.$strip>, z.ZodObject<{
7695
+ type: z.ZodLiteral<"image">;
7696
+ src: z.ZodString;
7697
+ alt: z.ZodOptional<z.ZodString>;
7698
+ fit: z.ZodOptional<z.ZodEnum<{
7699
+ contain: "contain";
7700
+ cover: "cover";
7701
+ }>>;
7702
+ }, z.core.$strip>], "type">>>;
7703
+ accentColor: z.ZodOptional<z.ZodEnum<{
7704
+ success: "success";
7705
+ primary: "primary";
7706
+ accent: "accent";
7707
+ warning: "warning";
7708
+ danger: "danger";
7709
+ info: "info";
7710
+ highlight: "highlight";
7711
+ }>>;
7712
+ }, z.core.$strip>>;
7713
+ accentColor: z.ZodOptional<z.ZodEnum<{
7714
+ success: "success";
7715
+ primary: "primary";
7716
+ accent: "accent";
7717
+ warning: "warning";
7718
+ danger: "danger";
7719
+ info: "info";
7720
+ highlight: "highlight";
7721
+ }>>;
7722
+ style: z.ZodOptional<z.ZodObject<{
7723
+ bgColor: z.ZodOptional<z.ZodString>;
7724
+ decorations: z.ZodOptional<z.ZodBoolean>;
7725
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7726
+ footer: z.ZodOptional<z.ZodString>;
7727
+ }, z.core.$strip>>;
7728
+ layout: z.ZodLiteral<"matrix">;
7729
+ }, z.core.$strip>, z.ZodObject<{
7730
+ title: z.ZodString;
7731
+ stepLabel: z.ZodOptional<z.ZodString>;
7732
+ subtitle: z.ZodOptional<z.ZodString>;
7733
+ headers: z.ZodArray<z.ZodString>;
7734
+ rows: z.ZodArray<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
7735
+ text: z.ZodString;
7736
+ color: z.ZodOptional<z.ZodEnum<{
7737
+ success: "success";
7738
+ primary: "primary";
7739
+ accent: "accent";
7740
+ warning: "warning";
7741
+ danger: "danger";
7742
+ info: "info";
7743
+ highlight: "highlight";
7744
+ }>>;
7745
+ bold: z.ZodOptional<z.ZodBoolean>;
7746
+ }, z.core.$strip>]>>>;
7747
+ rowHeaders: z.ZodOptional<z.ZodBoolean>;
7748
+ striped: z.ZodOptional<z.ZodBoolean>;
7749
+ callout: z.ZodOptional<z.ZodObject<{
7750
+ text: z.ZodString;
7751
+ label: z.ZodOptional<z.ZodString>;
7752
+ color: z.ZodOptional<z.ZodEnum<{
7753
+ success: "success";
7754
+ primary: "primary";
7755
+ accent: "accent";
7756
+ warning: "warning";
7757
+ danger: "danger";
7758
+ info: "info";
7759
+ highlight: "highlight";
7760
+ }>>;
7761
+ align: z.ZodOptional<z.ZodEnum<{
7762
+ left: "left";
7763
+ center: "center";
7764
+ }>>;
7765
+ leftBar: z.ZodOptional<z.ZodBoolean>;
7766
+ }, z.core.$strip>>;
7767
+ accentColor: z.ZodOptional<z.ZodEnum<{
7768
+ success: "success";
7769
+ primary: "primary";
7770
+ accent: "accent";
7771
+ warning: "warning";
7772
+ danger: "danger";
7773
+ info: "info";
7774
+ highlight: "highlight";
7775
+ }>>;
7776
+ style: z.ZodOptional<z.ZodObject<{
7777
+ bgColor: z.ZodOptional<z.ZodString>;
7778
+ decorations: z.ZodOptional<z.ZodBoolean>;
7779
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7780
+ footer: z.ZodOptional<z.ZodString>;
7781
+ }, z.core.$strip>>;
7782
+ layout: z.ZodLiteral<"table">;
7783
+ }, z.core.$strip>, z.ZodObject<{
7784
+ title: z.ZodString;
7785
+ stepLabel: z.ZodOptional<z.ZodString>;
7786
+ subtitle: z.ZodOptional<z.ZodString>;
7787
+ stages: z.ZodArray<z.ZodObject<{
7788
+ label: z.ZodString;
7789
+ value: z.ZodOptional<z.ZodString>;
7790
+ description: z.ZodOptional<z.ZodString>;
7791
+ color: z.ZodOptional<z.ZodEnum<{
7792
+ success: "success";
7793
+ primary: "primary";
7794
+ accent: "accent";
7795
+ warning: "warning";
7796
+ danger: "danger";
7797
+ info: "info";
7798
+ highlight: "highlight";
7799
+ }>>;
7800
+ }, z.core.$strip>>;
7801
+ callout: z.ZodOptional<z.ZodObject<{
7802
+ text: z.ZodString;
7803
+ label: z.ZodOptional<z.ZodString>;
7804
+ color: z.ZodOptional<z.ZodEnum<{
7805
+ success: "success";
7806
+ primary: "primary";
7807
+ accent: "accent";
7808
+ warning: "warning";
7809
+ danger: "danger";
7810
+ info: "info";
7811
+ highlight: "highlight";
7812
+ }>>;
7813
+ align: z.ZodOptional<z.ZodEnum<{
7814
+ left: "left";
7815
+ center: "center";
7816
+ }>>;
7817
+ leftBar: z.ZodOptional<z.ZodBoolean>;
7818
+ }, z.core.$strip>>;
7819
+ accentColor: z.ZodOptional<z.ZodEnum<{
7820
+ success: "success";
7821
+ primary: "primary";
7822
+ accent: "accent";
7823
+ warning: "warning";
7824
+ danger: "danger";
7825
+ info: "info";
7826
+ highlight: "highlight";
7827
+ }>>;
7828
+ style: z.ZodOptional<z.ZodObject<{
7829
+ bgColor: z.ZodOptional<z.ZodString>;
7830
+ decorations: z.ZodOptional<z.ZodBoolean>;
7831
+ bgOpacity: z.ZodOptional<z.ZodNumber>;
7832
+ footer: z.ZodOptional<z.ZodString>;
7833
+ }, z.core.$strip>>;
7834
+ layout: z.ZodLiteral<"funnel">;
7835
+ }, z.core.$strip>], "layout">;
3435
7836
  }, z.core.$strict>]>>;
3436
7837
  audio: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
3437
7838
  type: z.ZodLiteral<"audio">;
@@ -3870,8 +8271,8 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
3870
8271
  }, z.core.$strict>], "kind">;
3871
8272
  size: z.ZodOptional<z.ZodEnum<{
3872
8273
  auto: "auto";
3873
- cover: "cover";
3874
8274
  contain: "contain";
8275
+ cover: "cover";
3875
8276
  fill: "fill";
3876
8277
  }>>;
3877
8278
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -4126,6 +8527,30 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
4126
8527
  textSlideParams: z.ZodOptional<z.ZodObject<{
4127
8528
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
4128
8529
  }, z.core.$strict>>;
8530
+ slideParams: z.ZodOptional<z.ZodObject<{
8531
+ theme: z.ZodObject<{
8532
+ colors: z.ZodObject<{
8533
+ bg: z.ZodString;
8534
+ bgCard: z.ZodString;
8535
+ bgCardAlt: z.ZodString;
8536
+ text: z.ZodString;
8537
+ textMuted: z.ZodString;
8538
+ textDim: z.ZodString;
8539
+ primary: z.ZodString;
8540
+ accent: z.ZodString;
8541
+ success: z.ZodString;
8542
+ warning: z.ZodString;
8543
+ danger: z.ZodString;
8544
+ info: z.ZodString;
8545
+ highlight: z.ZodString;
8546
+ }, z.core.$strip>;
8547
+ fonts: z.ZodObject<{
8548
+ title: z.ZodString;
8549
+ body: z.ZodString;
8550
+ mono: z.ZodString;
8551
+ }, z.core.$strip>;
8552
+ }, z.core.$strip>;
8553
+ }, z.core.$strict>>;
4129
8554
  captionParams: z.ZodOptional<z.ZodObject<{
4130
8555
  lang: z.ZodOptional<z.ZodString>;
4131
8556
  styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -4254,8 +8679,8 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
4254
8679
  }, z.core.$strict>], "kind">;
4255
8680
  size: z.ZodOptional<z.ZodEnum<{
4256
8681
  auto: "auto";
4257
- cover: "cover";
4258
8682
  contain: "contain";
8683
+ cover: "cover";
4259
8684
  fill: "fill";
4260
8685
  }>>;
4261
8686
  opacity: z.ZodOptional<z.ZodNumber>;
@@ -4510,6 +8935,30 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
4510
8935
  textSlideParams: z.ZodOptional<z.ZodObject<{
4511
8936
  cssStyles: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
4512
8937
  }, z.core.$strict>>;
8938
+ slideParams: z.ZodOptional<z.ZodObject<{
8939
+ theme: z.ZodObject<{
8940
+ colors: z.ZodObject<{
8941
+ bg: z.ZodString;
8942
+ bgCard: z.ZodString;
8943
+ bgCardAlt: z.ZodString;
8944
+ text: z.ZodString;
8945
+ textMuted: z.ZodString;
8946
+ textDim: z.ZodString;
8947
+ primary: z.ZodString;
8948
+ accent: z.ZodString;
8949
+ success: z.ZodString;
8950
+ warning: z.ZodString;
8951
+ danger: z.ZodString;
8952
+ info: z.ZodString;
8953
+ highlight: z.ZodString;
8954
+ }, z.core.$strip>;
8955
+ fonts: z.ZodObject<{
8956
+ title: z.ZodString;
8957
+ body: z.ZodString;
8958
+ mono: z.ZodString;
8959
+ }, z.core.$strip>;
8960
+ }, z.core.$strip>;
8961
+ }, z.core.$strict>>;
4513
8962
  captionParams: z.ZodOptional<z.ZodObject<{
4514
8963
  lang: z.ZodOptional<z.ZodString>;
4515
8964
  styles: z.ZodOptional<z.ZodArray<z.ZodString>>;