@json-to-office/core-docx 0.32.0 → 0.34.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 (58) hide show
  1. package/dist/components/heading.d.ts.map +1 -1
  2. package/dist/components/list.d.ts.map +1 -1
  3. package/dist/components/paragraph.d.ts.map +1 -1
  4. package/dist/components/section.d.ts.map +1 -1
  5. package/dist/components/table.d.ts.map +1 -1
  6. package/dist/components/toc/index.d.ts.map +1 -1
  7. package/dist/core/cached-render.d.ts +9 -1
  8. package/dist/core/cached-render.d.ts.map +1 -1
  9. package/dist/core/collectTocHeadings.d.ts +60 -0
  10. package/dist/core/collectTocHeadings.d.ts.map +1 -0
  11. package/dist/core/content.d.ts +17 -1
  12. package/dist/core/content.d.ts.map +1 -1
  13. package/dist/core/layout.d.ts +5 -0
  14. package/dist/core/layout.d.ts.map +1 -1
  15. package/dist/core/render.d.ts.map +1 -1
  16. package/dist/core/sectionBookmarks.d.ts +53 -0
  17. package/dist/core/sectionBookmarks.d.ts.map +1 -0
  18. package/dist/core/sectionOrdinals.d.ts +32 -0
  19. package/dist/core/sectionOrdinals.d.ts.map +1 -0
  20. package/dist/index.d.ts +1 -1
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +816 -169
  23. package/dist/index.js.map +1 -1
  24. package/dist/plugin/example/index.js +815 -169
  25. package/dist/plugin/example/index.js.map +1 -1
  26. package/dist/styles/index.d.ts +2 -2
  27. package/dist/styles/index.d.ts.map +1 -1
  28. package/dist/styles/themeToDocxAdapter.d.ts.map +1 -1
  29. package/dist/styles/utils/layoutUtils.d.ts +48 -0
  30. package/dist/styles/utils/layoutUtils.d.ts.map +1 -1
  31. package/dist/templates/themes/index.d.ts +400 -8
  32. package/dist/templates/themes/index.d.ts.map +1 -1
  33. package/dist/themes/defaults.d.ts +96 -0
  34. package/dist/themes/defaults.d.ts.map +1 -1
  35. package/dist/tsconfig.tsbuildinfo +1 -1
  36. package/dist/types/index.d.ts +8 -0
  37. package/dist/types/index.d.ts.map +1 -1
  38. package/dist/utils/commentAnchors.d.ts +39 -0
  39. package/dist/utils/commentAnchors.d.ts.map +1 -0
  40. package/dist/utils/commentRegistry.d.ts +49 -0
  41. package/dist/utils/commentRegistry.d.ts.map +1 -0
  42. package/dist/utils/componentAnnotations.d.ts +23 -0
  43. package/dist/utils/componentAnnotations.d.ts.map +1 -0
  44. package/dist/utils/fixFloatingImageIds.d.ts +1 -1
  45. package/dist/utils/fixFloatingImageIds.d.ts.map +1 -1
  46. package/dist/utils/noteRegistry.d.ts +43 -0
  47. package/dist/utils/noteRegistry.d.ts.map +1 -0
  48. package/dist/utils/noteResolver.d.ts +31 -0
  49. package/dist/utils/noteResolver.d.ts.map +1 -0
  50. package/dist/utils/numberingConfig.d.ts +15 -0
  51. package/dist/utils/numberingConfig.d.ts.map +1 -1
  52. package/dist/utils/placeholderProcessor.d.ts +2 -2
  53. package/dist/utils/placeholderProcessor.d.ts.map +1 -1
  54. package/dist/utils/revisionUtils.d.ts +32 -9
  55. package/dist/utils/revisionUtils.d.ts.map +1 -1
  56. package/dist/utils/textParser.d.ts +12 -0
  57. package/dist/utils/textParser.d.ts.map +1 -1
  58. package/package.json +4 -4
@@ -59,6 +59,12 @@ export declare const themes: Record<string, {
59
59
  color: string;
60
60
  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";
61
61
  } | undefined;
62
+ between?: {
63
+ space?: number | undefined;
64
+ size: number;
65
+ color: string;
66
+ 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";
67
+ } | undefined;
62
68
  } | undefined;
63
69
  indent?: {
64
70
  left?: number | undefined;
@@ -119,6 +125,12 @@ export declare const themes: Record<string, {
119
125
  color: string;
120
126
  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";
121
127
  } | undefined;
128
+ between?: {
129
+ space?: number | undefined;
130
+ size: number;
131
+ color: string;
132
+ 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";
133
+ } | undefined;
122
134
  } | undefined;
