@json-to-office/core-docx 2.4.0 → 2.6.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.
Files changed (50) hide show
  1. package/dist/blocks/index.d.ts +58 -0
  2. package/dist/blocks/index.d.ts.map +1 -0
  3. package/dist/blocks/keyTakeaways.d.ts +20 -0
  4. package/dist/blocks/keyTakeaways.d.ts.map +1 -0
  5. package/dist/blocks/types.d.ts +15 -0
  6. package/dist/blocks/types.d.ts.map +1 -0
  7. package/dist/components/highcharts.d.ts +2 -2
  8. package/dist/components/highcharts.d.ts.map +1 -1
  9. package/dist/core/componentTransform.d.ts +8 -0
  10. package/dist/core/componentTransform.d.ts.map +1 -1
  11. package/dist/core/desugarExternals.d.ts +2 -0
  12. package/dist/core/desugarExternals.d.ts.map +1 -1
  13. package/dist/core/generateFromIr.d.ts.map +1 -1
  14. package/dist/core/generationContext.d.ts.map +1 -1
  15. package/dist/index.d.ts +3 -1
  16. package/dist/index.d.ts.map +1 -1
  17. package/dist/index.js +1027 -170
  18. package/dist/index.js.map +1 -1
  19. package/dist/ir/compiler.d.ts.map +1 -1
  20. package/dist/plugin/example/index.js +1010 -182
  21. package/dist/plugin/example/index.js.map +1 -1
  22. package/dist/quality/facts.d.ts +23 -1
  23. package/dist/quality/facts.d.ts.map +1 -1
  24. package/dist/quality/rules.d.ts +6 -0
  25. package/dist/quality/rules.d.ts.map +1 -1
  26. package/dist/renderers/docxjs/emit.d.ts.map +1 -1
  27. package/dist/renderers/docxjs/index.d.ts.map +1 -1
  28. package/dist/renderers/office-open/index.d.ts.map +1 -1
  29. package/dist/styles/index.d.ts +1 -1
  30. package/dist/styles/index.d.ts.map +1 -1
  31. package/dist/styles/themeToStyles.d.ts.map +1 -1
  32. package/dist/styles/utils/colorUtils.d.ts +12 -1
  33. package/dist/styles/utils/colorUtils.d.ts.map +1 -1
  34. package/dist/styles/utils/styleHelpers.d.ts +2 -0
  35. package/dist/styles/utils/styleHelpers.d.ts.map +1 -1
  36. package/dist/templates/themes/consulting.docx.theme.json +307 -0
  37. package/dist/templates/themes/index.d.ts +3649 -666
  38. package/dist/templates/themes/index.d.ts.map +1 -1
  39. package/dist/themes/defaults.d.ts +183 -180
  40. package/dist/themes/defaults.d.ts.map +1 -1
  41. package/dist/themes/design-system.d.ts +4 -0
  42. package/dist/themes/design-system.d.ts.map +1 -0
  43. package/dist/themes/overrides.d.ts +2 -1
  44. package/dist/themes/overrides.d.ts.map +1 -1
  45. package/dist/tsconfig.tsbuildinfo +1 -1
  46. package/dist/utils/normalizeTextCase.d.ts +15 -0
  47. package/dist/utils/normalizeTextCase.d.ts.map +1 -0
  48. package/dist/utils/packageDocument.d.ts +2 -0
  49. package/dist/utils/packageDocument.d.ts.map +1 -1
  50. package/package.json +4 -4
@@ -157,24 +157,7 @@ export declare function isCompleteTheme(theme: unknown): theme is ThemeConfigJso
157
157
  /**
158
158
  * Safe getter for theme colors with defaults
159
159
  */
160
- export declare function getThemeColors(theme: Partial<ThemeConfigJson>): {
161
- accent4?: string | undefined;
162
- accent5?: string | undefined;
163
- accent6?: string | undefined;
164
- primary: string;
165
- secondary: string;
166
- accent: string;
167
- text: string;
168
- background: string;
169
- border: string;
170
- textPrimary: string;
171
- textSecondary: string;
172
- textMuted: string;
173
- borderPrimary: string;
174
- borderSecondary: string;
175
- backgroundPrimary: string;
176
- backgroundSecondary: string;
177
- };
160
+ export declare function getThemeColors(theme: Partial<ThemeConfigJson>): Record<string, string | undefined>;
178
161
  /**
179
162
  * Safe getter for theme fonts with defaults
180
163
  */
@@ -183,6 +166,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
183
166
  family: string;
184
167
  size: number;
