@kontakto/email-template-editor 2.0.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -15,6 +15,8 @@ declare const TextPropsSchema: z.ZodObject<{
15
15
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
16
16
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
17
17
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
18
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
19
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
18
20
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
19
21
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
20
22
  top: z.ZodNumber;
@@ -38,6 +40,8 @@ declare const TextPropsSchema: z.ZodObject<{
38
40
  fontSize?: number | null | undefined;
39
41
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
40
42
  fontWeight?: "bold" | "normal" | null | undefined;
43
+ lineHeight?: number | null | undefined;
44
+ letterSpacing?: number | null | undefined;
41
45
  textAlign?: "right" | "left" | "center" | null | undefined;
42
46
  padding?: {
43
47
  top: number;
@@ -51,6 +55,8 @@ declare const TextPropsSchema: z.ZodObject<{
51
55
  fontSize?: number | null | undefined;
52
56
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
53
57
  fontWeight?: "bold" | "normal" | null | undefined;
58
+ lineHeight?: number | null | undefined;
59
+ letterSpacing?: number | null | undefined;
54
60
  textAlign?: "right" | "left" | "center" | null | undefined;
55
61
  padding?: {
56
62
  top: number;
@@ -76,6 +82,8 @@ declare const TextPropsSchema: z.ZodObject<{
76
82
  fontSize?: number | null | undefined;
77
83
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
78
84
  fontWeight?: "bold" | "normal" | null | undefined;
85
+ lineHeight?: number | null | undefined;
86
+ letterSpacing?: number | null | undefined;
79
87
  textAlign?: "right" | "left" | "center" | null | undefined;
80
88
  padding?: {
81
89
  top: number;
@@ -95,6 +103,8 @@ declare const TextPropsSchema: z.ZodObject<{
95
103
  fontSize?: number | null | undefined;
96
104
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
97
105
  fontWeight?: "bold" | "normal" | null | undefined;
106
+ lineHeight?: number | null | undefined;
107
+ letterSpacing?: number | null | undefined;
98
108
  textAlign?: "right" | "left" | "center" | null | undefined;
99
109
  padding?: {
100
110
  top: number;
@@ -116,6 +126,8 @@ declare const TextProps: z.ZodObject<{
116
126
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
117
127
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
118
128
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
129
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
130
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
119
131
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
120
132
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
121
133
  top: z.ZodNumber;
@@ -139,6 +151,8 @@ declare const TextProps: z.ZodObject<{
139
151
  fontSize?: number | null | undefined;
140
152
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
141
153
  fontWeight?: "bold" | "normal" | null | undefined;
154
+ lineHeight?: number | null | undefined;
155
+ letterSpacing?: number | null | undefined;
142
156
  textAlign?: "right" | "left" | "center" | null | undefined;
143
157
  padding?: {
144
158
  top: number;
@@ -152,6 +166,8 @@ declare const TextProps: z.ZodObject<{
152
166
  fontSize?: number | null | undefined;
153
167
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
154
168
  fontWeight?: "bold" | "normal" | null | undefined;
169
+ lineHeight?: number | null | undefined;
170
+ letterSpacing?: number | null | undefined;
155
171
  textAlign?: "right" | "left" | "center" | null | undefined;
156
172
  padding?: {
157
173
  top: number;
@@ -177,6 +193,8 @@ declare const TextProps: z.ZodObject<{
177
193
  fontSize?: number | null | undefined;
178
194
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
179
195
  fontWeight?: "bold" | "normal" | null | undefined;
196
+ lineHeight?: number | null | undefined;
197
+ letterSpacing?: number | null | undefined;
180
198
  textAlign?: "right" | "left" | "center" | null | undefined;
181
199
  padding?: {
182
200
  top: number;
@@ -196,6 +214,8 @@ declare const TextProps: z.ZodObject<{
196
214
  fontSize?: number | null | undefined;
197
215
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
198
216
  fontWeight?: "bold" | "normal" | null | undefined;
217
+ lineHeight?: number | null | undefined;
218
+ letterSpacing?: number | null | undefined;
199
219
  textAlign?: "right" | "left" | "center" | null | undefined;
200
220
  padding?: {
201
221
  top: number;
@@ -399,6 +419,8 @@ declare const ButtonPropsSchema: z.ZodObject<{
399
419
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
400
420
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
401
421
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
422
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
423
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
402
424
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
403
425
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
404
426
  top: z.ZodNumber;
@@ -421,6 +443,8 @@ declare const ButtonPropsSchema: z.ZodObject<{
421
443
  fontSize?: number | null | undefined;
422
444
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
423
445
  fontWeight?: "bold" | "normal" | null | undefined;
446
+ lineHeight?: number | null | undefined;
447
+ letterSpacing?: number | null | undefined;
424
448
  textAlign?: "right" | "left" | "center" | null | undefined;
425
449
  padding?: {
426
450
  top: number;
@@ -433,6 +457,8 @@ declare const ButtonPropsSchema: z.ZodObject<{
433
457
  fontSize?: number | null | undefined;
434
458
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
435
459
  fontWeight?: "bold" | "normal" | null | undefined;
460
+ lineHeight?: number | null | undefined;
461
+ letterSpacing?: number | null | undefined;
436
462
  textAlign?: "right" | "left" | "center" | null | undefined;
437
463
  padding?: {
438
464
  top: number;
@@ -472,6 +498,8 @@ declare const ButtonPropsSchema: z.ZodObject<{
472
498
  fontSize?: number | null | undefined;
473
499
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
474
500
  fontWeight?: "bold" | "normal" | null | undefined;
501
+ lineHeight?: number | null | undefined;
502
+ letterSpacing?: number | null | undefined;
475
503
  textAlign?: "right" | "left" | "center" | null | undefined;
476
504
  padding?: {
477
505
  top: number;
@@ -495,6 +523,8 @@ declare const ButtonPropsSchema: z.ZodObject<{
495
523
  fontSize?: number | null | undefined;
496
524
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
497
525
  fontWeight?: "bold" | "normal" | null | undefined;
526
+ lineHeight?: number | null | undefined;
527
+ letterSpacing?: number | null | undefined;
498
528
  textAlign?: "right" | "left" | "center" | null | undefined;
499
529
  padding?: {
500
530
  top: number;
@@ -520,6 +550,8 @@ declare const ButtonProps: z.ZodObject<{
520
550
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
521
551
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
522
552
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
553
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
554
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
523
555
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
524
556
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
525
557
  top: z.ZodNumber;
@@ -542,6 +574,8 @@ declare const ButtonProps: z.ZodObject<{
542
574
  fontSize?: number | null | undefined;
543
575
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
544
576
  fontWeight?: "bold" | "normal" | null | undefined;
577
+ lineHeight?: number | null | undefined;
578
+ letterSpacing?: number | null | undefined;
545
579
  textAlign?: "right" | "left" | "center" | null | undefined;
546
580
  padding?: {
547
581
  top: number;
@@ -554,6 +588,8 @@ declare const ButtonProps: z.ZodObject<{
554
588
  fontSize?: number | null | undefined;
555
589
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
556
590
  fontWeight?: "bold" | "normal" | null | undefined;
591
+ lineHeight?: number | null | undefined;
592
+ letterSpacing?: number | null | undefined;
557
593
  textAlign?: "right" | "left" | "center" | null | undefined;
558
594
  padding?: {
559
595
  top: number;
@@ -593,6 +629,8 @@ declare const ButtonProps: z.ZodObject<{
593
629
  fontSize?: number | null | undefined;
594
630
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
595
631
  fontWeight?: "bold" | "normal" | null | undefined;
632
+ lineHeight?: number | null | undefined;
633
+ letterSpacing?: number | null | undefined;
596
634
  textAlign?: "right" | "left" | "center" | null | undefined;
597
635
  padding?: {
598
636
  top: number;
@@ -616,6 +654,8 @@ declare const ButtonProps: z.ZodObject<{
616
654
  fontSize?: number | null | undefined;
617
655
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
618
656
  fontWeight?: "bold" | "normal" | null | undefined;
657
+ lineHeight?: number | null | undefined;
658
+ letterSpacing?: number | null | undefined;
619
659
  textAlign?: "right" | "left" | "center" | null | undefined;
620
660
  padding?: {
621
661
  top: number;
@@ -1001,11 +1041,11 @@ declare const DividerPropsSchema: z.ZodObject<{
1001
1041
  lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1002
1042
  lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1003
1043
  }, "strip", z.ZodTypeAny, {
1004
- lineColor?: string | null | undefined;
1005
1044
  lineHeight?: number | null | undefined;
1006
- }, {
1007
1045
  lineColor?: string | null | undefined;
1046
+ }, {
1008
1047
  lineHeight?: number | null | undefined;
1048
+ lineColor?: string | null | undefined;
1009
1049
  }>>>;
1010
1050
  }, "strip", z.ZodTypeAny, {
1011
1051
  style?: {
@@ -1018,8 +1058,8 @@ declare const DividerPropsSchema: z.ZodObject<{
1018
1058
  } | null | undefined;
1019
1059
  } | null | undefined;
1020
1060
  props?: {
1021
- lineColor?: string | null | undefined;
1022
1061
  lineHeight?: number | null | undefined;
1062
+ lineColor?: string | null | undefined;
1023
1063
  } | null | undefined;
1024
1064
  }, {
1025
1065
  style?: {
@@ -1032,8 +1072,8 @@ declare const DividerPropsSchema: z.ZodObject<{
1032
1072
  } | null | undefined;
1033
1073
  } | null | undefined;
1034
1074
  props?: {
1035
- lineColor?: string | null | undefined;
1036
1075
  lineHeight?: number | null | undefined;
1076
+ lineColor?: string | null | undefined;
1037
1077
  } | null | undefined;
1038
1078
  }>;
1039
1079
  type DividerProps = z.infer<typeof DividerPropsSchema>;
@@ -1077,11 +1117,11 @@ declare const DividerProps: z.ZodObject<{
1077
1117
  lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1078
1118
  lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1079
1119
  }, "strip", z.ZodTypeAny, {
1080
- lineColor?: string | null | undefined;
1081
1120
  lineHeight?: number | null | undefined;
1082
- }, {
1083
1121
  lineColor?: string | null | undefined;
1122
+ }, {
1084
1123
  lineHeight?: number | null | undefined;
1124
+ lineColor?: string | null | undefined;
1085
1125
  }>>>;
1086
1126
  }, "strip", z.ZodTypeAny, {
1087
1127
  style?: {
@@ -1094,8 +1134,8 @@ declare const DividerProps: z.ZodObject<{
1094
1134
  } | null | undefined;
1095
1135
  } | null | undefined;
1096
1136
  props?: {
1097
- lineColor?: string | null | undefined;
1098
1137
  lineHeight?: number | null | undefined;
1138
+ lineColor?: string | null | undefined;
1099
1139
  } | null | undefined;
1100
1140
  }, {
1101
1141
  style?: {
@@ -1108,8 +1148,8 @@ declare const DividerProps: z.ZodObject<{
1108
1148
  } | null | undefined;
1109
1149
  } | null | undefined;
1110
1150
  props?: {
1111
- lineColor?: string | null | undefined;
1112
1151
  lineHeight?: number | null | undefined;
1152
+ lineColor?: string | null | undefined;
1113
1153
  } | null | undefined;
1114
1154
  }>;
1115
1155
  declare const DividerPropsDefaults: {
@@ -1122,10 +1162,13 @@ declare const HeadingPropsSchema: z.ZodObject<{
1122
1162
  props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1123
1163
  text: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1124
1164
  level: z.ZodNullable<z.ZodOptional<z.ZodEnum<["h1", "h2", "h3"]>>>;
1165
+ markdown: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1125
1166
  }, "strip", z.ZodTypeAny, {
1167
+ markdown?: boolean | null | undefined;
1126
1168
  text?: string | null | undefined;
1127
1169
  level?: "h1" | "h2" | "h3" | null | undefined;
1128
1170
  }, {
1171
+ markdown?: boolean | null | undefined;
1129
1172
  text?: string | null | undefined;
1130
1173
  level?: "h1" | "h2" | "h3" | null | undefined;
1131
1174
  }>>>;
@@ -1134,6 +1177,8 @@ declare const HeadingPropsSchema: z.ZodObject<{
1134
1177
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1135
1178
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
1136
1179
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
1180
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1181
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1137
1182
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
1138
1183
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1139
1184
  top: z.ZodNumber;
@@ -1156,6 +1201,8 @@ declare const HeadingPropsSchema: z.ZodObject<{
1156
1201
  backgroundColor?: string | null | undefined;
1157
1202
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1158
1203
  fontWeight?: "bold" | "normal" | null | undefined;
1204
+ lineHeight?: number | null | undefined;
1205
+ letterSpacing?: number | null | undefined;
1159
1206
  textAlign?: "right" | "left" | "center" | null | undefined;
1160
1207
  padding?: {
1161
1208
  top: number;
@@ -1168,6 +1215,8 @@ declare const HeadingPropsSchema: z.ZodObject<{
1168
1215
  backgroundColor?: string | null | undefined;
1169
1216
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1170
1217
  fontWeight?: "bold" | "normal" | null | undefined;
1218
+ lineHeight?: number | null | undefined;
1219
+ letterSpacing?: number | null | undefined;
1171
1220
  textAlign?: "right" | "left" | "center" | null | undefined;
1172
1221
  padding?: {
1173
1222
  top: number;
@@ -1182,6 +1231,8 @@ declare const HeadingPropsSchema: z.ZodObject<{
1182
1231
  backgroundColor?: string | null | undefined;
1183
1232
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1184
1233
  fontWeight?: "bold" | "normal" | null | undefined;
1234
+ lineHeight?: number | null | undefined;
1235
+ letterSpacing?: number | null | undefined;
1185
1236
  textAlign?: "right" | "left" | "center" | null | undefined;
1186
1237
  padding?: {
1187
1238
  top: number;
@@ -1191,6 +1242,7 @@ declare const HeadingPropsSchema: z.ZodObject<{
1191
1242
  } | null | undefined;
1192
1243
  } | null | undefined;
1193
1244
  props?: {
1245
+ markdown?: boolean | null | undefined;
1194
1246
  text?: string | null | undefined;
1195
1247
  level?: "h1" | "h2" | "h3" | null | undefined;
1196
1248
  } | null | undefined;
@@ -1200,6 +1252,8 @@ declare const HeadingPropsSchema: z.ZodObject<{
1200
1252
  backgroundColor?: string | null | undefined;
1201
1253
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1202
1254
  fontWeight?: "bold" | "normal" | null | undefined;
1255
+ lineHeight?: number | null | undefined;
1256
+ letterSpacing?: number | null | undefined;
1203
1257
  textAlign?: "right" | "left" | "center" | null | undefined;
1204
1258
  padding?: {
1205
1259
  top: number;
@@ -1209,6 +1263,7 @@ declare const HeadingPropsSchema: z.ZodObject<{
1209
1263
  } | null | undefined;
1210
1264
  } | null | undefined;
1211
1265
  props?: {
1266
+ markdown?: boolean | null | undefined;
1212
1267
  text?: string | null | undefined;
1213
1268
  level?: "h1" | "h2" | "h3" | null | undefined;
1214
1269
  } | null | undefined;
@@ -1218,10 +1273,13 @@ declare const HeadingProps: z.ZodObject<{
1218
1273
  props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1219
1274
  text: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1220
1275
  level: z.ZodNullable<z.ZodOptional<z.ZodEnum<["h1", "h2", "h3"]>>>;
1276
+ markdown: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1221
1277
  }, "strip", z.ZodTypeAny, {
1278
+ markdown?: boolean | null | undefined;
1222
1279
  text?: string | null | undefined;
1223
1280
  level?: "h1" | "h2" | "h3" | null | undefined;
1224
1281
  }, {
1282
+ markdown?: boolean | null | undefined;
1225
1283
  text?: string | null | undefined;
1226
1284
  level?: "h1" | "h2" | "h3" | null | undefined;
1227
1285
  }>>>;
@@ -1230,6 +1288,8 @@ declare const HeadingProps: z.ZodObject<{
1230
1288
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1231
1289
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
1232
1290
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
1291
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1292
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1233
1293
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
1234
1294
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1235
1295
  top: z.ZodNumber;
@@ -1252,6 +1312,8 @@ declare const HeadingProps: z.ZodObject<{
1252
1312
  backgroundColor?: string | null | undefined;
1253
1313
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1254
1314
  fontWeight?: "bold" | "normal" | null | undefined;
1315
+ lineHeight?: number | null | undefined;
1316
+ letterSpacing?: number | null | undefined;
1255
1317
  textAlign?: "right" | "left" | "center" | null | undefined;
1256
1318
  padding?: {
1257
1319
  top: number;
@@ -1264,6 +1326,8 @@ declare const HeadingProps: z.ZodObject<{
1264
1326
  backgroundColor?: string | null | undefined;
1265
1327
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1266
1328
  fontWeight?: "bold" | "normal" | null | undefined;
1329
+ lineHeight?: number | null | undefined;
1330
+ letterSpacing?: number | null | undefined;
1267
1331
  textAlign?: "right" | "left" | "center" | null | undefined;
1268
1332
  padding?: {
1269
1333
  top: number;
@@ -1278,6 +1342,8 @@ declare const HeadingProps: z.ZodObject<{
1278
1342
  backgroundColor?: string | null | undefined;
1279
1343
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1280
1344
  fontWeight?: "bold" | "normal" | null | undefined;
1345
+ lineHeight?: number | null | undefined;
1346
+ letterSpacing?: number | null | undefined;
1281
1347
  textAlign?: "right" | "left" | "center" | null | undefined;
1282
1348
  padding?: {
1283
1349
  top: number;
@@ -1287,6 +1353,7 @@ declare const HeadingProps: z.ZodObject<{
1287
1353
  } | null | undefined;
1288
1354
  } | null | undefined;
1289
1355
  props?: {
1356
+ markdown?: boolean | null | undefined;
1290
1357
  text?: string | null | undefined;
1291
1358
  level?: "h1" | "h2" | "h3" | null | undefined;
1292
1359
  } | null | undefined;
@@ -1296,6 +1363,8 @@ declare const HeadingProps: z.ZodObject<{
1296
1363
  backgroundColor?: string | null | undefined;
1297
1364
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
1298
1365
  fontWeight?: "bold" | "normal" | null | undefined;
1366
+ lineHeight?: number | null | undefined;
1367
+ letterSpacing?: number | null | undefined;
1299
1368
  textAlign?: "right" | "left" | "center" | null | undefined;
1300
1369
  padding?: {
1301
1370
  top: number;
@@ -1305,6 +1374,7 @@ declare const HeadingProps: z.ZodObject<{
1305
1374
  } | null | undefined;
1306
1375
  } | null | undefined;
1307
1376
  props?: {
1377
+ markdown?: boolean | null | undefined;
1308
1378
  text?: string | null | undefined;
1309
1379
  level?: "h1" | "h2" | "h3" | null | undefined;
1310
1380
  } | null | undefined;
@@ -2328,12 +2398,15 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2328
2398
  variables: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2329
2399
  name: z.ZodString;
2330
2400
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2401
+ sampleValue: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2331
2402
  }, "strip", z.ZodTypeAny, {
2332
2403
  name: string;
2333
2404
  description?: string | null | undefined;
2405
+ sampleValue?: string | null | undefined;
2334
2406
  }, {
2335
2407
  name: string;
2336
2408
  description?: string | null | undefined;
2409
+ sampleValue?: string | null | undefined;
2337
2410
  }>, "many">>>;
2338
2411
  }, "strip", z.ZodTypeAny, {
2339
2412
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -2348,6 +2421,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2348
2421
  variables?: {
2349
2422
  name: string;
2350
2423
  description?: string | null | undefined;
2424
+ sampleValue?: string | null | undefined;
2351
2425
  }[] | null | undefined;
2352
2426
  }, {
2353
2427
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -2362,6 +2436,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2362
2436
  variables?: {
2363
2437
  name: string;
2364
2438
  description?: string | null | undefined;
2439
+ sampleValue?: string | null | undefined;
2365
2440
  }[] | null | undefined;
2366
2441
  }>;
2367
2442
  Avatar: z.ZodObject<{
@@ -2455,6 +2530,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2455
2530
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2456
2531
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
2457
2532
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
2533
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2534
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2458
2535
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
2459
2536
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2460
2537
  top: z.ZodNumber;
@@ -2477,6 +2554,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2477
2554
  fontSize?: number | null | undefined;
2478
2555
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2479
2556
  fontWeight?: "bold" | "normal" | null | undefined;
2557
+ lineHeight?: number | null | undefined;
2558
+ letterSpacing?: number | null | undefined;
2480
2559
  textAlign?: "right" | "left" | "center" | null | undefined;
2481
2560
  padding?: {
2482
2561
  top: number;
@@ -2489,6 +2568,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2489
2568
  fontSize?: number | null | undefined;
2490
2569
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2491
2570
  fontWeight?: "bold" | "normal" | null | undefined;
2571
+ lineHeight?: number | null | undefined;
2572
+ letterSpacing?: number | null | undefined;
2492
2573
  textAlign?: "right" | "left" | "center" | null | undefined;
2493
2574
  padding?: {
2494
2575
  top: number;
@@ -2528,6 +2609,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2528
2609
  fontSize?: number | null | undefined;
2529
2610
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2530
2611
  fontWeight?: "bold" | "normal" | null | undefined;
2612
+ lineHeight?: number | null | undefined;
2613
+ letterSpacing?: number | null | undefined;
2531
2614
  textAlign?: "right" | "left" | "center" | null | undefined;
2532
2615
  padding?: {
2533
2616
  top: number;
@@ -2551,6 +2634,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2551
2634
  fontSize?: number | null | undefined;
2552
2635
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2553
2636
  fontWeight?: "bold" | "normal" | null | undefined;
2637
+ lineHeight?: number | null | undefined;
2638
+ letterSpacing?: number | null | undefined;
2554
2639
  textAlign?: "right" | "left" | "center" | null | undefined;
2555
2640
  padding?: {
2556
2641
  top: number;
@@ -2609,11 +2694,11 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2609
2694
  lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2610
2695
  lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2611
2696
  }, "strip", z.ZodTypeAny, {
2612
- lineColor?: string | null | undefined;
2613
2697
  lineHeight?: number | null | undefined;
2614
- }, {
2615
2698
  lineColor?: string | null | undefined;
2699
+ }, {
2616
2700
  lineHeight?: number | null | undefined;
2701
+ lineColor?: string | null | undefined;
2617
2702
  }>>>;
2618
2703
  }, "strip", z.ZodTypeAny, {
2619
2704
  style?: {
@@ -2626,8 +2711,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2626
2711
  } | null | undefined;
2627
2712
  } | null | undefined;
2628
2713
  props?: {
2629
- lineColor?: string | null | undefined;
2630
2714
  lineHeight?: number | null | undefined;
2715
+ lineColor?: string | null | undefined;
2631
2716
  } | null | undefined;
2632
2717
  }, {
2633
2718
  style?: {
@@ -2640,18 +2725,21 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2640
2725
  } | null | undefined;
2641
2726
  } | null | undefined;
2642
2727
  props?: {
2643
- lineColor?: string | null | undefined;
2644
2728
  lineHeight?: number | null | undefined;
2729
+ lineColor?: string | null | undefined;
2645
2730
  } | null | undefined;
2646
2731
  }>;
2647
2732
  Heading: z.ZodObject<{
2648
2733
  props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2649
2734
  text: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2650
2735
  level: z.ZodNullable<z.ZodOptional<z.ZodEnum<["h1", "h2", "h3"]>>>;
2736
+ markdown: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2651
2737
  }, "strip", z.ZodTypeAny, {
2738
+ markdown?: boolean | null | undefined;
2652
2739
  text?: string | null | undefined;
2653
2740
  level?: "h1" | "h2" | "h3" | null | undefined;
2654
2741
  }, {
2742
+ markdown?: boolean | null | undefined;
2655
2743
  text?: string | null | undefined;
2656
2744
  level?: "h1" | "h2" | "h3" | null | undefined;
2657
2745
  }>>>;
@@ -2660,6 +2748,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2660
2748
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2661
2749
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
2662
2750
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
2751
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2752
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2663
2753
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
2664
2754
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2665
2755
  top: z.ZodNumber;
@@ -2682,6 +2772,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2682
2772
  backgroundColor?: string | null | undefined;
2683
2773
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2684
2774
  fontWeight?: "bold" | "normal" | null | undefined;
2775
+ lineHeight?: number | null | undefined;
2776
+ letterSpacing?: number | null | undefined;
2685
2777
  textAlign?: "right" | "left" | "center" | null | undefined;
2686
2778
  padding?: {
2687
2779
  top: number;
@@ -2694,6 +2786,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2694
2786
  backgroundColor?: string | null | undefined;
2695
2787
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2696
2788
  fontWeight?: "bold" | "normal" | null | undefined;
2789
+ lineHeight?: number | null | undefined;
2790
+ letterSpacing?: number | null | undefined;
2697
2791
  textAlign?: "right" | "left" | "center" | null | undefined;
2698
2792
  padding?: {
2699
2793
  top: number;
@@ -2708,6 +2802,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2708
2802
  backgroundColor?: string | null | undefined;
2709
2803
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2710
2804
  fontWeight?: "bold" | "normal" | null | undefined;
2805
+ lineHeight?: number | null | undefined;
2806
+ letterSpacing?: number | null | undefined;
2711
2807
  textAlign?: "right" | "left" | "center" | null | undefined;
2712
2808
  padding?: {
2713
2809
  top: number;
@@ -2717,6 +2813,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2717
2813
  } | null | undefined;
2718
2814
  } | null | undefined;
2719
2815
  props?: {
2816
+ markdown?: boolean | null | undefined;
2720
2817
  text?: string | null | undefined;
2721
2818
  level?: "h1" | "h2" | "h3" | null | undefined;
2722
2819
  } | null | undefined;
@@ -2726,6 +2823,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2726
2823
  backgroundColor?: string | null | undefined;
2727
2824
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2728
2825
  fontWeight?: "bold" | "normal" | null | undefined;
2826
+ lineHeight?: number | null | undefined;
2827
+ letterSpacing?: number | null | undefined;
2729
2828
  textAlign?: "right" | "left" | "center" | null | undefined;
2730
2829
  padding?: {
2731
2830
  top: number;
@@ -2735,6 +2834,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2735
2834
  } | null | undefined;
2736
2835
  } | null | undefined;
2737
2836
  props?: {
2837
+ markdown?: boolean | null | undefined;
2738
2838
  text?: string | null | undefined;
2739
2839
  level?: "h1" | "h2" | "h3" | null | undefined;
2740
2840
  } | null | undefined;
@@ -2953,6 +3053,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2953
3053
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2954
3054
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
2955
3055
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
3056
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3057
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2956
3058
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
2957
3059
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2958
3060
  top: z.ZodNumber;
@@ -2976,6 +3078,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2976
3078
  fontSize?: number | null | undefined;
2977
3079
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2978
3080
  fontWeight?: "bold" | "normal" | null | undefined;
3081
+ lineHeight?: number | null | undefined;
3082
+ letterSpacing?: number | null | undefined;
2979
3083
  textAlign?: "right" | "left" | "center" | null | undefined;
2980
3084
  padding?: {
2981
3085
  top: number;
@@ -2989,6 +3093,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
2989
3093
  fontSize?: number | null | undefined;
2990
3094
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
2991
3095
  fontWeight?: "bold" | "normal" | null | undefined;
3096
+ lineHeight?: number | null | undefined;
3097
+ letterSpacing?: number | null | undefined;
2992
3098
  textAlign?: "right" | "left" | "center" | null | undefined;
2993
3099
  padding?: {
2994
3100
  top: number;
@@ -3014,6 +3120,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
3014
3120
  fontSize?: number | null | undefined;
3015
3121
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3016
3122
  fontWeight?: "bold" | "normal" | null | undefined;
3123
+ lineHeight?: number | null | undefined;
3124
+ letterSpacing?: number | null | undefined;
3017
3125
  textAlign?: "right" | "left" | "center" | null | undefined;
3018
3126
  padding?: {
3019
3127
  top: number;
@@ -3033,6 +3141,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
3033
3141
  fontSize?: number | null | undefined;
3034
3142
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3035
3143
  fontWeight?: "bold" | "normal" | null | undefined;
3144
+ lineHeight?: number | null | undefined;
3145
+ letterSpacing?: number | null | undefined;
3036
3146
  textAlign?: "right" | "left" | "center" | null | undefined;
3037
3147
  padding?: {
3038
3148
  top: number;
@@ -3419,12 +3529,15 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3419
3529
  variables: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3420
3530
  name: z.ZodString;
3421
3531
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3532
+ sampleValue: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3422
3533
  }, "strip", z.ZodTypeAny, {
3423
3534
  name: string;
3424
3535
  description?: string | null | undefined;
3536
+ sampleValue?: string | null | undefined;
3425
3537
  }, {
3426
3538
  name: string;
3427
3539
  description?: string | null | undefined;
3540
+ sampleValue?: string | null | undefined;
3428
3541
  }>, "many">>>;
3429
3542
  }, "strip", z.ZodTypeAny, {
3430
3543
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -3439,6 +3552,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3439
3552
  variables?: {
3440
3553
  name: string;
3441
3554
  description?: string | null | undefined;
3555
+ sampleValue?: string | null | undefined;
3442
3556
  }[] | null | undefined;
3443
3557
  }, {
3444
3558
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -3453,6 +3567,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3453
3567
  variables?: {
3454
3568
  name: string;
3455
3569
  description?: string | null | undefined;
3570
+ sampleValue?: string | null | undefined;
3456
3571
  }[] | null | undefined;
3457
3572
  }>;
3458
3573
  Avatar: z.ZodObject<{
@@ -3546,6 +3661,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3546
3661
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3547
3662
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
3548
3663
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
3664
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3665
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3549
3666
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
3550
3667
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3551
3668
  top: z.ZodNumber;
@@ -3568,6 +3685,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3568
3685
  fontSize?: number | null | undefined;
3569
3686
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3570
3687
  fontWeight?: "bold" | "normal" | null | undefined;
3688
+ lineHeight?: number | null | undefined;
3689
+ letterSpacing?: number | null | undefined;
3571
3690
  textAlign?: "right" | "left" | "center" | null | undefined;
3572
3691
  padding?: {
3573
3692
  top: number;
@@ -3580,6 +3699,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3580
3699
  fontSize?: number | null | undefined;
3581
3700
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3582
3701
  fontWeight?: "bold" | "normal" | null | undefined;
3702
+ lineHeight?: number | null | undefined;
3703
+ letterSpacing?: number | null | undefined;
3583
3704
  textAlign?: "right" | "left" | "center" | null | undefined;
3584
3705
  padding?: {
3585
3706
  top: number;
@@ -3619,6 +3740,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3619
3740
  fontSize?: number | null | undefined;
3620
3741
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3621
3742
  fontWeight?: "bold" | "normal" | null | undefined;
3743
+ lineHeight?: number | null | undefined;
3744
+ letterSpacing?: number | null | undefined;
3622
3745
  textAlign?: "right" | "left" | "center" | null | undefined;
3623
3746
  padding?: {
3624
3747
  top: number;
@@ -3642,6 +3765,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3642
3765
  fontSize?: number | null | undefined;
3643
3766
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3644
3767
  fontWeight?: "bold" | "normal" | null | undefined;
3768
+ lineHeight?: number | null | undefined;
3769
+ letterSpacing?: number | null | undefined;
3645
3770
  textAlign?: "right" | "left" | "center" | null | undefined;
3646
3771
  padding?: {
3647
3772
  top: number;
@@ -3700,11 +3825,11 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3700
3825
  lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3701
3826
  lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3702
3827
  }, "strip", z.ZodTypeAny, {
3703
- lineColor?: string | null | undefined;
3704
3828
  lineHeight?: number | null | undefined;
3705
- }, {
3706
3829
  lineColor?: string | null | undefined;
3830
+ }, {
3707
3831
  lineHeight?: number | null | undefined;
3832
+ lineColor?: string | null | undefined;
3708
3833
  }>>>;
3709
3834
  }, "strip", z.ZodTypeAny, {
3710
3835
  style?: {
@@ -3717,8 +3842,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3717
3842
  } | null | undefined;
3718
3843
  } | null | undefined;
3719
3844
  props?: {
3720
- lineColor?: string | null | undefined;
3721
3845
  lineHeight?: number | null | undefined;
3846
+ lineColor?: string | null | undefined;
3722
3847
  } | null | undefined;
3723
3848
  }, {
3724
3849
  style?: {
@@ -3731,18 +3856,21 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3731
3856
  } | null | undefined;
3732
3857
  } | null | undefined;
3733
3858
  props?: {
3734
- lineColor?: string | null | undefined;
3735
3859
  lineHeight?: number | null | undefined;
3860
+ lineColor?: string | null | undefined;
3736
3861
  } | null | undefined;
3737
3862
  }>;
3738
3863
  Heading: z.ZodObject<{
3739
3864
  props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3740
3865
  text: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3741
3866
  level: z.ZodNullable<z.ZodOptional<z.ZodEnum<["h1", "h2", "h3"]>>>;
3867
+ markdown: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3742
3868
  }, "strip", z.ZodTypeAny, {
3869
+ markdown?: boolean | null | undefined;
3743
3870
  text?: string | null | undefined;
3744
3871
  level?: "h1" | "h2" | "h3" | null | undefined;
3745
3872
  }, {
3873
+ markdown?: boolean | null | undefined;
3746
3874
  text?: string | null | undefined;
3747
3875
  level?: "h1" | "h2" | "h3" | null | undefined;
3748
3876
  }>>>;
@@ -3751,6 +3879,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3751
3879
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3752
3880
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
3753
3881
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
3882
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3883
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
3754
3884
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
3755
3885
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3756
3886
  top: z.ZodNumber;
@@ -3773,6 +3903,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3773
3903
  backgroundColor?: string | null | undefined;
3774
3904
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3775
3905
  fontWeight?: "bold" | "normal" | null | undefined;
3906
+ lineHeight?: number | null | undefined;
3907
+ letterSpacing?: number | null | undefined;
3776
3908
  textAlign?: "right" | "left" | "center" | null | undefined;
3777
3909
  padding?: {
3778
3910
  top: number;
@@ -3785,6 +3917,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3785
3917
  backgroundColor?: string | null | undefined;
3786
3918
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3787
3919
  fontWeight?: "bold" | "normal" | null | undefined;
3920
+ lineHeight?: number | null | undefined;
3921
+ letterSpacing?: number | null | undefined;
3788
3922
  textAlign?: "right" | "left" | "center" | null | undefined;
3789
3923
  padding?: {
3790
3924
  top: number;
@@ -3799,6 +3933,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3799
3933
  backgroundColor?: string | null | undefined;
3800
3934
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3801
3935
  fontWeight?: "bold" | "normal" | null | undefined;
3936
+ lineHeight?: number | null | undefined;
3937
+ letterSpacing?: number | null | undefined;
3802
3938
  textAlign?: "right" | "left" | "center" | null | undefined;
3803
3939
  padding?: {
3804
3940
  top: number;
@@ -3808,6 +3944,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3808
3944
  } | null | undefined;
3809
3945
  } | null | undefined;
3810
3946
  props?: {
3947
+ markdown?: boolean | null | undefined;
3811
3948
  text?: string | null | undefined;
3812
3949
  level?: "h1" | "h2" | "h3" | null | undefined;
3813
3950
  } | null | undefined;
@@ -3817,6 +3954,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3817
3954
  backgroundColor?: string | null | undefined;
3818
3955
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
3819
3956
  fontWeight?: "bold" | "normal" | null | undefined;
3957
+ lineHeight?: number | null | undefined;
3958
+ letterSpacing?: number | null | undefined;
3820
3959
  textAlign?: "right" | "left" | "center" | null | undefined;
3821
3960
  padding?: {
3822
3961
  top: number;
@@ -3826,6 +3965,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
3826
3965
  } | null | undefined;
3827
3966
  } | null | undefined;
3828
3967
  props?: {
3968
+ markdown?: boolean | null | undefined;
3829
3969
  text?: string | null | undefined;
3830
3970
  level?: "h1" | "h2" | "h3" | null | undefined;
3831
3971
  } | null | undefined;
@@ -4044,6 +4184,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
4044
4184
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4045
4185
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
4046
4186
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
4187
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4188
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4047
4189
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
4048
4190
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4049
4191
  top: z.ZodNumber;
@@ -4067,6 +4209,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
4067
4209
  fontSize?: number | null | undefined;
4068
4210
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4069
4211
  fontWeight?: "bold" | "normal" | null | undefined;
4212
+ lineHeight?: number | null | undefined;
4213
+ letterSpacing?: number | null | undefined;
4070
4214
  textAlign?: "right" | "left" | "center" | null | undefined;
4071
4215
  padding?: {
4072
4216
  top: number;
@@ -4080,6 +4224,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
4080
4224
  fontSize?: number | null | undefined;
4081
4225
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4082
4226
  fontWeight?: "bold" | "normal" | null | undefined;
4227
+ lineHeight?: number | null | undefined;
4228
+ letterSpacing?: number | null | undefined;
4083
4229
  textAlign?: "right" | "left" | "center" | null | undefined;
4084
4230
  padding?: {
4085
4231
  top: number;
@@ -4105,6 +4251,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
4105
4251
  fontSize?: number | null | undefined;
4106
4252
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4107
4253
  fontWeight?: "bold" | "normal" | null | undefined;
4254
+ lineHeight?: number | null | undefined;
4255
+ letterSpacing?: number | null | undefined;
4108
4256
  textAlign?: "right" | "left" | "center" | null | undefined;
4109
4257
  padding?: {
4110
4258
  top: number;
@@ -4124,6 +4272,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
4124
4272
  fontSize?: number | null | undefined;
4125
4273
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4126
4274
  fontWeight?: "bold" | "normal" | null | undefined;
4275
+ lineHeight?: number | null | undefined;
4276
+ letterSpacing?: number | null | undefined;
4127
4277
  textAlign?: "right" | "left" | "center" | null | undefined;
4128
4278
  padding?: {
4129
4279
  top: number;
@@ -4554,12 +4704,15 @@ declare function ContainerReader({ style, props }: ContainerProps): React.JSX.El
4554
4704
  declare const TemplateVariableSchema: z.ZodObject<{
4555
4705
  name: z.ZodString;
4556
4706
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4707
+ sampleValue: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4557
4708
  }, "strip", z.ZodTypeAny, {
4558
4709
  name: string;
4559
4710
  description?: string | null | undefined;
4711
+ sampleValue?: string | null | undefined;
4560
4712
  }, {
4561
4713
  name: string;
4562
4714
  description?: string | null | undefined;
4715
+ sampleValue?: string | null | undefined;
4563
4716
  }>;
4564
4717
  declare const EmailLayoutPropsSchema: z.ZodObject<{
4565
4718
  backdropColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4574,12 +4727,15 @@ declare const EmailLayoutPropsSchema: z.ZodObject<{
4574
4727
  variables: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
4575
4728
  name: z.ZodString;
4576
4729
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4730
+ sampleValue: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4577
4731
  }, "strip", z.ZodTypeAny, {
4578
4732
  name: string;
4579
4733
  description?: string | null | undefined;
4734
+ sampleValue?: string | null | undefined;
4580
4735
  }, {
4581
4736
  name: string;
4582
4737
  description?: string | null | undefined;
4738
+ sampleValue?: string | null | undefined;
4583
4739
  }>, "many">>>;
4584
4740
  }, "strip", z.ZodTypeAny, {
4585
4741
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -4594,6 +4750,7 @@ declare const EmailLayoutPropsSchema: z.ZodObject<{
4594
4750
  variables?: {
4595
4751
  name: string;
4596
4752
  description?: string | null | undefined;
4753
+ sampleValue?: string | null | undefined;
4597
4754
  }[] | null | undefined;
4598
4755
  }, {
4599
4756
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -4608,6 +4765,7 @@ declare const EmailLayoutPropsSchema: z.ZodObject<{
4608
4765
  variables?: {
4609
4766
  name: string;
4610
4767
  description?: string | null | undefined;
4768
+ sampleValue?: string | null | undefined;
4611
4769
  }[] | null | undefined;
4612
4770
  }>;
4613
4771
  type EmailLayoutProps = z.infer<typeof EmailLayoutPropsSchema>;
@@ -4708,6 +4866,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
4708
4866
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4709
4867
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
4710
4868
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
4869
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4870
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
4711
4871
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
4712
4872
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4713
4873
  top: z.ZodNumber;
@@ -4730,6 +4890,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
4730
4890
  fontSize?: number | null | undefined;
4731
4891
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4732
4892
  fontWeight?: "bold" | "normal" | null | undefined;
4893
+ lineHeight?: number | null | undefined;
4894
+ letterSpacing?: number | null | undefined;
4733
4895
  textAlign?: "right" | "left" | "center" | null | undefined;
4734
4896
  padding?: {
4735
4897
  top: number;
@@ -4742,6 +4904,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
4742
4904
  fontSize?: number | null | undefined;
4743
4905
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4744
4906
  fontWeight?: "bold" | "normal" | null | undefined;
4907
+ lineHeight?: number | null | undefined;
4908
+ letterSpacing?: number | null | undefined;
4745
4909
  textAlign?: "right" | "left" | "center" | null | undefined;
4746
4910
  padding?: {
4747
4911
  top: number;
@@ -4781,6 +4945,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
4781
4945
  fontSize?: number | null | undefined;
4782
4946
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4783
4947
  fontWeight?: "bold" | "normal" | null | undefined;
4948
+ lineHeight?: number | null | undefined;
4949
+ letterSpacing?: number | null | undefined;
4784
4950
  textAlign?: "right" | "left" | "center" | null | undefined;
4785
4951
  padding?: {
4786
4952
  top: number;
@@ -4804,6 +4970,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
4804
4970
  fontSize?: number | null | undefined;
4805
4971
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
4806
4972
  fontWeight?: "bold" | "normal" | null | undefined;
4973
+ lineHeight?: number | null | undefined;
4974
+ letterSpacing?: number | null | undefined;
4807
4975
  textAlign?: "right" | "left" | "center" | null | undefined;
4808
4976
  padding?: {
4809
4977
  top: number;
@@ -5038,10 +5206,13 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5038
5206
  props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
5039
5207
  text: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5040
5208
  level: z.ZodNullable<z.ZodOptional<z.ZodEnum<["h1", "h2", "h3"]>>>;
5209
+ markdown: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
5041
5210
  }, "strip", z.ZodTypeAny, {
5211
+ markdown?: boolean | null | undefined;
5042
5212
  text?: string | null | undefined;
5043
5213
  level?: "h1" | "h2" | "h3" | null | undefined;
5044
5214
  }, {
5215
+ markdown?: boolean | null | undefined;
5045
5216
  text?: string | null | undefined;
5046
5217
  level?: "h1" | "h2" | "h3" | null | undefined;
5047
5218
  }>>>;
@@ -5050,6 +5221,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5050
5221
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5051
5222
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
5052
5223
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
5224
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5225
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5053
5226
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
5054
5227
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
5055
5228
  top: z.ZodNumber;
@@ -5072,6 +5245,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5072
5245
  backgroundColor?: string | null | undefined;
5073
5246
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5074
5247
  fontWeight?: "bold" | "normal" | null | undefined;
5248
+ lineHeight?: number | null | undefined;
5249
+ letterSpacing?: number | null | undefined;
5075
5250
  textAlign?: "right" | "left" | "center" | null | undefined;
5076
5251
  padding?: {
5077
5252
  top: number;
@@ -5084,6 +5259,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5084
5259
  backgroundColor?: string | null | undefined;
5085
5260
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5086
5261
  fontWeight?: "bold" | "normal" | null | undefined;
5262
+ lineHeight?: number | null | undefined;
5263
+ letterSpacing?: number | null | undefined;
5087
5264
  textAlign?: "right" | "left" | "center" | null | undefined;
5088
5265
  padding?: {
5089
5266
  top: number;
@@ -5098,6 +5275,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5098
5275
  backgroundColor?: string | null | undefined;
5099
5276
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5100
5277
  fontWeight?: "bold" | "normal" | null | undefined;
5278
+ lineHeight?: number | null | undefined;
5279
+ letterSpacing?: number | null | undefined;
5101
5280
  textAlign?: "right" | "left" | "center" | null | undefined;
5102
5281
  padding?: {
5103
5282
  top: number;
@@ -5107,6 +5286,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5107
5286
  } | null | undefined;
5108
5287
  } | null | undefined;
5109
5288
  props?: {
5289
+ markdown?: boolean | null | undefined;
5110
5290
  text?: string | null | undefined;
5111
5291
  level?: "h1" | "h2" | "h3" | null | undefined;
5112
5292
  } | null | undefined;
@@ -5116,6 +5296,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5116
5296
  backgroundColor?: string | null | undefined;
5117
5297
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5118
5298
  fontWeight?: "bold" | "normal" | null | undefined;
5299
+ lineHeight?: number | null | undefined;
5300
+ letterSpacing?: number | null | undefined;
5119
5301
  textAlign?: "right" | "left" | "center" | null | undefined;
5120
5302
  padding?: {
5121
5303
  top: number;
@@ -5125,6 +5307,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5125
5307
  } | null | undefined;
5126
5308
  } | null | undefined;
5127
5309
  props?: {
5310
+ markdown?: boolean | null | undefined;
5128
5311
  text?: string | null | undefined;
5129
5312
  level?: "h1" | "h2" | "h3" | null | undefined;
5130
5313
  } | null | undefined;
@@ -5326,6 +5509,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5326
5509
  fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5327
5510
  fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
5328
5511
  fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
5512
+ lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5513
+ letterSpacing: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5329
5514
  textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
5330
5515
  padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
5331
5516
  top: z.ZodNumber;
@@ -5349,6 +5534,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5349
5534
  fontSize?: number | null | undefined;
5350
5535
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5351
5536
  fontWeight?: "bold" | "normal" | null | undefined;
5537
+ lineHeight?: number | null | undefined;
5538
+ letterSpacing?: number | null | undefined;
5352
5539
  textAlign?: "right" | "left" | "center" | null | undefined;
5353
5540
  padding?: {
5354
5541
  top: number;
@@ -5362,6 +5549,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5362
5549
  fontSize?: number | null | undefined;
5363
5550
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5364
5551
  fontWeight?: "bold" | "normal" | null | undefined;
5552
+ lineHeight?: number | null | undefined;
5553
+ letterSpacing?: number | null | undefined;
5365
5554
  textAlign?: "right" | "left" | "center" | null | undefined;
5366
5555
  padding?: {
5367
5556
  top: number;
@@ -5387,6 +5576,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5387
5576
  fontSize?: number | null | undefined;
5388
5577
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5389
5578
  fontWeight?: "bold" | "normal" | null | undefined;
5579
+ lineHeight?: number | null | undefined;
5580
+ letterSpacing?: number | null | undefined;
5390
5581
  textAlign?: "right" | "left" | "center" | null | undefined;
5391
5582
  padding?: {
5392
5583
  top: number;
@@ -5406,6 +5597,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5406
5597
  fontSize?: number | null | undefined;
5407
5598
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
5408
5599
  fontWeight?: "bold" | "normal" | null | undefined;
5600
+ lineHeight?: number | null | undefined;
5601
+ letterSpacing?: number | null | undefined;
5409
5602
  textAlign?: "right" | "left" | "center" | null | undefined;
5410
5603
  padding?: {
5411
5604
  top: number;
@@ -5432,12 +5625,15 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5432
5625
  variables: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
5433
5626
  name: z.ZodString;
5434
5627
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5628
+ sampleValue: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5435
5629
  }, "strip", z.ZodTypeAny, {
5436
5630
  name: string;
5437
5631
  description?: string | null | undefined;
5632
+ sampleValue?: string | null | undefined;
5438
5633
  }, {
5439
5634
  name: string;
5440
5635
  description?: string | null | undefined;
5636
+ sampleValue?: string | null | undefined;
5441
5637
  }>, "many">>>;
5442
5638
  }, "strip", z.ZodTypeAny, {
5443
5639
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -5452,6 +5648,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5452
5648
  variables?: {
5453
5649
  name: string;
5454
5650
  description?: string | null | undefined;
5651
+ sampleValue?: string | null | undefined;
5455
5652
  }[] | null | undefined;
5456
5653
  }, {
5457
5654
  fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
@@ -5466,6 +5663,7 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5466
5663
  variables?: {
5467
5664
  name: string;
5468
5665
  description?: string | null | undefined;
5666
+ sampleValue?: string | null | undefined;
5469
5667
  }[] | null | undefined;
5470
5668
  }>;
5471
5669
  Spacer: z.ZodObject<{
@@ -5525,11 +5723,11 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5525
5723
  lineColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5526
5724
  lineHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
5527
5725
  }, "strip", z.ZodTypeAny, {
5528
- lineColor?: string | null | undefined;
5529
5726
  lineHeight?: number | null | undefined;
5530
- }, {
5531
5727
  lineColor?: string | null | undefined;
5728
+ }, {
5532
5729
  lineHeight?: number | null | undefined;
5730
+ lineColor?: string | null | undefined;
5533
5731
  }>>>;
5534
5732
  }, "strip", z.ZodTypeAny, {
5535
5733
  style?: {
@@ -5542,8 +5740,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5542
5740
  } | null | undefined;
5543
5741
  } | null | undefined;
5544
5742
  props?: {
5545
- lineColor?: string | null | undefined;
5546
5743
  lineHeight?: number | null | undefined;
5744
+ lineColor?: string | null | undefined;
5547
5745
  } | null | undefined;
5548
5746
  }, {
5549
5747
  style?: {
@@ -5556,8 +5754,8 @@ declare const EditorBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
5556
5754
  } | null | undefined;
5557
5755
  } | null | undefined;
5558
5756
  props?: {
5559
- lineColor?: string | null | undefined;
5560
5757
  lineHeight?: number | null | undefined;
5758
+ lineColor?: string | null | undefined;
5561
5759
  } | null | undefined;
5562
5760
  }>;
5563
5761
  Signature: z.ZodObject<{
@@ -5712,6 +5910,8 @@ type TEditorConfiguration = Record<string, TEditorBlock>;
5712
5910
  type TemplateVariable = {
5713
5911
  name: string;
5714
5912
  description?: string;
5913
+ /** Optional sample value used by the editor's Preview mode to substitute `{{name}}` tokens. */
5914
+ sampleValue?: string;
5715
5915
  };
5716
5916
  /**
5717
5917
  * Payload passed to `onSave` / `saveAs`. The editor renders body HTML and
@@ -5748,6 +5948,26 @@ interface EmailEditorProviderProps {
5748
5948
  declare const EmailEditorProvider: React.FC<EmailEditorProviderProps>;
5749
5949
  declare const useEmailEditor: () => EmailEditorContextType;
5750
5950
 
5951
+ type UploadedImage = {
5952
+ url: string;
5953
+ width?: number;
5954
+ height?: number;
5955
+ alt?: string;
5956
+ };
5957
+ type LibraryImage = {
5958
+ url: string;
5959
+ thumbnailUrl?: string;
5960
+ width?: number;
5961
+ height?: number;
5962
+ alt?: string;
5963
+ uploadedAt?: string;
5964
+ };
5965
+ type ImageCallbacks = {
5966
+ uploadImage?: (file: File) => Promise<UploadedImage>;
5967
+ loadImages?: () => Promise<LibraryImage[]>;
5968
+ deleteImage?: (url: string) => Promise<void>;
5969
+ };
5970
+
5751
5971
  /**
5752
5972
  * Wraps a raw HTML string in an editor config with an EmailLayout root + one Html block.
5753
5973
  */
@@ -5860,6 +6080,22 @@ interface EmailEditorProps {
5860
6080
  id: string;
5861
6081
  slug: string;
5862
6082
  }>;
6083
+ /**
6084
+ * Uploads a single image file and returns its public URL plus optional
6085
+ * intrinsic dimensions. When omitted, upload UI (button, drag-drop,
6086
+ * paste-to-insert) is hidden; URL paste still works.
6087
+ */
6088
+ uploadImage?: (file: File) => Promise<UploadedImage>;
6089
+ /**
6090
+ * Returns previously uploaded images for the library picker. When omitted,
6091
+ * the "Pick from library" button is hidden.
6092
+ */
6093
+ loadImages?: () => Promise<LibraryImage[]>;
6094
+ /**
6095
+ * Deletes an image from the library by URL. When omitted, the delete button
6096
+ * on library rows is hidden.
6097
+ */
6098
+ deleteImage?: (url: string) => Promise<void>;
5863
6099
  /**
5864
6100
  * Optional theme override. If not provided, the default theme will be used.
5865
6101
  * This allows for easy styling without requiring a separate ThemeProvider.
@@ -5868,4 +6104,4 @@ interface EmailEditorProps {
5868
6104
  }
5869
6105
  declare const EmailEditor: React.ForwardRefExoticComponent<EmailEditorProps & React.RefAttributes<EmailEditorRef>>;
5870
6106
 
5871
- export { Avatar, AvatarProps, AvatarPropsDefaults, AvatarPropsSchema, BlockConfiguration, Button, ButtonProps, ButtonPropsDefaults, ButtonPropsSchema, ColumnsContainer, ColumnsContainerProps$1 as ColumnsContainerProps, ColumnsContainerPropsSchema$1 as ColumnsContainerPropsSchema, ColumnsContainerReader, Container, ContainerProps$1 as ContainerProps, ContainerPropsSchema$1 as ContainerPropsSchema, ContainerReader, Divider, DividerProps, DividerPropsDefaults, DividerPropsSchema, DocumentBlocksDictionary, EmailEditor, type EmailEditorContextType, type EmailEditorProps, EmailEditorProvider, type EmailEditorProviderProps, type EmailEditorRef, EmailLayoutPropsSchema, EmailLayoutReader, EmailMarkdown, Heading, HeadingProps, HeadingPropsDefaults, HeadingPropsSchema, Html, HtmlProps, HtmlPropsSchema, Image, ImageProps, ImagePropsSchema, Reader, ReaderBlock, ReaderBlockSchema, ReaderDocumentSchema, type SavePayload, Signature, SignatureProps, SignaturePropsDefaults, SignaturePropsSchema, Spacer, SpacerProps, SpacerPropsDefaults, SpacerPropsSchema, type TReaderBlock, type TReaderBlockProps, type TReaderDocument, type TReaderProps, type TemplateKind, type TemplateListItem, TemplateVariableSchema, Text, TextProps, TextPropsDefaults, TextPropsSchema, buildBlockComponent, buildBlockConfigurationDictionary, buildBlockConfigurationSchema, htmlToEditorConfig, renderToStaticMarkup, renderToText, THEME as theme, useEmailEditor };
6107
+ export { Avatar, AvatarProps, AvatarPropsDefaults, AvatarPropsSchema, BlockConfiguration, Button, ButtonProps, ButtonPropsDefaults, ButtonPropsSchema, ColumnsContainer, ColumnsContainerProps$1 as ColumnsContainerProps, ColumnsContainerPropsSchema$1 as ColumnsContainerPropsSchema, ColumnsContainerReader, Container, ContainerProps$1 as ContainerProps, ContainerPropsSchema$1 as ContainerPropsSchema, ContainerReader, Divider, DividerProps, DividerPropsDefaults, DividerPropsSchema, DocumentBlocksDictionary, EmailEditor, type EmailEditorContextType, type EmailEditorProps, EmailEditorProvider, type EmailEditorProviderProps, type EmailEditorRef, EmailLayoutPropsSchema, EmailLayoutReader, EmailMarkdown, Heading, HeadingProps, HeadingPropsDefaults, HeadingPropsSchema, Html, HtmlProps, HtmlPropsSchema, Image, type ImageCallbacks, ImageProps, ImagePropsSchema, type LibraryImage, Reader, ReaderBlock, ReaderBlockSchema, ReaderDocumentSchema, type SavePayload, Signature, SignatureProps, SignaturePropsDefaults, SignaturePropsSchema, Spacer, SpacerProps, SpacerPropsDefaults, SpacerPropsSchema, type TReaderBlock, type TReaderBlockProps, type TReaderDocument, type TReaderProps, type TemplateKind, type TemplateListItem, TemplateVariableSchema, Text, TextProps, TextPropsDefaults, TextPropsSchema, type UploadedImage, buildBlockComponent, buildBlockConfigurationDictionary, buildBlockConfigurationSchema, htmlToEditorConfig, renderToStaticMarkup, renderToText, THEME as theme, useEmailEditor };