123
135
  indent?: {
124
136
  left?: number | undefined;
@@ -179,6 +191,12 @@ export declare const themes: Record<string, {
179
191
  color: string;
180
192
  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";
181
193
  } | undefined;
194
+ between?: {
195
+ space?: number | undefined;
196
+ size: number;
197
+ color: string;
198
+ 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";
199
+ } | undefined;
182
200
  } | undefined;
183
201
  indent?: {
184
202
  left?: number | undefined;
@@ -239,6 +257,12 @@ export declare const themes: Record<string, {
239
257
  color: string;
240
258
  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";
241
259
  } | undefined;
260
+ between?: {
261
+ space?: number | undefined;
262
+ size: number;
263
+ color: string;
264
+ 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";
265
+ } | undefined;
242
266
  } | undefined;
243
267
  indent?: {
244
268
  left?: number | undefined;
@@ -299,6 +323,12 @@ export declare const themes: Record<string, {
299
323
  color: string;
300
324
  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";
301
325
  } | undefined;
326
+ between?: {
327
+ space?: number | undefined;
328
+ size: number;
329
+ color: string;
330
+ 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";
331
+ } | undefined;
302
332
  } | undefined;
303
333
  indent?: {
304
334
  left?: number | undefined;
@@ -359,6 +389,12 @@ export declare const themes: Record<string, {
359
389
  color: string;
360
390
  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";
361
391
  } | undefined;
392
+ between?: {
393
+ space?: number | undefined;
394
+ size: number;
395
+ color: string;
396
+ 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";
397
+ } | undefined;
362
398
  } | undefined;
363
399
  indent?: {
364
400
  left?: number | undefined;
@@ -419,6 +455,12 @@ export declare const themes: Record<string, {
419
455
  color: string;
420
456
  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";
421
457
  } | undefined;
458
+ between?: {
459
+ space?: number | undefined;
460
+ size: number;
461
+ color: string;
462
+ 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";
463
+ } | undefined;
422
464
  } | undefined;
423
465
  indent?: {
424
466
  left?: number | undefined;
@@ -479,6 +521,12 @@ export declare const themes: Record<string, {
479
521
  color: string;
480
522
  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";
481
523
  } | undefined;
524
+ between?: {
525
+ space?: number | undefined;
526
+ size: number;
527
+ color: string;
528
+ 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";
529
+ } | undefined;
482
530
  } | undefined;
483
531
  indent?: {
484
532
  left?: number | undefined;
@@ -539,6 +587,12 @@ export declare const themes: Record<string, {
539
587
  color: string;
540
588
  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";
541
589
  } | undefined;
590
+ between?: {
591
+ space?: number | undefined;
592
+ size: number;
593
+ color: string;
594
+ 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";
595
+ } | undefined;
542
596
  } | undefined;
543
597
  indent?: {
544
598
  left?: number | undefined;
@@ -598,6 +652,12 @@ export declare const themes: Record<string, {
598
652
  color: string;
599
653
  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";
600
654
  } | undefined;
655
+ between?: {
656
+ space?: number | undefined;
657
+ size: number;
658
+ color: string;
659
+ 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";
660
+ } | undefined;
601
661
  } | undefined;
602
662
  indent?: {
603
663
  left?: number | undefined;
@@ -662,6 +722,12 @@ export declare const themes: Record<string, {
662
722
  color: string;
663
723
  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";
664
724
  } | undefined;
725
+ between?: {
726
+ space?: number | undefined;
727
+ size: number;
728
+ color: string;
729
+ 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";
730
+ } | undefined;
665
731
  } | undefined;
666
732
  indent?: {
667
733
  left?: number | undefined;
@@ -726,6 +792,12 @@ export declare const themes: Record<string, {
726
792
  color: string;
727
793
  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";
728
794
  } | undefined;
795
+ between?: {
796
+ space?: number | undefined;
797
+ size: number;
798
+ color: string;
799
+ 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
+ } | undefined;
729
801
  } | undefined;
730
802
  indent?: {
731
803
  left?: number | undefined;
@@ -790,6 +862,12 @@ export declare const themes: Record<string, {
790
862
  color: string;
791
863
  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";
792
864
  } | undefined;
865
+ between?: {
866
+ space?: number | undefined;
867
+ size: number;
868
+ color: string;
869
+ 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";
870
+ } | undefined;
793
871
  } | undefined;
794
872
  indent?: {
795
873
  left?: number | undefined;
@@ -854,6 +932,12 @@ export declare const themes: Record<string, {
854
932
  color: string;
855
933
  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";
856
934
  } | undefined;
935
+ between?: {
936
+ space?: number | undefined;
937
+ size: number;
938
+ color: string;
939
+ 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";
940
+ } | undefined;
857
941
  } | undefined;