185
168
  } | {
169
+ spacing?: {
170
+ before?: number | undefined;
171
+ after?: number | undefined;
172
+ } | undefined;
173
+ case?: "none" | "upper" | "smallCaps" | undefined;
186
174
  size?: number | undefined;
187
175
  color?: string | undefined;
188
176
  bold?: boolean | undefined;
@@ -193,10 +181,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
193
181
  value?: number | undefined;
194
182
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
195
183
  } | undefined;
196
- spacing?: {
197
- before?: number | undefined;
198
- after?: number | undefined;
199
- } | undefined;
200
184
  characterSpacing?: {
201
185
  type: "condensed" | "expanded";
202
186
  value: number;
@@ -208,6 +192,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
208
192
  family: string;
209
193
  size: number;
210
194
  } | {
195
+ spacing?: {
196
+ before?: number | undefined;
197
+ after?: number | undefined;
198
+ } | undefined;
199
+ case?: "none" | "upper" | "smallCaps" | undefined;
211
200
  size?: number | undefined;
212
201
  color?: string | undefined;
213
202
  bold?: boolean | undefined;
@@ -218,10 +207,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
218
207
  value?: number | undefined;
219
208
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
220
209
  } | undefined;
221
- spacing?: {
222
- before?: number | undefined;
223
- after?: number | undefined;
224
- } | undefined;
225
210
  characterSpacing?: {
226
211
  type: "condensed" | "expanded";
227
212
  value: number;
@@ -233,6 +218,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
233
218
  family: string;
234
219
  size: number;
235
220
  } | {
221
+ spacing?: {
222
+ before?: number | undefined;
223
+ after?: number | undefined;
224
+ } | undefined;
225
+ case?: "none" | "upper" | "smallCaps" | undefined;
236
226
  size?: number | undefined;
237
227
  color?: string | undefined;
238
228
  bold?: boolean | undefined;
@@ -243,10 +233,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
243
233
  value?: number | undefined;
244
234
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
245
235
  } | undefined;
246
- spacing?: {
247
- before?: number | undefined;
248
- after?: number | undefined;
249
- } | undefined;
250
236
  characterSpacing?: {
251
237
  type: "condensed" | "expanded";
252
238
  value: number;
@@ -258,6 +244,11 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
258
244
  family: string;
259
245
  size: number;
260
246
  } | {
247
+ spacing?: {
248
+ before?: number | undefined;
249
+ after?: number | undefined;
250
+ } | undefined;
251
+ case?: "none" | "upper" | "smallCaps" | undefined;
261
252
  size?: number | undefined;
262
253
  color?: string | undefined;
263
254
  bold?: boolean | undefined;
@@ -268,10 +259,6 @@ export declare function getThemeFonts(theme: Partial<ThemeConfigJson>): {
268
259
  value?: number | undefined;
269
260
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
270
261
  } | undefined;
271
- spacing?: {
272
- before?: number | undefined;
273
- after?: number | undefined;
274
- } | undefined;
275
262
  characterSpacing?: {
276
263
  type: "condensed" | "expanded";
277
264
  value: number;
@@ -297,6 +284,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
297
284
  after: number;
298
285
  };
299
286
  } | {
287
+ spacing?: {
288
+ before?: number | undefined;
289
+ after?: number | undefined;
290
+ } | undefined;
291
+ case?: "none" | "upper" | "smallCaps" | undefined;
300
292
  size?: number | undefined;
301
293
  color?: string | undefined;
302
294
  bold?: boolean | undefined;
@@ -307,10 +299,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
307
299
  value?: number | undefined;
308
300
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
309
301
  } | undefined;
310
- spacing?: {
311
- before?: number | undefined;
312
- after?: number | undefined;
313
- } | undefined;
314
302
  characterSpacing?: {
315
303
  type: "condensed" | "expanded";
316
304
  value: number;
@@ -329,31 +317,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
329
317
  space?: number | undefined;
330
318
  size: number;
331
319
  color: string;
332
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
320
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
333
321
  } | undefined;
334
322
  top?: {
335
323
  space?: number | undefined;
336
324
  size: number;
337
325
  color: string;
338
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
326
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
339
327
  } | undefined;
340
328
  bottom?: {
341
329
  space?: number | undefined;
342
330
  size: number;
343
331
  color: string;
344
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
332
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
345
333
  } | undefined;
346
334
  right?: {
347
335
  space?: number | undefined;
348
336
  size: number;
349
337
  color: string;
350
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
338
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
351
339
  } | undefined;
352
340
  between?: {
353
341
  space?: number | undefined;
354
342
  size: number;
355
343
  color: string;
356
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
344
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
357
345
  } | undefined;