858
942
  indent?: {
859
943
  left?: number | undefined;
@@ -918,6 +1002,12 @@ export declare const themes: Record<string, {
918
1002
  color: string;
919
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";
920
1004
  } | undefined;
1005
+ between?: {
1006
+ space?: number | undefined;
1007
+ size: number;
1008
+ color: string;
1009
+ 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";
1010
+ } | undefined;
921
1011
  } | undefined;
922
1012
  indent?: {
923
1013
  left?: number | undefined;
@@ -1028,6 +1118,7 @@ export declare const themes: Record<string, {
1028
1118
  pageBreak?: boolean | undefined;
1029
1119
  columnBreak?: boolean | undefined;
1030
1120
  keepLines?: boolean | undefined;
1121
+ id?: string | undefined;
1031
1122
  themeStyle?: string | undefined;
1032
1123
  boldColor?: string | undefined;
1033
1124
  floating?: {
@@ -1048,7 +1139,6 @@ export declare const themes: Record<string, {
1048
1139
  } | undefined;
1049
1140
  lockAnchor?: boolean | undefined;
1050
1141
  } | undefined;
1051
- id?: string | undefined;
1052
1142
  } | undefined;
1053
1143
  image?: {
1054
1144
  spacing?: {
@@ -1171,6 +1261,7 @@ export declare const themes: Record<string, {
1171
1261
  } | undefined;
1172
1262
  text: string;
1173
1263
  })[] | undefined;
1264
+ bullet?: string | undefined;
1174
1265
  reference?: string | undefined;
1175
1266
  levels?: {
1176
1267
  text?: string | undefined;
@@ -1179,11 +1270,18 @@ export declare const themes: Record<string, {
1179
1270
  left?: number | undefined;
1180
1271
  hanging?: number | undefined;
1181
1272
  } | undefined;
1273
+ font?: {
1274
+ size?: number | undefined;
1275
+ color?: string | undefined;
1276
+ bold?: boolean | undefined;
1277
+ italic?: boolean | undefined;
1278
+ underline?: boolean | undefined;
1279
+ family?: string | undefined;
1280
+ } | undefined;
1182
1281
  start?: number | undefined;
1183
1282
  format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
1184
1283
  level: number;
1185
1284
  }[] | undefined;
1186
- bullet?: string | undefined;
1187
1285
  } | undefined;
1188
1286
  } | undefined;
1189
1287
  noProofWords?: string[] | undefined;
@@ -1406,6 +1504,12 @@ export declare const minimalTheme: {
1406
1504
  color: string;
1407
1505
  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";
1408
1506
  } | undefined;
1507
+ between?: {
1508
+ space?: number | undefined;
1509
+ size: number;
1510
+ color: string;
1511
+ 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";
1512
+ } | undefined;
1409
1513
  } | undefined;
1410
1514
  indent?: {
1411
1515
  left?: number | undefined;
@@ -1466,6 +1570,12 @@ export declare const minimalTheme: {
1466
1570
  color: string;
1467
1571
  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";
1468
1572
  } | undefined;
1573
+ between?: {
1574
+ space?: number | undefined;
1575
+ size: number;
1576
+ color: string;
1577
+ 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";
1578
+ } | undefined;
1469
1579
  } | undefined;
1470
1580
  indent?: {
1471
1581
  left?: number | undefined;
@@ -1526,6 +1636,12 @@ export declare const minimalTheme: {
1526
1636
  color: string;
1527
1637
  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";
1528
1638
  } | undefined;
1639
+ between?: {
1640
+ space?: number | undefined;
1641
+ size: number;
1642
+ color: string;
1643
+ 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";
1644
+ } | undefined;
1529
1645
  } | undefined;
1530
1646
  indent?: {
1531
1647
  left?: number | undefined;
@@ -1586,6 +1702,12 @@ export declare const minimalTheme: {
1586
1702
  color: string;
1587
1703
  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";
1588
1704
  } | undefined;
1705
+ between?: {
1706
+ space?: number | undefined;
1707
+ size: number;
1708
+ color: string;
1709
+ 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";
1710
+ } | undefined;
1589
1711
  } | undefined;
1590
1712
  indent?: {
1591
1713
  left?: number | undefined;
@@ -1646,6 +1768,12 @@ export declare const minimalTheme: {
1646
1768
  color: string;
1647
1769
  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";
1648
1770
  } | undefined;
1771
+ between?: {
1772
+ space?: number | undefined;
1773
+ size: number;
1774
+ color: string;
1775
+ 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";
1776
+ } | undefined;
1649
1777
  } | undefined;
1650
1778
  indent?: {
1651
1779
  left?: number | undefined;
@@ -1706,6 +1834,12 @@ export declare const minimalTheme: {
1706
1834
  color: string;
1707
1835
  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";
1708
1836
  } | undefined;
1837
+ between?: {
1838
+ space?: number | undefined;
1839
+ size: number;
1840
+ color: string;
1841
+ 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";
1842
+ } | undefined;
1709
1843
  } | undefined;
1710
1844
  indent?: {
1711
1845
  left?: number | undefined;
@@ -1766,6 +1900,12 @@ export declare const minimalTheme: {
1766
1900
  color: string;
1767
1901
  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";
1768
1902
  } | undefined;
1903
+ between?: {
1904
+ space?: number | undefined;
1905
+ size: number;
1906
+ color: string;
1907
+ 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";
1908
+ } | undefined;
1769
1909
  } | undefined;
1770
1910
  indent?: {
1771
1911
  left?: number | undefined;
@@ -1826,6 +1966,12 @@ export declare const minimalTheme: {
1826
1966
  color: string;
1827
1967
  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";
1828
1968
  } | undefined;
1969
+ between?: {
1970
+ space?: number | undefined;
1971
+ size: number;
1972
+ color: string;
1973
+ 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";
1974
+ } | undefined;
1829
1975
  } | undefined;
1830
1976
  indent?: {
1831
1977
  left?: number | undefined;
@@ -1886,6 +2032,12 @@ export declare const minimalTheme: {
1886
2032
  color: string;
1887
2033
  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";
1888
2034
  } | undefined;
2035
+ between?: {
2036
+ space?: number | undefined;
2037
+ size: number;
2038
+ color: string;
2039
+ 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";
2040
+ } | undefined;
1889
2041
  } | undefined;
1890
2042
  indent?: {
1891
2043
  left?: number | undefined;
@@ -1945,6 +2097,12 @@ export declare const minimalTheme: {
1945
2097
  color: string;
1946
2098
  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";
1947
2099
  } | undefined;
2100
+ between?: {
2101
+ space?: number | undefined;
2102
+ size: number;
2103
+ color: string;
2104
+ 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";
2105
+ } | undefined;
1948
2106
  } | undefined;
1949
2107
  indent?: {
1950
2108
  left?: number | undefined;
@@ -2009,6 +2167,12 @@ export declare const minimalTheme: {
2009
2167
  color: string;
2010
2168
  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";
2011
2169
  } | undefined;
2170
+ between?: {
2171
+ space?: number | undefined;
2172
+ size: number;
2173
+ color: string;
2174
+ 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";
2175
+ } | undefined;
2012
2176
  } | undefined;
2013
2177
  indent?: {
2014
2178
  left?: number | undefined;
@@ -2073,6 +2237,12 @@ export declare const minimalTheme: {
2073
2237
  color: string;
2074
2238
  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";
2075
2239
  } | undefined;
2240
+ between?: {
2241
+ space?: number | undefined;
2242
+ size: number;
2243
+ color: string;
2244
+ 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";
2245
+ } | undefined;
2076
2246
  } | undefined;
2077
2247
  indent?: {
2078
2248
  left?: number | undefined;
@@ -2137,6 +2307,12 @@ export declare const minimalTheme: {
2137
2307
  color: string;
2138
2308
  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";
2139
2309
  } | undefined;
2310
+ between?: {
2311
+ space?: number | undefined;
2312
+ size: number;
2313
+ color: string;
2314
+ 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";
2315
+ } | undefined;
2140
2316
  } | undefined;
2141
2317
  indent?: {
2142
2318
  left?: number | undefined;
@@ -2201,6 +2377,12 @@ export declare const minimalTheme: {
2201
2377
  color: string;
2202
2378
  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";
2203
2379
  } | undefined;
2380
+ between?: {
2381
+ space?: number | undefined;
2382
+ size: number;
2383
+ color: string;
2384
+ 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";
2385
+ } | undefined;
2204
2386
  } | undefined;
2205
2387
  indent?: {
2206
2388
  left?: number | undefined;
@@ -2265,6 +2447,12 @@ export declare const minimalTheme: {
2265
2447
  color: string;
2266
2448
  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";
2267
2449
  } | undefined;
2450
+ between?: {
2451
+ space?: number | undefined;
2452
+ size: number;
2453
+ color: string;
2454
+ 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";
2455
+ } | undefined;
2268
2456
  } | undefined;