358
346
  } | undefined;
359
347
  indent?: {
@@ -372,6 +360,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
372
360
  after: number;
373
361
  };
374
362
  } | {
363
+ spacing?: {
364
+ before?: number | undefined;
365
+ after?: number | undefined;
366
+ } | undefined;
367
+ case?: "none" | "upper" | "smallCaps" | undefined;
375
368
  size?: number | undefined;
376
369
  color?: string | undefined;
377
370
  bold?: boolean | undefined;
@@ -382,10 +375,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
382
375
  value?: number | undefined;
383
376
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
384
377
  } | undefined;
385
- spacing?: {
386
- before?: number | undefined;
387
- after?: number | undefined;
388
- } | undefined;
389
378
  characterSpacing?: {
390
379
  type: "condensed" | "expanded";
391
380
  value: number;
@@ -404,31 +393,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
404
393
  space?: number | undefined;
405
394
  size: number;
406
395
  color: string;
407
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
396
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
408
397
  } | undefined;
409
398
  top?: {
410
399
  space?: number | undefined;
411
400
  size: number;
412
401
  color: string;
413
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
402
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
414
403
  } | undefined;
415
404
  bottom?: {
416
405
  space?: number | undefined;
417
406
  size: number;
418
407
  color: string;
419
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
408
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
420
409
  } | undefined;
421
410
  right?: {
422
411
  space?: number | undefined;
423
412
  size: number;
424
413
  color: string;
425
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
414
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
426
415
  } | undefined;
427
416
  between?: {
428
417
  space?: number | undefined;
429
418
  size: number;
430
419
  color: string;
431
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
420
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
432
421
  } | undefined;
433
422
  } | undefined;
434
423
  indent?: {
@@ -447,6 +436,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
447
436
  after: number;
448
437
  };
449
438
  } | {
439
+ spacing?: {
440
+ before?: number | undefined;
441
+ after?: number | undefined;
442
+ } | undefined;
443
+ case?: "none" | "upper" | "smallCaps" | undefined;
450
444
  size?: number | undefined;
451
445
  color?: string | undefined;
452
446
  bold?: boolean | undefined;
@@ -457,10 +451,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
457
451
  value?: number | undefined;
458
452
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
459
453
  } | undefined;
460
- spacing?: {
461
- before?: number | undefined;
462
- after?: number | undefined;
463
- } | undefined;
464
454
  characterSpacing?: {
465
455
  type: "condensed" | "expanded";
466
456
  value: number;
@@ -479,31 +469,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
479
469
  space?: number | undefined;
480
470
  size: number;
481
471
  color: string;
482
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
472
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
483
473
  } | undefined;
484
474
  top?: {
485
475
  space?: number | undefined;
486
476
  size: number;
487
477
  color: string;
488
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
478
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
489
479
  } | undefined;
490
480
  bottom?: {
491
481
  space?: number | undefined;
492
482
  size: number;
493
483
  color: string;
494
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
484
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
495
485
  } | undefined;
496
486
  right?: {
497
487
  space?: number | undefined;
498
488
  size: number;
499
489
  color: string;
500
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
490
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
501
491
  } | undefined;
502
492
  between?: {
503
493
  space?: number | undefined;
504
494
  size: number;
505
495
  color: string;
506
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
496
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
507
497
  } | undefined;
508
498
  } | undefined;
509
499
  indent?: {
@@ -522,6 +512,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
522
512
  after: number;
523
513
  };
524
514
  } | {
515
+ spacing?: {
516
+ before?: number | undefined;
517
+ after?: number | undefined;
518
+ } | undefined;
519
+ case?: "none" | "upper" | "smallCaps" | undefined;
525
520
  size?: number | undefined;
526
521
  color?: string | undefined;
527
522
  bold?: boolean | undefined;
@@ -532,10 +527,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
532
527
  value?: number | undefined;
533
528
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
534
529
  } | undefined;
535
- spacing?: {
536
- before?: number | undefined;
537
- after?: number | undefined;
538
- } | undefined;
539
530
  characterSpacing?: {
540
531
  type: "condensed" | "expanded";
541
532
  value: number;
@@ -554,31 +545,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
554
545
  space?: number | undefined;
555
546
  size: number;
556
547
  color: string;
557
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
548
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
558
549
  } | undefined;
559
550
  top?: {
560
551
  space?: number | undefined;
561
552
  size: number;
562
553
  color: string;
563
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
554
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
564
555
  } | undefined;