2269
2457
  indent?: {
2270
2458
  left?: number | undefined;
@@ -2375,6 +2563,7 @@ export declare const minimalTheme: {
2375
2563
  pageBreak?: boolean | undefined;
2376
2564
  columnBreak?: boolean | undefined;
2377
2565
  keepLines?: boolean | undefined;
2566
+ id?: string | undefined;
2378
2567
  themeStyle?: string | undefined;
2379
2568
  boldColor?: string | undefined;
2380
2569
  floating?: {
@@ -2395,7 +2584,6 @@ export declare const minimalTheme: {
2395
2584
  } | undefined;
2396
2585
  lockAnchor?: boolean | undefined;
2397
2586
  } | undefined;
2398
- id?: string | undefined;
2399
2587
  } | undefined;
2400
2588
  image?: {
2401
2589
  spacing?: {
@@ -2518,6 +2706,7 @@ export declare const minimalTheme: {
2518
2706
  } | undefined;
2519
2707
  text: string;
2520
2708
  })[] | undefined;
2709
+ bullet?: string | undefined;
2521
2710
  reference?: string | undefined;
2522
2711
  levels?: {
2523
2712
  text?: string | undefined;
@@ -2526,11 +2715,18 @@ export declare const minimalTheme: {
2526
2715
  left?: number | undefined;
2527
2716
  hanging?: number | undefined;
2528
2717
  } | undefined;
2718
+ font?: {
2719
+ size?: number | undefined;
2720
+ color?: string | undefined;
2721
+ bold?: boolean | undefined;
2722
+ italic?: boolean | undefined;
2723
+ underline?: boolean | undefined;
2724
+ family?: string | undefined;
2725
+ } | undefined;
2529
2726
  start?: number | undefined;
2530
2727
  format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
2531
2728
  level: number;
2532
2729
  }[] | undefined;
2533
- bullet?: string | undefined;
2534
2730
  } | undefined;
2535
2731
  } | undefined;
2536
2732
  noProofWords?: string[] | undefined;
@@ -2718,6 +2914,12 @@ export declare const corporateTheme: {
2718
2914
  color: string;
2719
2915
  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";
2720
2916
  } | undefined;
2917
+ between?: {
2918
+ space?: number | undefined;
2919
+ size: number;
2920
+ color: string;
2921
+ 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";
2922
+ } | undefined;
2721
2923
  } | undefined;
2722
2924
  indent?: {
2723
2925
  left?: number | undefined;
@@ -2778,6 +2980,12 @@ export declare const corporateTheme: {
2778
2980
  color: string;
2779
2981
  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";
2780
2982
  } | undefined;
2983
+ between?: {
2984
+ space?: number | undefined;
2985
+ size: number;
2986
+ color: string;
2987
+ 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";
2988
+ } | undefined;
2781
2989
  } | undefined;
2782
2990
  indent?: {
2783
2991
  left?: number | undefined;
@@ -2838,6 +3046,12 @@ export declare const corporateTheme: {
2838
3046
  color: string;
2839
3047
  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";
2840
3048
  } | undefined;
3049
+ between?: {
3050
+ space?: number | undefined;
3051
+ size: number;
3052
+ color: string;
3053
+ 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";
3054
+ } | undefined;
2841
3055
  } | undefined;
2842
3056
  indent?: {
2843
3057
  left?: number | undefined;
@@ -2898,6 +3112,12 @@ export declare const corporateTheme: {
2898
3112
  color: string;
2899
3113
  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";
2900
3114
  } | undefined;
3115
+ between?: {
3116
+ space?: number | undefined;
3117
+ size: number;
3118
+ color: string;
3119
+ 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";
3120
+ } | undefined;
2901
3121
  } | undefined;
2902
3122
  indent?: {
2903
3123
  left?: number | undefined;
@@ -2958,6 +3178,12 @@ export declare const corporateTheme: {
2958
3178
  color: string;
2959
3179
  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";
2960
3180
  } | undefined;
3181
+ between?: {
3182
+ space?: number | undefined;
3183
+ size: number;
3184
+ color: string;
3185
+ 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";
3186
+ } | undefined;
2961
3187
  } | undefined;
2962
3188
  indent?: {
2963
3189
  left?: number | undefined;
@@ -3018,6 +3244,12 @@ export declare const corporateTheme: {
3018
3244
  color: string;
3019
3245
  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";
3020
3246
  } | undefined;
3247
+ between?: {
3248
+ space?: number | undefined;
3249
+ size: number;
3250
+ color: string;
3251
+ 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";
3252
+ } | undefined;
3021
3253
  } | undefined;
3022
3254
  indent?: {
3023
3255
  left?: number | undefined;
@@ -3078,6 +3310,12 @@ export declare const corporateTheme: {
3078
3310
  color: string;
3079
3311
  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";
3080
3312
  } | undefined;
3313
+ between?: {
3314
+ space?: number | undefined;
3315
+ size: number;
3316
+ color: string;
3317
+ 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";
3318
+ } | undefined;
3081
3319
  } | undefined;