565
556
  bottom?: {
566
557
  space?: number | undefined;
567
558
  size: number;
568
559
  color: string;
569
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
560
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
570
561
  } | undefined;
571
562
  right?: {
572
563
  space?: number | undefined;
573
564
  size: number;
574
565
  color: string;
575
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
566
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
576
567
  } | undefined;
577
568
  between?: {
578
569
  space?: number | undefined;
579
570
  size: number;
580
571
  color: string;
581
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
572
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
582
573
  } | undefined;
583
574
  } | undefined;
584
575
  indent?: {
@@ -597,6 +588,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
597
588
  after: number;
598
589
  };
599
590
  } | {
591
+ spacing?: {
592
+ before?: number | undefined;
593
+ after?: number | undefined;
594
+ } | undefined;
595
+ case?: "none" | "upper" | "smallCaps" | undefined;
600
596
  size?: number | undefined;
601
597
  color?: string | undefined;
602
598
  bold?: boolean | undefined;
@@ -607,10 +603,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
607
603
  value?: number | undefined;
608
604
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
609
605
  } | undefined;
610
- spacing?: {
611
- before?: number | undefined;
612
- after?: number | undefined;
613
- } | undefined;
614
606
  characterSpacing?: {
615
607
  type: "condensed" | "expanded";
616
608
  value: number;
@@ -629,31 +621,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
629
621
  space?: number | undefined;
630
622
  size: number;
631
623
  color: string;
632
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
624
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
633
625
  } | undefined;
634
626
  top?: {
635
627
  space?: number | undefined;
636
628
  size: number;
637
629
  color: string;
638
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
630
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
639
631
  } | undefined;
640
632
  bottom?: {
641
633
  space?: number | undefined;
642
634
  size: number;
643
635
  color: string;
644
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
636
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
645
637
  } | undefined;
646
638
  right?: {
647
639
  space?: number | undefined;
648
640
  size: number;
649
641
  color: string;
650
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
642
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
651
643
  } | undefined;
652
644
  between?: {
653
645
  space?: number | undefined;
654
646
  size: number;
655
647
  color: string;
656
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
648
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
657
649
  } | undefined;
658
650
  } | undefined;
659
651
  indent?: {
@@ -672,6 +664,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
672
664
  after: number;
673
665
  };
674
666
  } | {
667
+ spacing?: {
668
+ before?: number | undefined;
669
+ after?: number | undefined;
670
+ } | undefined;
671
+ case?: "none" | "upper" | "smallCaps" | undefined;
675
672
  size?: number | undefined;
676
673
  color?: string | undefined;
677
674
  bold?: boolean | undefined;
@@ -682,10 +679,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
682
679
  value?: number | undefined;
683
680
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
684
681
  } | undefined;
685
- spacing?: {
686
- before?: number | undefined;
687
- after?: number | undefined;
688
- } | undefined;
689
682
  characterSpacing?: {
690
683
  type: "condensed" | "expanded";
691
684
  value: number;
@@ -704,31 +697,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
704
697
  space?: number | undefined;
705
698
  size: number;
706
699
  color: string;
707
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
700
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
708
701
  } | undefined;
709
702
  top?: {
710
703
  space?: number | undefined;
711
704
  size: number;
712
705
  color: string;
713
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
706
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
714
707
  } | undefined;
715
708
  bottom?: {
716
709
  space?: number | undefined;
717
710
  size: number;
718
711
  color: string;
719
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
712
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
720
713
  } | undefined;
721
714
  right?: {
722
715
  space?: number | undefined;
723
716
  size: number;
724
717
  color: string;
725
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
718
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
726
719
  } | undefined;
727
720
  between?: {
728
721
  space?: number | undefined;
729
722
  size: number;
730
723
  color: string;
731
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
724
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
732
725
  } | undefined;
733
726
  } | undefined;
734
727
  indent?: {
@@ -747,6 +740,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
747
740
  after: number;
748
741
  };
749
742
  } | {
743
+ spacing?: {
744
+ before?: number | undefined;
745
+ after?: number | undefined;
746
+ } | undefined;
747
+ case?: "none" | "upper" | "smallCaps" | undefined;
750
748
  size?: number | undefined;
751
749
  color?: string | undefined;
752
750
  bold?: boolean | undefined;
@@ -757,10 +755,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
757
755
  value?: number | undefined;
758
756
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
759
757
  } | undefined;
760
- spacing?: {
761
- before?: number | undefined;
762
- after?: number | undefined;
763
- } | undefined;
764
758
  characterSpacing?: {
765
759
  type: "condensed" | "expanded";
766
760
  value: number;
@@ -779,31 +773,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
779
773
  space?: number | undefined;
780
774
  size: number;
781
775
  color: string;
782
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
776
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
783
777
  } | undefined;
784
778
  top?: {
785
779
  space?: number | undefined;
786
780
  size: number;
787
781
  color: string;
788
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
782
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
789
783
  } | undefined;
790
784
  bottom?: {
791
785
  space?: number | undefined;
792
786
  size: number;
793
787
  color: string;
794
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
788
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
795
789
  } | undefined;
796
790
  right?: {
797
791
  space?: number | undefined;
798
792
  size: number;
799
793
  color: string;
800
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
794
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
801
795
  } | undefined;
802
796
  between?: {
803
797
  space?: number | undefined;
804
798
  size: number;
805
799
  color: string;
806
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
800
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
807
801
  } | undefined;
808
802
  } | undefined;
809
803
  indent?: {
@@ -813,6 +807,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
813
807
  font?: "body" | "heading" | "mono" | "light" | undefined;
814
808
  };
815
809
  title?: {
810
+ spacing?: {
811
+ before?: number | undefined;
812
+ after?: number | undefined;
813
+ } | undefined;
814
+ case?: "none" | "upper" | "smallCaps" | undefined;
816
815
  size?: number | undefined;
817
816
  color?: string | undefined;
818
817
  bold?: boolean | undefined;
@@ -823,10 +822,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
823
822
  value?: number | undefined;
824
823
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
825
824
  } | undefined;
826
- spacing?: {
827
- before?: number | undefined;
828
- after?: number | undefined;
829
- } | undefined;
830
825
  characterSpacing?: {
831
826
  type: "condensed" | "expanded";
832
827
  value: number;
@@ -845,31 +840,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
845
840
  space?: number | undefined;
846
841
  size: number;
847
842
  color: string;
848
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
843
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
849
844
  } | undefined;
850
845
  top?: {
851
846
  space?: number | undefined;
852
847
  size: number;
853
848
  color: string;
854
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
849
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
855
850
  } | undefined;
856
851
  bottom?: {
857
852
  space?: number | undefined;
858
853
  size: number;
859
854
  color: string;
860
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
855
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
861
856
  } | undefined;
862
857
  right?: {
863
858
  space?: number | undefined;
864
859
  size: number;
865
860
  color: string;
866
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
861
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
867
862
  } | undefined;
868
863
  between?: {
869
864
  space?: number | undefined;
870
865
  size: number;
871
866
  color: string;
872
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
867
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
873
868
  } | undefined;
874
869
  } | undefined;
875
870
  indent?: {
@@ -879,6 +874,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
879
874
  font?: "body" | "heading" | "mono" | "light" | undefined;
880
875
  } | undefined;
881
876
  subtitle?: {
877
+ spacing?: {
878
+ before?: number | undefined;
879
+ after?: number | undefined;
880
+ } | undefined;
881
+ case?: "none" | "upper" | "smallCaps" | undefined;
882
882
  size?: number | undefined;
883
883
  color?: string | undefined;
884
884
  bold?: boolean | undefined;
@@ -889,10 +889,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
889
889
  value?: number | undefined;
890
890
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
891
891
  } | undefined;
892
- spacing?: {
893
- before?: number | undefined;
894
- after?: number | undefined;
895
- } | undefined;
896
892
  characterSpacing?: {
897
893
  type: "condensed" | "expanded";
898
894
  value: number;
@@ -911,31 +907,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
911
907
  space?: number | undefined;
912
908
  size: number;
913
909
  color: string;
914
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
910
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
915
911
  } | undefined;
916
912
  top?: {
917
913
  space?: number | undefined;
918
914
  size: number;
919
915
  color: string;
920
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
916
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
921
917
  } | undefined;
922
918
  bottom?: {
923
919
  space?: number | undefined;
924
920
  size: number;
925
921
  color: string;
926
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
922
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
927
923
  } | undefined;
928
924
  right?: {
929
925
  space?: number | undefined;
930
926
  size: number;
931
927
  color: string;
932
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
928
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
933
929
  } | undefined;
934
930
  between?: {
935
931
  space?: number | undefined;
936
932
  size: number;
937
933
  color: string;
938
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
934
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
939
935
  } | undefined;
940
936
  } | undefined;
941
937
  indent?: {
@@ -945,6 +941,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
945
941
  font?: "body" | "heading" | "mono" | "light" | undefined;
946
942
  } | undefined;