3082
3320
  indent?: {
3083
3321
  left?: number | undefined;
@@ -3138,6 +3376,12 @@ export declare const corporateTheme: {
3138
3376
  color: string;
3139
3377
  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";
3140
3378
  } | undefined;
3379
+ between?: {
3380
+ space?: number | undefined;
3381
+ size: number;
3382
+ color: string;
3383
+ 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";
3384
+ } | undefined;
3141
3385
  } | undefined;
3142
3386
  indent?: {
3143
3387
  left?: number | undefined;
@@ -3198,6 +3442,12 @@ export declare const corporateTheme: {
3198
3442
  color: string;
3199
3443
  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";
3200
3444
  } | undefined;
3445
+ between?: {
3446
+ space?: number | undefined;
3447
+ size: number;
3448
+ color: string;
3449
+ 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";
3450
+ } | undefined;
3201
3451
  } | undefined;
3202
3452
  indent?: {
3203
3453
  left?: number | undefined;
@@ -3257,6 +3507,12 @@ export declare const corporateTheme: {
3257
3507
  color: string;
3258
3508
  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";
3259
3509
  } | undefined;
3510
+ between?: {
3511
+ space?: number | undefined;
3512
+ size: number;
3513
+ color: string;
3514
+ 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";
3515
+ } | undefined;
3260
3516
  } | undefined;
3261
3517
  indent?: {
3262
3518
  left?: number | undefined;
@@ -3321,6 +3577,12 @@ export declare const corporateTheme: {
3321
3577
  color: string;
3322
3578
  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";
3323
3579
  } | undefined;
3580
+ between?: {
3581
+ space?: number | undefined;
3582
+ size: number;
3583
+ color: string;
3584
+ 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";
3585
+ } | undefined;
3324
3586
  } | undefined;
3325
3587
  indent?: {
3326
3588
  left?: number | undefined;
@@ -3385,6 +3647,12 @@ export declare const corporateTheme: {
3385
3647
  color: string;
3386
3648
  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";
3387
3649
  } | undefined;
3650
+ between?: {
3651
+ space?: number | undefined;
3652
+ size: number;
3653
+ color: string;
3654
+ 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";
3655
+ } | undefined;
3388
3656
  } | undefined;
3389
3657
  indent?: {
3390
3658
  left?: number | undefined;
@@ -3449,6 +3717,12 @@ export declare const corporateTheme: {
3449
3717
  color: string;
3450
3718
  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";
3451
3719
  } | undefined;
3720
+ between?: {
3721
+ space?: number | undefined;
3722
+ size: number;
3723
+ color: string;
3724
+ 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";
3725
+ } | undefined;
3452
3726
  } | undefined;
3453
3727
  indent?: {
3454
3728
  left?: number | undefined;
@@ -3513,6 +3787,12 @@ export declare const corporateTheme: {
3513
3787
  color: string;
3514
3788
  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";
3515
3789
  } | undefined;
3790
+ between?: {
3791
+ space?: number | undefined;
3792
+ size: number;
3793
+ color: string;
3794
+ 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";
3795
+ } | undefined;
3516
3796
  } | undefined;
3517
3797
  indent?: {
3518
3798
  left?: number | undefined;
@@ -3577,6 +3857,12 @@ export declare const corporateTheme: {
3577
3857
  color: string;
3578
3858
  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";
3579
3859
  } | undefined;
3860
+ between?: {
3861
+ space?: number | undefined;
3862
+ size: number;
3863
+ color: string;
3864
+ 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";
3865
+ } | undefined;
3580
3866
  } | undefined;
3581
3867
  indent?: {
3582
3868
  left?: number | undefined;
@@ -3687,6 +3973,7 @@ export declare const corporateTheme: {
3687
3973
  pageBreak?: boolean | undefined;
3688
3974
  columnBreak?: boolean | undefined;
3689
3975
  keepLines?: boolean | undefined;
3976
+ id?: string | undefined;
3690
3977
  themeStyle?: string | undefined;
3691
3978
  boldColor?: string | undefined;
3692
3979
  floating?: {
@@ -3707,7 +3994,6 @@ export declare const corporateTheme: {
3707
3994
  } | undefined;
3708
3995
  lockAnchor?: boolean | undefined;
3709
3996
  } | undefined;
3710
- id?: string | undefined;
3711
3997
  } | undefined;
3712
3998
  image?: {
3713
3999
  spacing?: {
@@ -3830,6 +4116,7 @@ export declare const corporateTheme: {
3830
4116
  } | undefined;
3831
4117
  text: string;
3832
4118
  })[] | undefined;
4119
+ bullet?: string | undefined;
3833
4120
  reference?: string | undefined;
3834
4121
  levels?: {
3835
4122
  text?: string | undefined;
@@ -3838,11 +4125,18 @@ export declare const corporateTheme: {
3838
4125
  left?: number | undefined;
3839
4126
  hanging?: number | undefined;
3840
4127
  } | undefined;
4128
+ font?: {
4129
+ size?: number | undefined;
4130
+ color?: string | undefined;
4131
+ bold?: boolean | undefined;
4132
+ italic?: boolean | undefined;
4133
+ underline?: boolean | undefined;
4134
+ family?: string | undefined;
4135
+ } | undefined;
3841
4136
  start?: number | undefined;
3842
4137
  format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
3843
4138
  level: number;
3844
4139
  }[] | undefined;
3845
- bullet?: string | undefined;
3846
4140
  } | undefined;