947
943
  TOC1?: {
944
+ spacing?: {
945
+ before?: number | undefined;
946
+ after?: number | undefined;
947
+ } | undefined;
948
+ case?: "none" | "upper" | "smallCaps" | undefined;
948
949
  size?: number | undefined;
949
950
  color?: string | undefined;
950
951
  bold?: boolean | undefined;
@@ -955,10 +956,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
955
956
  value?: number | undefined;
956
957
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
957
958
  } | undefined;
958
- spacing?: {
959
- before?: number | undefined;
960
- after?: number | undefined;
961
- } | undefined;
962
959
  characterSpacing?: {
963
960
  type: "condensed" | "expanded";
964
961
  value: number;
@@ -976,31 +973,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
976
973
  space?: number | undefined;
977
974
  size: number;
978
975
  color: string;
979
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
976
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
980
977
  } | undefined;
981
978
  top?: {
982
979
  space?: number | undefined;
983
980
  size: number;
984
981
  color: string;
985
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
982
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
986
983
  } | undefined;
987
984
  bottom?: {
988
985
  space?: number | undefined;
989
986
  size: number;
990
987
  color: string;
991
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
988
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
992
989
  } | undefined;
993
990
  right?: {
994
991
  space?: number | undefined;
995
992
  size: number;
996
993
  color: string;
997
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
994
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
998
995
  } | undefined;
999
996
  between?: {
1000
997
  space?: number | undefined;
1001
998
  size: number;
1002
999
  color: string;
1003
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1000
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1004
1001
  } | undefined;
1005
1002
  } | undefined;
1006
1003
  indent?: {
@@ -1015,6 +1012,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1015
1012
  }[] | undefined;
1016
1013
  } | undefined;
1017
1014
  TOC2?: {
1015
+ spacing?: {
1016
+ before?: number | undefined;
1017
+ after?: number | undefined;
1018
+ } | undefined;
1019
+ case?: "none" | "upper" | "smallCaps" | undefined;
1018
1020
  size?: number | undefined;
1019
1021
  color?: string | undefined;
1020
1022
  bold?: boolean | undefined;
@@ -1025,10 +1027,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1025
1027
  value?: number | undefined;
1026
1028
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1027
1029
  } | undefined;
1028
- spacing?: {
1029
- before?: number | undefined;
1030
- after?: number | undefined;
1031
- } | undefined;
1032
1030
  characterSpacing?: {
1033
1031
  type: "condensed" | "expanded";
1034
1032
  value: number;
@@ -1046,31 +1044,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1046
1044
  space?: number | undefined;
1047
1045
  size: number;
1048
1046
  color: string;
1049
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1047
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1050
1048
  } | undefined;
1051
1049
  top?: {
1052
1050
  space?: number | undefined;
1053
1051
  size: number;
1054
1052
  color: string;
1055
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1053
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1056
1054
  } | undefined;
1057
1055
  bottom?: {
1058
1056
  space?: number | undefined;
1059
1057
  size: number;
1060
1058
  color: string;
1061
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1059
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1062
1060
  } | undefined;
1063
1061
  right?: {
1064
1062
  space?: number | undefined;
1065
1063
  size: number;
1066
1064
  color: string;
1067
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1065
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1068
1066
  } | undefined;
1069
1067
  between?: {
1070
1068
  space?: number | undefined;
1071
1069
  size: number;
1072
1070
  color: string;
1073
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1071
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1074
1072
  } | undefined;
1075
1073
  } | undefined;
1076
1074
  indent?: {
@@ -1085,6 +1083,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1085
1083
  }[] | undefined;
1086
1084
  } | undefined;
1087
1085
  TOC3?: {
1086
+ spacing?: {
1087
+ before?: number | undefined;
1088
+ after?: number | undefined;
1089
+ } | undefined;
1090
+ case?: "none" | "upper" | "smallCaps" | undefined;
1088
1091
  size?: number | undefined;
1089
1092
  color?: string | undefined;
1090
1093
  bold?: boolean | undefined;
@@ -1095,10 +1098,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1095
1098
  value?: number | undefined;
1096
1099
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1097
1100
  } | undefined;
1098
- spacing?: {
1099
- before?: number | undefined;
1100
- after?: number | undefined;
1101
- } | undefined;
1102
1101
  characterSpacing?: {
1103
1102
  type: "condensed" | "expanded";
1104
1103
  value: number;
@@ -1116,31 +1115,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1116
1115
  space?: number | undefined;
1117
1116
  size: number;
1118
1117
  color: string;
1119
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1118
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1120
1119
  } | undefined;
1121
1120
  top?: {
1122
1121
  space?: number | undefined;
1123
1122
  size: number;
1124
1123
  color: string;
1125
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1124
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1126
1125
  } | undefined;
1127
1126
  bottom?: {
1128
1127
  space?: number | undefined;
1129
1128
  size: number;
1130
1129
  color: string;
1131
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1130
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1132
1131
  } | undefined;
1133
1132
  right?: {
1134
1133
  space?: number | undefined;
1135
1134
  size: number;
1136
1135
  color: string;
1137
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1136
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1138
1137
  } | undefined;
1139
1138
  between?: {
1140
1139
  space?: number | undefined;
1141
1140
  size: number;
1142
1141
  color: string;
1143
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1142
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1144
1143
  } | undefined;
1145
1144
  } | undefined;
1146
1145
  indent?: {
@@ -1155,6 +1154,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1155
1154
  }[] | undefined;
1156
1155
  } | undefined;
1157
1156
  TOC4?: {
1157
+ spacing?: {
1158
+ before?: number | undefined;
1159
+ after?: number | undefined;
1160
+ } | undefined;
1161
+ case?: "none" | "upper" | "smallCaps" | undefined;
1158
1162
  size?: number | undefined;
1159
1163
  color?: string | undefined;
1160
1164
  bold?: boolean | undefined;
@@ -1165,10 +1169,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1165
1169
  value?: number | undefined;
1166
1170
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1167
1171
  } | undefined;
1168
- spacing?: {
1169
- before?: number | undefined;
1170
- after?: number | undefined;
1171
- } | undefined;
1172
1172
  characterSpacing?: {
1173
1173
  type: "condensed" | "expanded";
1174
1174
  value: number;
@@ -1186,31 +1186,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1186
1186
  space?: number | undefined;
1187
1187
  size: number;
1188
1188
  color: string;
1189
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1189
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1190
1190
  } | undefined;
1191
1191
  top?: {
1192
1192
  space?: number | undefined;
1193
1193
  size: number;
1194
1194
  color: string;
1195
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1195
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1196
1196
  } | undefined;
1197
1197
  bottom?: {
1198
1198
  space?: number | undefined;
1199
1199
  size: number;
1200
1200
  color: string;
1201
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1201
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1202
1202
  } | undefined;
1203
1203
  right?: {
1204
1204
  space?: number | undefined;
1205
1205
  size: number;
1206
1206
  color: string;
1207
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1207
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1208
1208
  } | undefined;
1209
1209
  between?: {
1210
1210
  space?: number | undefined;
1211
1211
  size: number;
1212
1212
  color: string;
1213
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1213
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1214
1214
  } | undefined;
1215
1215
  } | undefined;
1216
1216
  indent?: {
@@ -1225,6 +1225,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1225
1225
  }[] | undefined;
1226
1226
  } | undefined;
1227
1227
  TOC5?: {
1228
+ spacing?: {
1229
+ before?: number | undefined;
1230
+ after?: number | undefined;
1231
+ } | undefined;
1232
+ case?: "none" | "upper" | "smallCaps" | undefined;
1228
1233
  size?: number | undefined;
1229
1234
  color?: string | undefined;
1230
1235
  bold?: boolean | undefined;
@@ -1235,10 +1240,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1235
1240
  value?: number | undefined;
1236
1241
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1237
1242
  } | undefined;
1238
- spacing?: {
1239
- before?: number | undefined;
1240
- after?: number | undefined;
1241
- } | undefined;
1242
1243
  characterSpacing?: {
1243
1244
  type: "condensed" | "expanded";
1244
1245
  value: number;
@@ -1256,31 +1257,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1256
1257
  space?: number | undefined;
1257
1258
  size: number;
1258
1259
  color: string;
1259
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1260
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1260
1261
  } | undefined;
1261
1262
  top?: {
1262
1263
  space?: number | undefined;
1263
1264
  size: number;
1264
1265
  color: string;
1265
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1266
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1266
1267
  } | undefined;
1267
1268
  bottom?: {
1268
1269
  space?: number | undefined;
1269
1270
  size: number;
1270
1271
  color: string;
1271
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1272
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1272
1273
  } | undefined;
1273
1274
  right?: {
1274
1275
  space?: number | undefined;
1275
1276
  size: number;
1276
1277
  color: string;
1277
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1278
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1278
1279
  } | undefined;
1279
1280
  between?: {
1280
1281
  space?: number | undefined;
1281
1282
  size: number;
1282
1283
  color: string;
1283
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1284
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1284
1285
  } | undefined;
1285
1286
  } | undefined;
1286
1287
  indent?: {
@@ -1295,6 +1296,11 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1295
1296
  }[] | undefined;
1296
1297
  } | undefined;