3847
4141
  } | undefined;
3848
4142
  noProofWords?: string[] | undefined;
@@ -4030,6 +4324,12 @@ export declare const modernTheme: {
4030
4324
  color: string;
4031
4325
  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";
4032
4326
  } | undefined;
4327
+ between?: {
4328
+ space?: number | undefined;
4329
+ size: number;
4330
+ color: string;
4331
+ 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";
4332
+ } | undefined;
4033
4333
  } | undefined;
4034
4334
  indent?: {
4035
4335
  left?: number | undefined;
@@ -4090,6 +4390,12 @@ export declare const modernTheme: {
4090
4390
  color: string;
4091
4391
  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";
4092
4392
  } | undefined;
4393
+ between?: {
4394
+ space?: number | undefined;
4395
+ size: number;
4396
+ color: string;
4397
+ 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";
4398
+ } | undefined;
4093
4399
  } | undefined;
4094
4400
  indent?: {
4095
4401
  left?: number | undefined;
@@ -4150,6 +4456,12 @@ export declare const modernTheme: {
4150
4456
  color: string;
4151
4457
  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";
4152
4458
  } | undefined;
4459
+ between?: {
4460
+ space?: number | undefined;
4461
+ size: number;
4462
+ color: string;
4463
+ 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";
4464
+ } | undefined;
4153
4465
  } | undefined;
4154
4466
  indent?: {
4155
4467
  left?: number | undefined;
@@ -4210,6 +4522,12 @@ export declare const modernTheme: {
4210
4522
  color: string;
4211
4523
  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";
4212
4524
  } | undefined;
4525
+ between?: {
4526
+ space?: number | undefined;
4527
+ size: number;
4528
+ color: string;
4529
+ 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";
4530
+ } | undefined;
4213
4531
  } | undefined;
4214
4532
  indent?: {
4215
4533
  left?: number | undefined;
@@ -4270,6 +4588,12 @@ export declare const modernTheme: {
4270
4588
  color: string;
4271
4589
  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";
4272
4590
  } | undefined;
4591
+ between?: {
4592
+ space?: number | undefined;
4593
+ size: number;
4594
+ color: string;
4595
+ 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";
4596
+ } | undefined;
4273
4597
  } | undefined;
4274
4598
  indent?: {
4275
4599
  left?: number | undefined;
@@ -4330,6 +4654,12 @@ export declare const modernTheme: {
4330
4654
  color: string;
4331
4655
  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";
4332
4656
  } | undefined;
4657
+ between?: {
4658
+ space?: number | undefined;
4659
+ size: number;
4660
+ color: string;
4661
+ 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";
4662
+ } | undefined;
4333
4663
  } | undefined;
4334
4664
  indent?: {
4335
4665
  left?: number | undefined;
@@ -4390,6 +4720,12 @@ export declare const modernTheme: {
4390
4720
  color: string;
4391
4721
  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";
4392
4722
  } | undefined;
4723
+ between?: {
4724
+ space?: number | undefined;
4725
+ size: number;
4726
+ color: string;
4727
+ 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";
4728
+ } | undefined;
4393
4729
  } | undefined;
4394
4730
  indent?: {
4395
4731
  left?: number | undefined;
@@ -4450,6 +4786,12 @@ export declare const modernTheme: {
4450
4786
  color: string;
4451
4787
  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";
4452
4788
  } | undefined;
4789
+ between?: {
4790
+ space?: number | undefined;
4791
+ size: number;
4792
+ color: string;
4793
+ 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";
4794
+ } | undefined;
4453
4795
  } | undefined;
4454
4796
  indent?: {
4455
4797
  left?: number | undefined;
@@ -4510,6 +4852,12 @@ export declare const modernTheme: {
4510
4852
  color: string;
4511
4853
  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";
4512
4854
  } | undefined;
4855
+ between?: {
4856
+ space?: number | undefined;
4857
+ size: number;
4858
+ color: string;
4859
+ 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";
4860
+ } | undefined;
4513
4861
  } | undefined;
4514
4862
  indent?: {
4515
4863
  left?: number | undefined;
@@ -4569,6 +4917,12 @@ export declare const modernTheme: {
4569
4917
  color: string;
4570
4918
  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";
4571
4919
  } | undefined;
4920
+ between?: {
4921
+ space?: number | undefined;
4922
+ size: number;
4923
+ color: string;
4924
+ 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";
4925
+ } | undefined;
4572
4926
  } | undefined;
4573
4927
  indent?: {
4574
4928
  left?: number | undefined;
@@ -4633,6 +4987,12 @@ export declare const modernTheme: {
4633
4987
  color: string;
4634
4988
  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";
4635
4989
  } | undefined;
4990
+ between?: {
4991
+ space?: number | undefined;
4992
+ size: number;
4993
+ color: string;
4994
+ 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";
4995
+ } | undefined;
4636
4996
  } | undefined;
4637
4997
  indent?: {
4638
4998
  left?: number | undefined;
@@ -4697,6 +5057,12 @@ export declare const modernTheme: {
4697
5057
  color: string;
4698
5058
  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";
4699
5059
  } | undefined;
5060
+ between?: {
5061
+ space?: number | undefined;
5062
+ size: number;
5063
+ color: string;
5064
+ 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";
5065
+ } | undefined;
4700
5066
  } | undefined;
4701
5067
  indent?: {
4702
5068
  left?: number | undefined;
@@ -4761,6 +5127,12 @@ export declare const modernTheme: {
4761
5127
  color: string;
4762
5128
  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";
4763
5129
  } | undefined;
5130
+ between?: {
5131
+ space?: number | undefined;
5132
+ size: number;
5133
+ color: string;
5134
+ 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";
5135
+ } | undefined;
4764
5136
  } | undefined;
4765
5137
  indent?: {
4766
5138
  left?: number | undefined;
@@ -4825,6 +5197,12 @@ export declare const modernTheme: {
4825
5197
  color: string;
4826
5198
  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";
4827
5199
  } | undefined;
5200
+ between?: {
5201
+ space?: number | undefined;
5202
+ size: number;
5203
+ color: string;
5204
+ 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";
5205
+ } | undefined;
4828
5206
  } | undefined;
4829
5207
  indent?: {
4830
5208
  left?: number | undefined;
@@ -4889,6 +5267,12 @@ export declare const modernTheme: {
4889
5267
  color: string;
4890
5268
  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";
4891
5269
  } | undefined;
5270
+ between?: {
5271
+ space?: number | undefined;
5272
+ size: number;
5273
+ color: string;
5274
+ 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";
5275
+ } | undefined;
4892
5276
  } | undefined;
4893
5277
  indent?: {
4894
5278
  left?: number | undefined;
@@ -4999,6 +5383,7 @@ export declare const modernTheme: {
4999
5383
  pageBreak?: boolean | undefined;
5000
5384
  columnBreak?: boolean | undefined;
5001
5385
  keepLines?: boolean | undefined;
5386
+ id?: string | undefined;
5002
5387
  themeStyle?: string | undefined;
5003
5388
  boldColor?: string | undefined;
5004
5389
  floating?: {
@@ -5019,7 +5404,6 @@ export declare const modernTheme: {
5019
5404
  } | undefined;
5020
5405
  lockAnchor?: boolean | undefined;
5021
5406
  } | undefined;
5022
- id?: string | undefined;
5023
5407
  } | undefined;
5024
5408
  image?: {
5025
5409
  spacing?: {
@@ -5142,6 +5526,7 @@ export declare const modernTheme: {
5142
5526
  } | undefined;
5143
5527
  text: string;
5144
5528
  })[] | undefined;
5529
+ bullet?: string | undefined;
5145
5530
  reference?: string | undefined;
5146
5531
  levels?: {
5147
5532
  text?: string | undefined;
@@ -5150,11 +5535,18 @@ export declare const modernTheme: {
5150
5535
  left?: number | undefined;
5151
5536
  hanging?: number | undefined;
5152
5537
  } | undefined;
5538
+ font?: {
5539
+ size?: number | undefined;
5540
+ color?: string | undefined;
5541
+ bold?: boolean | undefined;
5542
+ italic?: boolean | undefined;
5543
+ underline?: boolean | undefined;
5544
+ family?: string | undefined;
5545
+ } | undefined;
5153
5546
  start?: number | undefined;
5154
5547
  format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
5155
5548
  level: number;
5156
5549
  }[] | undefined;
5157
- bullet?: string | undefined;
5158
5550
  } | undefined;
5159
5551
  } | undefined;
5160
5552
  noProofWords?: string[] | undefined;