1297
1298
  TOC6?: {
1299
+ spacing?: {
1300
+ before?: number | undefined;
1301
+ after?: number | undefined;
1302
+ } | undefined;
1303
+ case?: "none" | "upper" | "smallCaps" | undefined;
1298
1304
  size?: number | undefined;
1299
1305
  color?: string | undefined;
1300
1306
  bold?: boolean | undefined;
@@ -1305,10 +1311,6 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1305
1311
  value?: number | undefined;
1306
1312
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1307
1313
  } | undefined;
1308
- spacing?: {
1309
- before?: number | undefined;
1310
- after?: number | undefined;
1311
- } | undefined;
1312
1314
  characterSpacing?: {
1313
1315
  type: "condensed" | "expanded";
1314
1316
  value: number;
@@ -1326,31 +1328,31 @@ export declare function getThemeStyles(theme: Partial<ThemeConfigJson>): {
1326
1328
  space?: number | undefined;
1327
1329
  size: number;
1328
1330
  color: string;
1329
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1331
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1330
1332
  } | undefined;
1331
1333
  top?: {
1332
1334
  space?: number | undefined;
1333
1335
  size: number;
1334
1336
  color: string;
1335
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1337
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1336
1338
  } | undefined;
1337
1339
  bottom?: {
1338
1340
  space?: number | undefined;
1339
1341
  size: number;
1340
1342
  color: string;
1341
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1343
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1342
1344
  } | undefined;
1343
1345
  right?: {
1344
1346
  space?: number | undefined;
1345
1347
  size: number;
1346
1348
  color: string;
1347
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1349
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1348
1350
  } | undefined;
1349
1351
  between?: {
1350
1352
  space?: number | undefined;
1351
1353
  size: number;
1352
1354
  color: string;
1353
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1355
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1354
1356
  } | undefined;
1355
1357
  } | undefined;
1356
1358
  indent?: {
@@ -1381,6 +1383,13 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
1381
1383
  after: number;
1382
1384
  };
1383
1385
  } | {
1386
+ spacing: {
1387
+ after: number;
1388
+ } | {
1389
+ before?: number | undefined;
1390
+ after?: number | undefined;
1391
+ };
1392
+ case?: "none" | "upper" | "smallCaps" | undefined;
1384
1393
  size: number;
1385
1394
  color: string;
1386
1395
  bold?: boolean | undefined;
@@ -1391,12 +1400,6 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
1391
1400
  value?: number | undefined;
1392
1401
  type: "single" | "atLeast" | "exactly" | "double" | "multiple";
1393
1402
  };
1394
- spacing: {
1395
- after: number;
1396
- } | {
1397
- before?: number | undefined;
1398
- after?: number | undefined;
1399
- };
1400
1403
  characterSpacing?: {
1401
1404
  type: "condensed" | "expanded";
1402
1405
  value: number;
@@ -1415,31 +1418,31 @@ export declare function getNormalStyle(theme: Partial<ThemeConfigJson>): {
1415
1418
  space?: number | undefined;
1416
1419
  size: number;
1417
1420
  color: string;
1418
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1421
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1419
1422
  } | undefined;
1420
1423
  top?: {
1421
1424
  space?: number | undefined;
1422
1425
  size: number;
1423
1426
  color: string;
1424
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1427
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1425
1428
  } | undefined;
1426
1429
  bottom?: {
1427
1430
  space?: number | undefined;
1428
1431
  size: number;
1429
1432
  color: string;
1430
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1433
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1431
1434
  } | undefined;
1432
1435
  right?: {
1433
1436
  space?: number | undefined;
1434
1437
  size: number;
1435
1438
  color: string;
1436
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1439
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1437
1440
  } | undefined;
1438
1441
  between?: {
1439
1442
  space?: number | undefined;
1440
1443
  size: number;
1441
1444
  color: string;
1442
- style: "single" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "none" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1445
+ style: "single" | "none" | "double" | "dashDotStroked" | "dashed" | "dashSmallGap" | "dotDash" | "dotDotDash" | "dotted" | "doubleWave" | "inset" | "nil" | "outset" | "thick" | "thickThinLargeGap" | "thickThinMediumGap" | "thickThinSmallGap" | "thinThickLargeGap" | "thinThickMediumGap" | "thinThickSmallGap" | "thinThickThinLargeGap" | "thinThickThinMediumGap" | "thinThickThinSmallGap" | "threeDEmboss" | "threeDEngrave" | "triple" | "wave";
1443
1446
  } | undefined;
1444
1447
  } | undefined;
1445
1448
  indent?: {