rimelight-components 2.1.37 → 2.1.39

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 (152) hide show
  1. package/dist/module.d.mts +9 -0
  2. package/dist/module.d.ts +9 -0
  3. package/dist/module.json +1 -1
  4. package/dist/module.mjs +15 -1
  5. package/dist/runtime/auth/index.d.ts +3 -0
  6. package/dist/runtime/auth/index.js +3 -0
  7. package/dist/runtime/auth/index.mjs +3 -0
  8. package/dist/runtime/auth/permissions.d.ts +201 -0
  9. package/dist/runtime/auth/permissions.js +32 -0
  10. package/dist/runtime/auth/permissions.mjs +32 -0
  11. package/dist/runtime/auth/restricted-usernames.d.ts +25 -0
  12. package/dist/runtime/auth/restricted-usernames.js +236 -0
  13. package/dist/runtime/auth/restricted-usernames.mjs +236 -0
  14. package/dist/runtime/auth/utils.d.ts +10 -0
  15. package/dist/runtime/auth/utils.js +20 -0
  16. package/dist/runtime/auth/utils.mjs +20 -0
  17. package/dist/runtime/components/FloatingToolsOverlay.d.vue.ts +3 -0
  18. package/dist/runtime/components/FloatingToolsOverlay.vue +74 -0
  19. package/dist/runtime/components/FloatingToolsOverlay.vue.d.ts +3 -0
  20. package/dist/runtime/components/app/Footer.vue +1 -1
  21. package/dist/runtime/components/app/Header.vue +1 -1
  22. package/dist/runtime/components/app/Image.vue +1 -1
  23. package/dist/runtime/components/app/Logo.vue +1 -1
  24. package/dist/runtime/components/app/NewsletterSignup.vue +1 -1
  25. package/dist/runtime/components/app/ScrollToTop.vue +1 -1
  26. package/dist/runtime/components/cards/TeamCard.vue +1 -1
  27. package/dist/runtime/components/content/Callout.vue +1 -1
  28. package/dist/runtime/components/content/Section.vue +1 -1
  29. package/dist/runtime/components/dashboard/NotificationsSlideover.d.vue.ts +3 -0
  30. package/dist/runtime/components/dashboard/NotificationsSlideover.vue +49 -0
  31. package/dist/runtime/components/dashboard/NotificationsSlideover.vue.d.ts +3 -0
  32. package/dist/runtime/components/dashboard/QuickActions.d.vue.ts +3 -0
  33. package/dist/runtime/components/dashboard/QuickActions.vue +36 -0
  34. package/dist/runtime/components/dashboard/QuickActions.vue.d.ts +3 -0
  35. package/dist/runtime/components/dashboard/TeamsMenu.d.vue.ts +6 -0
  36. package/dist/runtime/components/dashboard/TeamsMenu.vue +77 -0
  37. package/dist/runtime/components/dashboard/TeamsMenu.vue.d.ts +6 -0
  38. package/dist/runtime/components/dashboard/customers/AddModal.d.vue.ts +3 -0
  39. package/dist/runtime/components/dashboard/customers/AddModal.vue +45 -0
  40. package/dist/runtime/components/dashboard/customers/AddModal.vue.d.ts +3 -0
  41. package/dist/runtime/components/dashboard/customers/DeleteModal.d.vue.ts +16 -0
  42. package/dist/runtime/components/dashboard/customers/DeleteModal.vue +28 -0
  43. package/dist/runtime/components/dashboard/customers/DeleteModal.vue.d.ts +16 -0
  44. package/dist/runtime/components/dashboard/floating-tools/FocusTimerTool.d.vue.ts +3 -0
  45. package/dist/runtime/components/dashboard/floating-tools/FocusTimerTool.vue +37 -0
  46. package/dist/runtime/components/dashboard/floating-tools/FocusTimerTool.vue.d.ts +3 -0
  47. package/dist/runtime/components/headings/H1.d.vue.ts +13 -0
  48. package/dist/runtime/components/headings/H1.vue +9 -0
  49. package/dist/runtime/components/headings/H1.vue.d.ts +13 -0
  50. package/dist/runtime/components/headings/H2.d.vue.ts +13 -0
  51. package/dist/runtime/components/headings/H2.vue +9 -0
  52. package/dist/runtime/components/headings/H2.vue.d.ts +13 -0
  53. package/dist/runtime/components/headings/H3.d.vue.ts +13 -0
  54. package/dist/runtime/components/headings/H3.vue +9 -0
  55. package/dist/runtime/components/headings/H3.vue.d.ts +13 -0
  56. package/dist/runtime/components/headings/H4.d.vue.ts +13 -0
  57. package/dist/runtime/components/headings/H4.vue +9 -0
  58. package/dist/runtime/components/headings/H4.vue.d.ts +13 -0
  59. package/dist/runtime/components/headings/H5.d.vue.ts +13 -0
  60. package/dist/runtime/components/headings/H5.vue +9 -0
  61. package/dist/runtime/components/headings/H5.vue.d.ts +13 -0
  62. package/dist/runtime/components/headings/H6.d.vue.ts +13 -0
  63. package/dist/runtime/components/headings/H6.vue +9 -0
  64. package/dist/runtime/components/headings/H6.vue.d.ts +13 -0
  65. package/dist/runtime/components/modals/ConfirmModal.d.vue.ts +3 -0
  66. package/dist/runtime/components/modals/ConfirmModal.vue +36 -0
  67. package/dist/runtime/components/modals/ConfirmModal.vue.d.ts +3 -0
  68. package/dist/runtime/components/nodes/LinkNode.vue +1 -1
  69. package/dist/runtime/components/nodes/TextNode.vue +1 -1
  70. package/dist/runtime/components/notes/NoteCard.d.vue.ts +31 -0
  71. package/dist/runtime/components/notes/NoteCard.vue +86 -0
  72. package/dist/runtime/components/notes/NoteCard.vue.d.ts +31 -0
  73. package/dist/runtime/components/notes/NoteModal.d.vue.ts +35 -0
  74. package/dist/runtime/components/notes/NoteModal.vue +224 -0
  75. package/dist/runtime/components/notes/NoteModal.vue.d.ts +35 -0
  76. package/dist/runtime/components/page/PageMention.vue +1 -1
  77. package/dist/runtime/components/page/PageSurround.vue +1 -1
  78. package/dist/runtime/components/page/PageTOC.vue +1 -1
  79. package/dist/runtime/components/swatches/ColorSwatch.vue +1 -1
  80. package/dist/runtime/components/swatches/FontSwatch.vue +1 -1
  81. package/dist/runtime/components/swatches/ImageSwatch.vue +1 -1
  82. package/dist/runtime/components/utilities/Placeholder.vue +1 -1
  83. package/dist/runtime/composables/app/index.d.ts +4 -0
  84. package/dist/runtime/composables/app/index.js +4 -0
  85. package/dist/runtime/composables/app/index.mjs +4 -0
  86. package/dist/runtime/composables/app/useApi.d.ts +9 -0
  87. package/dist/runtime/composables/app/useApi.js +56 -0
  88. package/dist/runtime/composables/app/useApi.mjs +56 -0
  89. package/dist/runtime/composables/app/useConfirm.d.ts +18 -0
  90. package/dist/runtime/composables/app/useConfirm.js +56 -0
  91. package/dist/runtime/composables/app/useConfirm.mjs +56 -0
  92. package/dist/runtime/composables/components/index.d.ts +1 -0
  93. package/dist/runtime/composables/components/index.js +1 -0
  94. package/dist/runtime/composables/components/index.mjs +1 -0
  95. package/dist/runtime/composables/dashboard/index.d.ts +5 -0
  96. package/dist/runtime/composables/dashboard/index.js +5 -0
  97. package/dist/runtime/composables/dashboard/index.mjs +5 -0
  98. package/dist/runtime/composables/dashboard/useDashboard.d.ts +3 -0
  99. package/dist/runtime/composables/dashboard/useDashboard.js +18 -0
  100. package/dist/runtime/composables/dashboard/useDashboard.mjs +18 -0
  101. package/dist/runtime/composables/dashboard/useFloatingTools.d.ts +19 -0
  102. package/dist/runtime/composables/dashboard/useFloatingTools.js +44 -0
  103. package/dist/runtime/composables/dashboard/useFloatingTools.mjs +44 -0
  104. package/dist/runtime/composables/dashboard/useFocusTimer.d.ts +44 -0
  105. package/dist/runtime/composables/dashboard/useFocusTimer.js +141 -0
  106. package/dist/runtime/composables/dashboard/useFocusTimer.mjs +141 -0
  107. package/dist/runtime/composables/dashboard/useNotes.d.ts +9 -0
  108. package/dist/runtime/composables/dashboard/useNotes.js +57 -0
  109. package/dist/runtime/composables/dashboard/useNotes.mjs +57 -0
  110. package/dist/runtime/composables/dashboard/useQuickActions.d.ts +15 -0
  111. package/dist/runtime/composables/dashboard/useQuickActions.js +19 -0
  112. package/dist/runtime/composables/dashboard/useQuickActions.mjs +19 -0
  113. package/dist/runtime/composables/index.d.ts +4 -7
  114. package/dist/runtime/composables/index.js +4 -7
  115. package/dist/runtime/composables/index.mjs +4 -7
  116. package/dist/runtime/composables/pages/index.d.ts +4 -0
  117. package/dist/runtime/composables/pages/index.js +4 -0
  118. package/dist/runtime/composables/pages/index.mjs +4 -0
  119. package/dist/runtime/composables/{useBlockEditor.d.ts → pages/useBlockEditor.d.ts} +131 -131
  120. package/dist/runtime/composables/{useInfobox.d.ts → pages/useInfobox.d.ts} +1 -1
  121. package/dist/runtime/composables/{usePageEditor.d.ts → pages/usePageEditor.d.ts} +1 -1
  122. package/dist/runtime/composables/{usePageRegistry.d.ts → pages/usePageRegistry.d.ts} +2 -2
  123. package/dist/runtime/db/auth.d.ts +2096 -0
  124. package/dist/runtime/db/auth.js +268 -0
  125. package/dist/runtime/db/auth.mjs +268 -0
  126. package/dist/runtime/db/index.d.ts +1 -0
  127. package/dist/runtime/db/index.js +1 -0
  128. package/dist/runtime/db/index.mjs +1 -0
  129. package/dist/runtime/types/index.d.ts +1 -0
  130. package/dist/runtime/types/index.js +1 -0
  131. package/dist/runtime/types/index.mjs +1 -0
  132. package/dist/runtime/types/utils.d.ts +51 -0
  133. package/dist/runtime/types/utils.js +0 -0
  134. package/dist/runtime/types/utils.mjs +0 -0
  135. package/package.json +4 -2
  136. /package/dist/runtime/composables/{useDateRange.d.ts → app/useDateRange.d.ts} +0 -0
  137. /package/dist/runtime/composables/{useDateRange.js → app/useDateRange.js} +0 -0
  138. /package/dist/runtime/composables/{useDateRange.mjs → app/useDateRange.mjs} +0 -0
  139. /package/dist/runtime/composables/{useHeaderStack.d.ts → app/useHeaderStack.d.ts} +0 -0
  140. /package/dist/runtime/composables/{useHeaderStack.js → app/useHeaderStack.js} +0 -0
  141. /package/dist/runtime/composables/{useHeaderStack.mjs → app/useHeaderStack.mjs} +0 -0
  142. /package/dist/runtime/composables/{useRC.d.ts → components/useRC.d.ts} +0 -0
  143. /package/dist/runtime/composables/{useRC.js → components/useRC.js} +0 -0
  144. /package/dist/runtime/composables/{useRC.mjs → components/useRC.mjs} +0 -0
  145. /package/dist/runtime/composables/{useBlockEditor.js → pages/useBlockEditor.js} +0 -0
  146. /package/dist/runtime/composables/{useBlockEditor.mjs → pages/useBlockEditor.mjs} +0 -0
  147. /package/dist/runtime/composables/{useInfobox.js → pages/useInfobox.js} +0 -0
  148. /package/dist/runtime/composables/{useInfobox.mjs → pages/useInfobox.mjs} +0 -0
  149. /package/dist/runtime/composables/{usePageEditor.js → pages/usePageEditor.js} +0 -0
  150. /package/dist/runtime/composables/{usePageEditor.mjs → pages/usePageEditor.mjs} +0 -0
  151. /package/dist/runtime/composables/{usePageRegistry.js → pages/usePageRegistry.js} +0 -0
  152. /package/dist/runtime/composables/{usePageRegistry.mjs → pages/usePageRegistry.mjs} +0 -0
@@ -1,5 +1,5 @@
1
1
  import { type Ref } from "vue";
2
- import type { Block } from "../types/index.js";
2
+ import type { Block } from "~/src/runtime/types";
3
3
  export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistorySize, onMutation }?: {
4
4
  maxHistorySize?: number;
5
5
  onMutation?: () => void;
@@ -16,7 +16,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16
16
  committedBlocks: Ref<({
17
17
  type: "SectionBlock";
18
18
  props: {
19
- level: import("../types/index.js").HeadingLevel;
19
+ level: import("~/src/runtime/types").HeadingLevel;
20
20
  title: string;
21
21
  description?: string | undefined;
22
22
  children: (/*elided*/ any | {
@@ -2637,7 +2637,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
2637
2637
  children: ({
2638
2638
  type: "SectionBlock";
2639
2639
  props: {
2640
- level: import("../types/index.js").HeadingLevel;
2640
+ level: import("~/src/runtime/types").HeadingLevel;
2641
2641
  title: string;
2642
2642
  description?: string | undefined;
2643
2643
  children: (/*elided*/ any | {
@@ -3316,7 +3316,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3316
3316
  items: ({
3317
3317
  type: "SectionBlock";
3318
3318
  props: {
3319
- level: import("../types/index.js").HeadingLevel;
3319
+ level: import("~/src/runtime/types").HeadingLevel;
3320
3320
  title: string;
3321
3321
  description?: string | undefined;
3322
3322
  children: (/*elided*/ any | {
@@ -3565,7 +3565,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3565
3565
  children: ({
3566
3566
  type: "SectionBlock";
3567
3567
  props: {
3568
- level: import("../types/index.js").HeadingLevel;
3568
+ level: import("~/src/runtime/types").HeadingLevel;
3569
3569
  title: string;
3570
3570
  description?: string | undefined;
3571
3571
  children: (/*elided*/ any | {
@@ -3686,7 +3686,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3686
3686
  children: ({
3687
3687
  type: "SectionBlock";
3688
3688
  props: {
3689
- level: import("../types/index.js").HeadingLevel;
3689
+ level: import("~/src/runtime/types").HeadingLevel;
3690
3690
  title: string;
3691
3691
  description?: string | undefined;
3692
3692
  children: (/*elided*/ any | {
@@ -3761,7 +3761,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3761
3761
  children: ({
3762
3762
  type: "SectionBlock";
3763
3763
  props: {
3764
- level: import("../types/index.js").HeadingLevel;
3764
+ level: import("~/src/runtime/types").HeadingLevel;
3765
3765
  title: string;
3766
3766
  description?: string | undefined;
3767
3767
  children: (/*elided*/ any | {
@@ -3884,7 +3884,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3884
3884
  children: ({
3885
3885
  type: "SectionBlock";
3886
3886
  props: {
3887
- level: import("../types/index.js").HeadingLevel;
3887
+ level: import("~/src/runtime/types").HeadingLevel;
3888
3888
  title: string;
3889
3889
  description?: string | undefined;
3890
3890
  children: (/*elided*/ any | {
@@ -3964,7 +3964,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
3964
3964
  children: ({
3965
3965
  type: "SectionBlock";
3966
3966
  props: {
3967
- level: import("../types/index.js").HeadingLevel;
3967
+ level: import("~/src/runtime/types").HeadingLevel;
3968
3968
  title: string;
3969
3969
  description?: string | undefined;
3970
3970
  children: (/*elided*/ any | {
@@ -4201,7 +4201,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4201
4201
  items: ({
4202
4202
  type: "SectionBlock";
4203
4203
  props: {
4204
- level: import("../types/index.js").HeadingLevel;
4204
+ level: import("~/src/runtime/types").HeadingLevel;
4205
4205
  title: string;
4206
4206
  description?: string | undefined;
4207
4207
  children: (/*elided*/ any | {
@@ -4322,7 +4322,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4322
4322
  children: ({
4323
4323
  type: "SectionBlock";
4324
4324
  props: {
4325
- level: import("../types/index.js").HeadingLevel;
4325
+ level: import("~/src/runtime/types").HeadingLevel;
4326
4326
  title: string;
4327
4327
  description?: string | undefined;
4328
4328
  children: (/*elided*/ any | {
@@ -4397,7 +4397,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4397
4397
  children: ({
4398
4398
  type: "SectionBlock";
4399
4399
  props: {
4400
- level: import("../types/index.js").HeadingLevel;
4400
+ level: import("~/src/runtime/types").HeadingLevel;
4401
4401
  title: string;
4402
4402
  description?: string | undefined;
4403
4403
  children: (/*elided*/ any | {
@@ -4512,7 +4512,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4512
4512
  items: ({
4513
4513
  type: "SectionBlock";
4514
4514
  props: {
4515
- level: import("../types/index.js").HeadingLevel;
4515
+ level: import("~/src/runtime/types").HeadingLevel;
4516
4516
  title: string;
4517
4517
  description?: string | undefined;
4518
4518
  children: (/*elided*/ any | {
@@ -4591,7 +4591,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4591
4591
  children: ({
4592
4592
  type: "SectionBlock";
4593
4593
  props: {
4594
- level: import("../types/index.js").HeadingLevel;
4594
+ level: import("~/src/runtime/types").HeadingLevel;
4595
4595
  title: string;
4596
4596
  description?: string | undefined;
4597
4597
  children: (/*elided*/ any | {
@@ -4830,7 +4830,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4830
4830
  items: ({
4831
4831
  type: "SectionBlock";
4832
4832
  props: {
4833
- level: import("../types/index.js").HeadingLevel;
4833
+ level: import("~/src/runtime/types").HeadingLevel;
4834
4834
  title: string;
4835
4835
  description?: string | undefined;
4836
4836
  children: (/*elided*/ any | {
@@ -4953,7 +4953,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
4953
4953
  children: ({
4954
4954
  type: "SectionBlock";
4955
4955
  props: {
4956
- level: import("../types/index.js").HeadingLevel;
4956
+ level: import("~/src/runtime/types").HeadingLevel;
4957
4957
  title: string;
4958
4958
  description?: string | undefined;
4959
4959
  children: (/*elided*/ any | {
@@ -5029,7 +5029,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5029
5029
  children: ({
5030
5030
  type: "SectionBlock";
5031
5031
  props: {
5032
- level: import("../types/index.js").HeadingLevel;
5032
+ level: import("~/src/runtime/types").HeadingLevel;
5033
5033
  title: string;
5034
5034
  description?: string | undefined;
5035
5035
  children: (/*elided*/ any | {
@@ -5144,7 +5144,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5144
5144
  items: ({
5145
5145
  type: "SectionBlock";
5146
5146
  props: {
5147
- level: import("../types/index.js").HeadingLevel;
5147
+ level: import("~/src/runtime/types").HeadingLevel;
5148
5148
  title: string;
5149
5149
  description?: string | undefined;
5150
5150
  children: (/*elided*/ any | {
@@ -5243,7 +5243,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5243
5243
  items: ({
5244
5244
  type: "SectionBlock";
5245
5245
  props: {
5246
- level: import("../types/index.js").HeadingLevel;
5246
+ level: import("~/src/runtime/types").HeadingLevel;
5247
5247
  title: string;
5248
5248
  description?: string | undefined;
5249
5249
  children: (/*elided*/ any | {
@@ -5921,7 +5921,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
5921
5921
  children: ({
5922
5922
  type: "SectionBlock";
5923
5923
  props: {
5924
- level: import("../types/index.js").HeadingLevel;
5924
+ level: import("~/src/runtime/types").HeadingLevel;
5925
5925
  title: string;
5926
5926
  description?: string | undefined;
5927
5927
  children: (/*elided*/ any | {
@@ -6170,7 +6170,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6170
6170
  children: ({
6171
6171
  type: "SectionBlock";
6172
6172
  props: {
6173
- level: import("../types/index.js").HeadingLevel;
6173
+ level: import("~/src/runtime/types").HeadingLevel;
6174
6174
  title: string;
6175
6175
  description?: string | undefined;
6176
6176
  children: (/*elided*/ any | {
@@ -6291,7 +6291,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6291
6291
  children: ({
6292
6292
  type: "SectionBlock";
6293
6293
  props: {
6294
- level: import("../types/index.js").HeadingLevel;
6294
+ level: import("~/src/runtime/types").HeadingLevel;
6295
6295
  title: string;
6296
6296
  description?: string | undefined;
6297
6297
  children: (/*elided*/ any | {
@@ -6366,7 +6366,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6366
6366
  children: ({
6367
6367
  type: "SectionBlock";
6368
6368
  props: {
6369
- level: import("../types/index.js").HeadingLevel;
6369
+ level: import("~/src/runtime/types").HeadingLevel;
6370
6370
  title: string;
6371
6371
  description?: string | undefined;
6372
6372
  children: (/*elided*/ any | {
@@ -6489,7 +6489,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6489
6489
  children: ({
6490
6490
  type: "SectionBlock";
6491
6491
  props: {
6492
- level: import("../types/index.js").HeadingLevel;
6492
+ level: import("~/src/runtime/types").HeadingLevel;
6493
6493
  title: string;
6494
6494
  description?: string | undefined;
6495
6495
  children: (/*elided*/ any | {
@@ -6588,7 +6588,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6588
6588
  children: ({
6589
6589
  type: "SectionBlock";
6590
6590
  props: {
6591
- level: import("../types/index.js").HeadingLevel;
6591
+ level: import("~/src/runtime/types").HeadingLevel;
6592
6592
  title: string;
6593
6593
  description?: string | undefined;
6594
6594
  children: (/*elided*/ any | {
@@ -6815,7 +6815,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6815
6815
  children: ({
6816
6816
  type: "SectionBlock";
6817
6817
  props: {
6818
- level: import("../types/index.js").HeadingLevel;
6818
+ level: import("~/src/runtime/types").HeadingLevel;
6819
6819
  title: string;
6820
6820
  description?: string | undefined;
6821
6821
  children: (/*elided*/ any | {
@@ -6936,7 +6936,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
6936
6936
  children: ({
6937
6937
  type: "SectionBlock";
6938
6938
  props: {
6939
- level: import("../types/index.js").HeadingLevel;
6939
+ level: import("~/src/runtime/types").HeadingLevel;
6940
6940
  title: string;
6941
6941
  description?: string | undefined;
6942
6942
  children: (/*elided*/ any | {
@@ -7030,7 +7030,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7030
7030
  children: ({
7031
7031
  type: "SectionBlock";
7032
7032
  props: {
7033
- level: import("../types/index.js").HeadingLevel;
7033
+ level: import("~/src/runtime/types").HeadingLevel;
7034
7034
  title: string;
7035
7035
  description?: string | undefined;
7036
7036
  children: (/*elided*/ any | {
@@ -7132,7 +7132,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7132
7132
  children: ({
7133
7133
  type: "SectionBlock";
7134
7134
  props: {
7135
- level: import("../types/index.js").HeadingLevel;
7135
+ level: import("~/src/runtime/types").HeadingLevel;
7136
7136
  title: string;
7137
7137
  description?: string | undefined;
7138
7138
  children: (/*elided*/ any | {
@@ -7230,7 +7230,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7230
7230
  children: ({
7231
7231
  type: "SectionBlock";
7232
7232
  props: {
7233
- level: import("../types/index.js").HeadingLevel;
7233
+ level: import("~/src/runtime/types").HeadingLevel;
7234
7234
  title: string;
7235
7235
  description?: string | undefined;
7236
7236
  children: (/*elided*/ any | {
@@ -7459,7 +7459,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7459
7459
  children: ({
7460
7460
  type: "SectionBlock";
7461
7461
  props: {
7462
- level: import("../types/index.js").HeadingLevel;
7462
+ level: import("~/src/runtime/types").HeadingLevel;
7463
7463
  title: string;
7464
7464
  description?: string | undefined;
7465
7465
  children: (/*elided*/ any | {
@@ -7582,7 +7582,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7582
7582
  children: ({
7583
7583
  type: "SectionBlock";
7584
7584
  props: {
7585
- level: import("../types/index.js").HeadingLevel;
7585
+ level: import("~/src/runtime/types").HeadingLevel;
7586
7586
  title: string;
7587
7587
  description?: string | undefined;
7588
7588
  children: (/*elided*/ any | {
@@ -7677,7 +7677,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7677
7677
  children: ({
7678
7678
  type: "SectionBlock";
7679
7679
  props: {
7680
- level: import("../types/index.js").HeadingLevel;
7680
+ level: import("~/src/runtime/types").HeadingLevel;
7681
7681
  title: string;
7682
7682
  description?: string | undefined;
7683
7683
  children: (/*elided*/ any | {
@@ -7779,7 +7779,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7779
7779
  children: ({
7780
7780
  type: "SectionBlock";
7781
7781
  props: {
7782
- level: import("../types/index.js").HeadingLevel;
7782
+ level: import("~/src/runtime/types").HeadingLevel;
7783
7783
  title: string;
7784
7784
  description?: string | undefined;
7785
7785
  children: (/*elided*/ any | {
@@ -7882,7 +7882,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
7882
7882
  children: ({
7883
7883
  type: "SectionBlock";
7884
7884
  props: {
7885
- level: import("../types/index.js").HeadingLevel;
7885
+ level: import("~/src/runtime/types").HeadingLevel;
7886
7886
  title: string;
7887
7887
  description?: string | undefined;
7888
7888
  children: (/*elided*/ any | {
@@ -8540,7 +8540,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8540
8540
  children: ({
8541
8541
  type: "SectionBlock";
8542
8542
  props: {
8543
- level: import("../types/index.js").HeadingLevel;
8543
+ level: import("~/src/runtime/types").HeadingLevel;
8544
8544
  title: string;
8545
8545
  description?: string | undefined;
8546
8546
  children: (/*elided*/ any | {
@@ -8777,7 +8777,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8777
8777
  items: ({
8778
8778
  type: "SectionBlock";
8779
8779
  props: {
8780
- level: import("../types/index.js").HeadingLevel;
8780
+ level: import("~/src/runtime/types").HeadingLevel;
8781
8781
  title: string;
8782
8782
  description?: string | undefined;
8783
8783
  children: (/*elided*/ any | {
@@ -8898,7 +8898,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8898
8898
  children: ({
8899
8899
  type: "SectionBlock";
8900
8900
  props: {
8901
- level: import("../types/index.js").HeadingLevel;
8901
+ level: import("~/src/runtime/types").HeadingLevel;
8902
8902
  title: string;
8903
8903
  description?: string | undefined;
8904
8904
  children: (/*elided*/ any | {
@@ -8973,7 +8973,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
8973
8973
  children: ({
8974
8974
  type: "SectionBlock";
8975
8975
  props: {
8976
- level: import("../types/index.js").HeadingLevel;
8976
+ level: import("~/src/runtime/types").HeadingLevel;
8977
8977
  title: string;
8978
8978
  description?: string | undefined;
8979
8979
  children: (/*elided*/ any | {
@@ -9088,7 +9088,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9088
9088
  items: ({
9089
9089
  type: "SectionBlock";
9090
9090
  props: {
9091
- level: import("../types/index.js").HeadingLevel;
9091
+ level: import("~/src/runtime/types").HeadingLevel;
9092
9092
  title: string;
9093
9093
  description?: string | undefined;
9094
9094
  children: (/*elided*/ any | {
@@ -9183,7 +9183,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9183
9183
  items: ({
9184
9184
  type: "SectionBlock";
9185
9185
  props: {
9186
- level: import("../types/index.js").HeadingLevel;
9186
+ level: import("~/src/runtime/types").HeadingLevel;
9187
9187
  title: string;
9188
9188
  description?: string | undefined;
9189
9189
  children: (/*elided*/ any | {
@@ -9410,7 +9410,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9410
9410
  children: ({
9411
9411
  type: "SectionBlock";
9412
9412
  props: {
9413
- level: import("../types/index.js").HeadingLevel;
9413
+ level: import("~/src/runtime/types").HeadingLevel;
9414
9414
  title: string;
9415
9415
  description?: string | undefined;
9416
9416
  children: (/*elided*/ any | {
@@ -9531,7 +9531,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9531
9531
  children: ({
9532
9532
  type: "SectionBlock";
9533
9533
  props: {
9534
- level: import("../types/index.js").HeadingLevel;
9534
+ level: import("~/src/runtime/types").HeadingLevel;
9535
9535
  title: string;
9536
9536
  description?: string | undefined;
9537
9537
  children: (/*elided*/ any | {
@@ -9625,7 +9625,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9625
9625
  children: ({
9626
9626
  type: "SectionBlock";
9627
9627
  props: {
9628
- level: import("../types/index.js").HeadingLevel;
9628
+ level: import("~/src/runtime/types").HeadingLevel;
9629
9629
  title: string;
9630
9630
  description?: string | undefined;
9631
9631
  children: (/*elided*/ any | {
@@ -9727,7 +9727,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9727
9727
  children: ({
9728
9728
  type: "SectionBlock";
9729
9729
  props: {
9730
- level: import("../types/index.js").HeadingLevel;
9730
+ level: import("~/src/runtime/types").HeadingLevel;
9731
9731
  title: string;
9732
9732
  description?: string | undefined;
9733
9733
  children: (/*elided*/ any | {
@@ -9825,7 +9825,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
9825
9825
  children: ({
9826
9826
  type: "SectionBlock";
9827
9827
  props: {
9828
- level: import("../types/index.js").HeadingLevel;
9828
+ level: import("~/src/runtime/types").HeadingLevel;
9829
9829
  title: string;
9830
9830
  description?: string | undefined;
9831
9831
  children: (/*elided*/ any | {
@@ -10046,7 +10046,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10046
10046
  children: ({
10047
10047
  type: "SectionBlock";
10048
10048
  props: {
10049
- level: import("../types/index.js").HeadingLevel;
10049
+ level: import("~/src/runtime/types").HeadingLevel;
10050
10050
  title: string;
10051
10051
  description?: string | undefined;
10052
10052
  children: (/*elided*/ any | {
@@ -10161,7 +10161,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10161
10161
  items: ({
10162
10162
  type: "SectionBlock";
10163
10163
  props: {
10164
- level: import("../types/index.js").HeadingLevel;
10164
+ level: import("~/src/runtime/types").HeadingLevel;
10165
10165
  title: string;
10166
10166
  description?: string | undefined;
10167
10167
  children: (/*elided*/ any | {
@@ -10252,7 +10252,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10252
10252
  items: ({
10253
10253
  type: "SectionBlock";
10254
10254
  props: {
10255
- level: import("../types/index.js").HeadingLevel;
10255
+ level: import("~/src/runtime/types").HeadingLevel;
10256
10256
  title: string;
10257
10257
  description?: string | undefined;
10258
10258
  children: (/*elided*/ any | {
@@ -10354,7 +10354,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10354
10354
  children: ({
10355
10355
  type: "SectionBlock";
10356
10356
  props: {
10357
- level: import("../types/index.js").HeadingLevel;
10357
+ level: import("~/src/runtime/types").HeadingLevel;
10358
10358
  title: string;
10359
10359
  description?: string | undefined;
10360
10360
  children: (/*elided*/ any | {
@@ -10456,7 +10456,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
10456
10456
  children: ({
10457
10457
  type: "SectionBlock";
10458
10458
  props: {
10459
- level: import("../types/index.js").HeadingLevel;
10459
+ level: import("~/src/runtime/types").HeadingLevel;
10460
10460
  title: string;
10461
10461
  description?: string | undefined;
10462
10462
  children: (/*elided*/ any | {
@@ -11119,7 +11119,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11119
11119
  children: ({
11120
11120
  type: "SectionBlock";
11121
11121
  props: {
11122
- level: import("../types/index.js").HeadingLevel;
11122
+ level: import("~/src/runtime/types").HeadingLevel;
11123
11123
  title: string;
11124
11124
  description?: string | undefined;
11125
11125
  children: (/*elided*/ any | {
@@ -11358,7 +11358,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11358
11358
  items: ({
11359
11359
  type: "SectionBlock";
11360
11360
  props: {
11361
- level: import("../types/index.js").HeadingLevel;
11361
+ level: import("~/src/runtime/types").HeadingLevel;
11362
11362
  title: string;
11363
11363
  description?: string | undefined;
11364
11364
  children: (/*elided*/ any | {
@@ -11481,7 +11481,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11481
11481
  children: ({
11482
11482
  type: "SectionBlock";
11483
11483
  props: {
11484
- level: import("../types/index.js").HeadingLevel;
11484
+ level: import("~/src/runtime/types").HeadingLevel;
11485
11485
  title: string;
11486
11486
  description?: string | undefined;
11487
11487
  children: (/*elided*/ any | {
@@ -11557,7 +11557,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11557
11557
  children: ({
11558
11558
  type: "SectionBlock";
11559
11559
  props: {
11560
- level: import("../types/index.js").HeadingLevel;
11560
+ level: import("~/src/runtime/types").HeadingLevel;
11561
11561
  title: string;
11562
11562
  description?: string | undefined;
11563
11563
  children: (/*elided*/ any | {
@@ -11672,7 +11672,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11672
11672
  items: ({
11673
11673
  type: "SectionBlock";
11674
11674
  props: {
11675
- level: import("../types/index.js").HeadingLevel;
11675
+ level: import("~/src/runtime/types").HeadingLevel;
11676
11676
  title: string;
11677
11677
  description?: string | undefined;
11678
11678
  children: (/*elided*/ any | {
@@ -11767,7 +11767,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11767
11767
  items: ({
11768
11768
  type: "SectionBlock";
11769
11769
  props: {
11770
- level: import("../types/index.js").HeadingLevel;
11770
+ level: import("~/src/runtime/types").HeadingLevel;
11771
11771
  title: string;
11772
11772
  description?: string | undefined;
11773
11773
  children: (/*elided*/ any | {
@@ -11996,7 +11996,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
11996
11996
  children: ({
11997
11997
  type: "SectionBlock";
11998
11998
  props: {
11999
- level: import("../types/index.js").HeadingLevel;
11999
+ level: import("~/src/runtime/types").HeadingLevel;
12000
12000
  title: string;
12001
12001
  description?: string | undefined;
12002
12002
  children: (/*elided*/ any | {
@@ -12119,7 +12119,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12119
12119
  children: ({
12120
12120
  type: "SectionBlock";
12121
12121
  props: {
12122
- level: import("../types/index.js").HeadingLevel;
12122
+ level: import("~/src/runtime/types").HeadingLevel;
12123
12123
  title: string;
12124
12124
  description?: string | undefined;
12125
12125
  children: (/*elided*/ any | {
@@ -12214,7 +12214,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12214
12214
  children: ({
12215
12215
  type: "SectionBlock";
12216
12216
  props: {
12217
- level: import("../types/index.js").HeadingLevel;
12217
+ level: import("~/src/runtime/types").HeadingLevel;
12218
12218
  title: string;
12219
12219
  description?: string | undefined;
12220
12220
  children: (/*elided*/ any | {
@@ -12316,7 +12316,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12316
12316
  children: ({
12317
12317
  type: "SectionBlock";
12318
12318
  props: {
12319
- level: import("../types/index.js").HeadingLevel;
12319
+ level: import("~/src/runtime/types").HeadingLevel;
12320
12320
  title: string;
12321
12321
  description?: string | undefined;
12322
12322
  children: (/*elided*/ any | {
@@ -12415,7 +12415,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12415
12415
  children: ({
12416
12416
  type: "SectionBlock";
12417
12417
  props: {
12418
- level: import("../types/index.js").HeadingLevel;
12418
+ level: import("~/src/runtime/types").HeadingLevel;
12419
12419
  title: string;
12420
12420
  description?: string | undefined;
12421
12421
  children: (/*elided*/ any | {
@@ -12636,7 +12636,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12636
12636
  children: ({
12637
12637
  type: "SectionBlock";
12638
12638
  props: {
12639
- level: import("../types/index.js").HeadingLevel;
12639
+ level: import("~/src/runtime/types").HeadingLevel;
12640
12640
  title: string;
12641
12641
  description?: string | undefined;
12642
12642
  children: (/*elided*/ any | {
@@ -12751,7 +12751,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12751
12751
  items: ({
12752
12752
  type: "SectionBlock";
12753
12753
  props: {
12754
- level: import("../types/index.js").HeadingLevel;
12754
+ level: import("~/src/runtime/types").HeadingLevel;
12755
12755
  title: string;
12756
12756
  description?: string | undefined;
12757
12757
  children: (/*elided*/ any | {
@@ -12842,7 +12842,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12842
12842
  items: ({
12843
12843
  type: "SectionBlock";
12844
12844
  props: {
12845
- level: import("../types/index.js").HeadingLevel;
12845
+ level: import("~/src/runtime/types").HeadingLevel;
12846
12846
  title: string;
12847
12847
  description?: string | undefined;
12848
12848
  children: (/*elided*/ any | {
@@ -12944,7 +12944,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
12944
12944
  children: ({
12945
12945
  type: "SectionBlock";
12946
12946
  props: {
12947
- level: import("../types/index.js").HeadingLevel;
12947
+ level: import("~/src/runtime/types").HeadingLevel;
12948
12948
  title: string;
12949
12949
  description?: string | undefined;
12950
12950
  children: (/*elided*/ any | {
@@ -13040,7 +13040,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
13040
13040
  })[], Block[] | ({
13041
13041
  type: "SectionBlock";
13042
13042
  props: {
13043
- level: import("../types/index.js").HeadingLevel;
13043
+ level: import("~/src/runtime/types").HeadingLevel;
13044
13044
  title: string;
13045
13045
  description?: string | undefined;
13046
13046
  children: (/*elided*/ any | {
@@ -15661,7 +15661,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
15661
15661
  children: ({
15662
15662
  type: "SectionBlock";
15663
15663
  props: {
15664
- level: import("../types/index.js").HeadingLevel;
15664
+ level: import("~/src/runtime/types").HeadingLevel;
15665
15665
  title: string;
15666
15666
  description?: string | undefined;
15667
15667
  children: (/*elided*/ any | {
@@ -16340,7 +16340,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16340
16340
  items: ({
16341
16341
  type: "SectionBlock";
16342
16342
  props: {
16343
- level: import("../types/index.js").HeadingLevel;
16343
+ level: import("~/src/runtime/types").HeadingLevel;
16344
16344
  title: string;
16345
16345
  description?: string | undefined;
16346
16346
  children: (/*elided*/ any | {
@@ -16589,7 +16589,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16589
16589
  children: ({
16590
16590
  type: "SectionBlock";
16591
16591
  props: {
16592
- level: import("../types/index.js").HeadingLevel;
16592
+ level: import("~/src/runtime/types").HeadingLevel;
16593
16593
  title: string;
16594
16594
  description?: string | undefined;
16595
16595
  children: (/*elided*/ any | {
@@ -16710,7 +16710,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16710
16710
  children: ({
16711
16711
  type: "SectionBlock";
16712
16712
  props: {
16713
- level: import("../types/index.js").HeadingLevel;
16713
+ level: import("~/src/runtime/types").HeadingLevel;
16714
16714
  title: string;
16715
16715
  description?: string | undefined;
16716
16716
  children: (/*elided*/ any | {
@@ -16785,7 +16785,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16785
16785
  children: ({
16786
16786
  type: "SectionBlock";
16787
16787
  props: {
16788
- level: import("../types/index.js").HeadingLevel;
16788
+ level: import("~/src/runtime/types").HeadingLevel;
16789
16789
  title: string;
16790
16790
  description?: string | undefined;
16791
16791
  children: (/*elided*/ any | {
@@ -16908,7 +16908,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16908
16908
  children: ({
16909
16909
  type: "SectionBlock";
16910
16910
  props: {
16911
- level: import("../types/index.js").HeadingLevel;
16911
+ level: import("~/src/runtime/types").HeadingLevel;
16912
16912
  title: string;
16913
16913
  description?: string | undefined;
16914
16914
  children: (/*elided*/ any | {
@@ -16988,7 +16988,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
16988
16988
  children: ({
16989
16989
  type: "SectionBlock";
16990
16990
  props: {
16991
- level: import("../types/index.js").HeadingLevel;
16991
+ level: import("~/src/runtime/types").HeadingLevel;
16992
16992
  title: string;
16993
16993
  description?: string | undefined;
16994
16994
  children: (/*elided*/ any | {
@@ -17225,7 +17225,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17225
17225
  items: ({
17226
17226
  type: "SectionBlock";
17227
17227
  props: {
17228
- level: import("../types/index.js").HeadingLevel;
17228
+ level: import("~/src/runtime/types").HeadingLevel;
17229
17229
  title: string;
17230
17230
  description?: string | undefined;
17231
17231
  children: (/*elided*/ any | {
@@ -17346,7 +17346,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17346
17346
  children: ({
17347
17347
  type: "SectionBlock";
17348
17348
  props: {
17349
- level: import("../types/index.js").HeadingLevel;
17349
+ level: import("~/src/runtime/types").HeadingLevel;
17350
17350
  title: string;
17351
17351
  description?: string | undefined;
17352
17352
  children: (/*elided*/ any | {
@@ -17421,7 +17421,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17421
17421
  children: ({
17422
17422
  type: "SectionBlock";
17423
17423
  props: {
17424
- level: import("../types/index.js").HeadingLevel;
17424
+ level: import("~/src/runtime/types").HeadingLevel;
17425
17425
  title: string;
17426
17426
  description?: string | undefined;
17427
17427
  children: (/*elided*/ any | {
@@ -17536,7 +17536,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17536
17536
  items: ({
17537
17537
  type: "SectionBlock";
17538
17538
  props: {
17539
- level: import("../types/index.js").HeadingLevel;
17539
+ level: import("~/src/runtime/types").HeadingLevel;
17540
17540
  title: string;
17541
17541
  description?: string | undefined;
17542
17542
  children: (/*elided*/ any | {
@@ -17615,7 +17615,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17615
17615
  children: ({
17616
17616
  type: "SectionBlock";
17617
17617
  props: {
17618
- level: import("../types/index.js").HeadingLevel;
17618
+ level: import("~/src/runtime/types").HeadingLevel;
17619
17619
  title: string;
17620
17620
  description?: string | undefined;
17621
17621
  children: (/*elided*/ any | {
@@ -17854,7 +17854,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17854
17854
  items: ({
17855
17855
  type: "SectionBlock";
17856
17856
  props: {
17857
- level: import("../types/index.js").HeadingLevel;
17857
+ level: import("~/src/runtime/types").HeadingLevel;
17858
17858
  title: string;
17859
17859
  description?: string | undefined;
17860
17860
  children: (/*elided*/ any | {
@@ -17977,7 +17977,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
17977
17977
  children: ({
17978
17978
  type: "SectionBlock";
17979
17979
  props: {
17980
- level: import("../types/index.js").HeadingLevel;
17980
+ level: import("~/src/runtime/types").HeadingLevel;
17981
17981
  title: string;
17982
17982
  description?: string | undefined;
17983
17983
  children: (/*elided*/ any | {
@@ -18053,7 +18053,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
18053
18053
  children: ({
18054
18054
  type: "SectionBlock";
18055
18055
  props: {
18056
- level: import("../types/index.js").HeadingLevel;
18056
+ level: import("~/src/runtime/types").HeadingLevel;
18057
18057
  title: string;
18058
18058
  description?: string | undefined;
18059
18059
  children: (/*elided*/ any | {
@@ -18168,7 +18168,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
18168
18168
  items: ({
18169
18169
  type: "SectionBlock";
18170
18170
  props: {
18171
- level: import("../types/index.js").HeadingLevel;
18171
+ level: import("~/src/runtime/types").HeadingLevel;
18172
18172
  title: string;
18173
18173
  description?: string | undefined;
18174
18174
  children: (/*elided*/ any | {
@@ -18267,7 +18267,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
18267
18267
  items: ({
18268
18268
  type: "SectionBlock";
18269
18269
  props: {
18270
- level: import("../types/index.js").HeadingLevel;
18270
+ level: import("~/src/runtime/types").HeadingLevel;
18271
18271
  title: string;
18272
18272
  description?: string | undefined;
18273
18273
  children: (/*elided*/ any | {
@@ -18945,7 +18945,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
18945
18945
  children: ({
18946
18946
  type: "SectionBlock";
18947
18947
  props: {
18948
- level: import("../types/index.js").HeadingLevel;
18948
+ level: import("~/src/runtime/types").HeadingLevel;
18949
18949
  title: string;
18950
18950
  description?: string | undefined;
18951
18951
  children: (/*elided*/ any | {
@@ -19194,7 +19194,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19194
19194
  children: ({
19195
19195
  type: "SectionBlock";
19196
19196
  props: {
19197
- level: import("../types/index.js").HeadingLevel;
19197
+ level: import("~/src/runtime/types").HeadingLevel;
19198
19198
  title: string;
19199
19199
  description?: string | undefined;
19200
19200
  children: (/*elided*/ any | {
@@ -19315,7 +19315,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19315
19315
  children: ({
19316
19316
  type: "SectionBlock";
19317
19317
  props: {
19318
- level: import("../types/index.js").HeadingLevel;
19318
+ level: import("~/src/runtime/types").HeadingLevel;
19319
19319
  title: string;
19320
19320
  description?: string | undefined;
19321
19321
  children: (/*elided*/ any | {
@@ -19390,7 +19390,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19390
19390
  children: ({
19391
19391
  type: "SectionBlock";
19392
19392
  props: {
19393
- level: import("../types/index.js").HeadingLevel;
19393
+ level: import("~/src/runtime/types").HeadingLevel;
19394
19394
  title: string;
19395
19395
  description?: string | undefined;
19396
19396
  children: (/*elided*/ any | {
@@ -19513,7 +19513,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19513
19513
  children: ({
19514
19514
  type: "SectionBlock";
19515
19515
  props: {
19516
- level: import("../types/index.js").HeadingLevel;
19516
+ level: import("~/src/runtime/types").HeadingLevel;
19517
19517
  title: string;
19518
19518
  description?: string | undefined;
19519
19519
  children: (/*elided*/ any | {
@@ -19612,7 +19612,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19612
19612
  children: ({
19613
19613
  type: "SectionBlock";
19614
19614
  props: {
19615
- level: import("../types/index.js").HeadingLevel;
19615
+ level: import("~/src/runtime/types").HeadingLevel;
19616
19616
  title: string;
19617
19617
  description?: string | undefined;
19618
19618
  children: (/*elided*/ any | {
@@ -19839,7 +19839,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19839
19839
  children: ({
19840
19840
  type: "SectionBlock";
19841
19841
  props: {
19842
- level: import("../types/index.js").HeadingLevel;
19842
+ level: import("~/src/runtime/types").HeadingLevel;
19843
19843
  title: string;
19844
19844
  description?: string | undefined;
19845
19845
  children: (/*elided*/ any | {
@@ -19960,7 +19960,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
19960
19960
  children: ({
19961
19961
  type: "SectionBlock";
19962
19962
  props: {
19963
- level: import("../types/index.js").HeadingLevel;
19963
+ level: import("~/src/runtime/types").HeadingLevel;
19964
19964
  title: string;
19965
19965
  description?: string | undefined;
19966
19966
  children: (/*elided*/ any | {
@@ -20054,7 +20054,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20054
20054
  children: ({
20055
20055
  type: "SectionBlock";
20056
20056
  props: {
20057
- level: import("../types/index.js").HeadingLevel;
20057
+ level: import("~/src/runtime/types").HeadingLevel;
20058
20058
  title: string;
20059
20059
  description?: string | undefined;
20060
20060
  children: (/*elided*/ any | {
@@ -20156,7 +20156,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20156
20156
  children: ({
20157
20157
  type: "SectionBlock";
20158
20158
  props: {
20159
- level: import("../types/index.js").HeadingLevel;
20159
+ level: import("~/src/runtime/types").HeadingLevel;
20160
20160
  title: string;
20161
20161
  description?: string | undefined;
20162
20162
  children: (/*elided*/ any | {
@@ -20254,7 +20254,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20254
20254
  children: ({
20255
20255
  type: "SectionBlock";
20256
20256
  props: {
20257
- level: import("../types/index.js").HeadingLevel;
20257
+ level: import("~/src/runtime/types").HeadingLevel;
20258
20258
  title: string;
20259
20259
  description?: string | undefined;
20260
20260
  children: (/*elided*/ any | {
@@ -20483,7 +20483,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20483
20483
  children: ({
20484
20484
  type: "SectionBlock";
20485
20485
  props: {
20486
- level: import("../types/index.js").HeadingLevel;
20486
+ level: import("~/src/runtime/types").HeadingLevel;
20487
20487
  title: string;
20488
20488
  description?: string | undefined;
20489
20489
  children: (/*elided*/ any | {
@@ -20606,7 +20606,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20606
20606
  children: ({
20607
20607
  type: "SectionBlock";
20608
20608
  props: {
20609
- level: import("../types/index.js").HeadingLevel;
20609
+ level: import("~/src/runtime/types").HeadingLevel;
20610
20610
  title: string;
20611
20611
  description?: string | undefined;
20612
20612
  children: (/*elided*/ any | {
@@ -20701,7 +20701,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20701
20701
  children: ({
20702
20702
  type: "SectionBlock";
20703
20703
  props: {
20704
- level: import("../types/index.js").HeadingLevel;
20704
+ level: import("~/src/runtime/types").HeadingLevel;
20705
20705
  title: string;
20706
20706
  description?: string | undefined;
20707
20707
  children: (/*elided*/ any | {
@@ -20803,7 +20803,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20803
20803
  children: ({
20804
20804
  type: "SectionBlock";
20805
20805
  props: {
20806
- level: import("../types/index.js").HeadingLevel;
20806
+ level: import("~/src/runtime/types").HeadingLevel;
20807
20807
  title: string;
20808
20808
  description?: string | undefined;
20809
20809
  children: (/*elided*/ any | {
@@ -20906,7 +20906,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
20906
20906
  children: ({
20907
20907
  type: "SectionBlock";
20908
20908
  props: {
20909
- level: import("../types/index.js").HeadingLevel;
20909
+ level: import("~/src/runtime/types").HeadingLevel;
20910
20910
  title: string;
20911
20911
  description?: string | undefined;
20912
20912
  children: (/*elided*/ any | {
@@ -21564,7 +21564,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21564
21564
  children: ({
21565
21565
  type: "SectionBlock";
21566
21566
  props: {
21567
- level: import("../types/index.js").HeadingLevel;
21567
+ level: import("~/src/runtime/types").HeadingLevel;
21568
21568
  title: string;
21569
21569
  description?: string | undefined;
21570
21570
  children: (/*elided*/ any | {
@@ -21801,7 +21801,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21801
21801
  items: ({
21802
21802
  type: "SectionBlock";
21803
21803
  props: {
21804
- level: import("../types/index.js").HeadingLevel;
21804
+ level: import("~/src/runtime/types").HeadingLevel;
21805
21805
  title: string;
21806
21806
  description?: string | undefined;
21807
21807
  children: (/*elided*/ any | {
@@ -21922,7 +21922,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21922
21922
  children: ({
21923
21923
  type: "SectionBlock";
21924
21924
  props: {
21925
- level: import("../types/index.js").HeadingLevel;
21925
+ level: import("~/src/runtime/types").HeadingLevel;
21926
21926
  title: string;
21927
21927
  description?: string | undefined;
21928
21928
  children: (/*elided*/ any | {
@@ -21997,7 +21997,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
21997
21997
  children: ({
21998
21998
  type: "SectionBlock";
21999
21999
  props: {
22000
- level: import("../types/index.js").HeadingLevel;
22000
+ level: import("~/src/runtime/types").HeadingLevel;
22001
22001
  title: string;
22002
22002
  description?: string | undefined;
22003
22003
  children: (/*elided*/ any | {
@@ -22112,7 +22112,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22112
22112
  items: ({
22113
22113
  type: "SectionBlock";
22114
22114
  props: {
22115
- level: import("../types/index.js").HeadingLevel;
22115
+ level: import("~/src/runtime/types").HeadingLevel;
22116
22116
  title: string;
22117
22117
  description?: string | undefined;
22118
22118
  children: (/*elided*/ any | {
@@ -22207,7 +22207,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22207
22207
  items: ({
22208
22208
  type: "SectionBlock";
22209
22209
  props: {
22210
- level: import("../types/index.js").HeadingLevel;
22210
+ level: import("~/src/runtime/types").HeadingLevel;
22211
22211
  title: string;
22212
22212
  description?: string | undefined;
22213
22213
  children: (/*elided*/ any | {
@@ -22434,7 +22434,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22434
22434
  children: ({
22435
22435
  type: "SectionBlock";
22436
22436
  props: {
22437
- level: import("../types/index.js").HeadingLevel;
22437
+ level: import("~/src/runtime/types").HeadingLevel;
22438
22438
  title: string;
22439
22439
  description?: string | undefined;
22440
22440
  children: (/*elided*/ any | {
@@ -22555,7 +22555,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22555
22555
  children: ({
22556
22556
  type: "SectionBlock";
22557
22557
  props: {
22558
- level: import("../types/index.js").HeadingLevel;
22558
+ level: import("~/src/runtime/types").HeadingLevel;
22559
22559
  title: string;
22560
22560
  description?: string | undefined;
22561
22561
  children: (/*elided*/ any | {
@@ -22649,7 +22649,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22649
22649
  children: ({
22650
22650
  type: "SectionBlock";
22651
22651
  props: {
22652
- level: import("../types/index.js").HeadingLevel;
22652
+ level: import("~/src/runtime/types").HeadingLevel;
22653
22653
  title: string;
22654
22654
  description?: string | undefined;
22655
22655
  children: (/*elided*/ any | {
@@ -22751,7 +22751,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22751
22751
  children: ({
22752
22752
  type: "SectionBlock";
22753
22753
  props: {
22754
- level: import("../types/index.js").HeadingLevel;
22754
+ level: import("~/src/runtime/types").HeadingLevel;
22755
22755
  title: string;
22756
22756
  description?: string | undefined;
22757
22757
  children: (/*elided*/ any | {
@@ -22849,7 +22849,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
22849
22849
  children: ({
22850
22850
  type: "SectionBlock";
22851
22851
  props: {
22852
- level: import("../types/index.js").HeadingLevel;
22852
+ level: import("~/src/runtime/types").HeadingLevel;
22853
22853
  title: string;
22854
22854
  description?: string | undefined;
22855
22855
  children: (/*elided*/ any | {
@@ -23070,7 +23070,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23070
23070
  children: ({
23071
23071
  type: "SectionBlock";
23072
23072
  props: {
23073
- level: import("../types/index.js").HeadingLevel;
23073
+ level: import("~/src/runtime/types").HeadingLevel;
23074
23074
  title: string;
23075
23075
  description?: string | undefined;
23076
23076
  children: (/*elided*/ any | {
@@ -23185,7 +23185,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23185
23185
  items: ({
23186
23186
  type: "SectionBlock";
23187
23187
  props: {
23188
- level: import("../types/index.js").HeadingLevel;
23188
+ level: import("~/src/runtime/types").HeadingLevel;
23189
23189
  title: string;
23190
23190
  description?: string | undefined;
23191
23191
  children: (/*elided*/ any | {
@@ -23276,7 +23276,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23276
23276
  items: ({
23277
23277
  type: "SectionBlock";
23278
23278
  props: {
23279
- level: import("../types/index.js").HeadingLevel;
23279
+ level: import("~/src/runtime/types").HeadingLevel;
23280
23280
  title: string;
23281
23281
  description?: string | undefined;
23282
23282
  children: (/*elided*/ any | {
@@ -23378,7 +23378,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23378
23378
  children: ({
23379
23379
  type: "SectionBlock";
23380
23380
  props: {
23381
- level: import("../types/index.js").HeadingLevel;
23381
+ level: import("~/src/runtime/types").HeadingLevel;
23382
23382
  title: string;
23383
23383
  description?: string | undefined;
23384
23384
  children: (/*elided*/ any | {
@@ -23480,7 +23480,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
23480
23480
  children: ({
23481
23481
  type: "SectionBlock";
23482
23482
  props: {
23483
- level: import("../types/index.js").HeadingLevel;
23483
+ level: import("~/src/runtime/types").HeadingLevel;
23484
23484
  title: string;
23485
23485
  description?: string | undefined;
23486
23486
  children: (/*elided*/ any | {
@@ -24143,7 +24143,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24143
24143
  children: ({
24144
24144
  type: "SectionBlock";
24145
24145
  props: {
24146
- level: import("../types/index.js").HeadingLevel;
24146
+ level: import("~/src/runtime/types").HeadingLevel;
24147
24147
  title: string;
24148
24148
  description?: string | undefined;
24149
24149
  children: (/*elided*/ any | {
@@ -24382,7 +24382,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24382
24382
  items: ({
24383
24383
  type: "SectionBlock";
24384
24384
  props: {
24385
- level: import("../types/index.js").HeadingLevel;
24385
+ level: import("~/src/runtime/types").HeadingLevel;
24386
24386
  title: string;
24387
24387
  description?: string | undefined;
24388
24388
  children: (/*elided*/ any | {
@@ -24505,7 +24505,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24505
24505
  children: ({
24506
24506
  type: "SectionBlock";
24507
24507
  props: {
24508
- level: import("../types/index.js").HeadingLevel;
24508
+ level: import("~/src/runtime/types").HeadingLevel;
24509
24509
  title: string;
24510
24510
  description?: string | undefined;
24511
24511
  children: (/*elided*/ any | {
@@ -24581,7 +24581,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24581
24581
  children: ({
24582
24582
  type: "SectionBlock";
24583
24583
  props: {
24584
- level: import("../types/index.js").HeadingLevel;
24584
+ level: import("~/src/runtime/types").HeadingLevel;
24585
24585
  title: string;
24586
24586
  description?: string | undefined;
24587
24587
  children: (/*elided*/ any | {
@@ -24696,7 +24696,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24696
24696
  items: ({
24697
24697
  type: "SectionBlock";
24698
24698
  props: {
24699
- level: import("../types/index.js").HeadingLevel;
24699
+ level: import("~/src/runtime/types").HeadingLevel;
24700
24700
  title: string;
24701
24701
  description?: string | undefined;
24702
24702
  children: (/*elided*/ any | {
@@ -24791,7 +24791,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
24791
24791
  items: ({
24792
24792
  type: "SectionBlock";
24793
24793
  props: {
24794
- level: import("../types/index.js").HeadingLevel;
24794
+ level: import("~/src/runtime/types").HeadingLevel;
24795
24795
  title: string;
24796
24796
  description?: string | undefined;
24797
24797
  children: (/*elided*/ any | {
@@ -25020,7 +25020,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25020
25020
  children: ({
25021
25021
  type: "SectionBlock";
25022
25022
  props: {
25023
- level: import("../types/index.js").HeadingLevel;
25023
+ level: import("~/src/runtime/types").HeadingLevel;
25024
25024
  title: string;
25025
25025
  description?: string | undefined;
25026
25026
  children: (/*elided*/ any | {
@@ -25143,7 +25143,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25143
25143
  children: ({
25144
25144
  type: "SectionBlock";
25145
25145
  props: {
25146
- level: import("../types/index.js").HeadingLevel;
25146
+ level: import("~/src/runtime/types").HeadingLevel;
25147
25147
  title: string;
25148
25148
  description?: string | undefined;
25149
25149
  children: (/*elided*/ any | {
@@ -25238,7 +25238,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25238
25238
  children: ({
25239
25239
  type: "SectionBlock";
25240
25240
  props: {
25241
- level: import("../types/index.js").HeadingLevel;
25241
+ level: import("~/src/runtime/types").HeadingLevel;
25242
25242
  title: string;
25243
25243
  description?: string | undefined;
25244
25244
  children: (/*elided*/ any | {
@@ -25340,7 +25340,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25340
25340
  children: ({
25341
25341
  type: "SectionBlock";
25342
25342
  props: {
25343
- level: import("../types/index.js").HeadingLevel;
25343
+ level: import("~/src/runtime/types").HeadingLevel;
25344
25344
  title: string;
25345
25345
  description?: string | undefined;
25346
25346
  children: (/*elided*/ any | {
@@ -25439,7 +25439,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25439
25439
  children: ({
25440
25440
  type: "SectionBlock";
25441
25441
  props: {
25442
- level: import("../types/index.js").HeadingLevel;
25442
+ level: import("~/src/runtime/types").HeadingLevel;
25443
25443
  title: string;
25444
25444
  description?: string | undefined;
25445
25445
  children: (/*elided*/ any | {
@@ -25660,7 +25660,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25660
25660
  children: ({
25661
25661
  type: "SectionBlock";
25662
25662
  props: {
25663
- level: import("../types/index.js").HeadingLevel;
25663
+ level: import("~/src/runtime/types").HeadingLevel;
25664
25664
  title: string;
25665
25665
  description?: string | undefined;
25666
25666
  children: (/*elided*/ any | {
@@ -25775,7 +25775,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25775
25775
  items: ({
25776
25776
  type: "SectionBlock";
25777
25777
  props: {
25778
- level: import("../types/index.js").HeadingLevel;
25778
+ level: import("~/src/runtime/types").HeadingLevel;
25779
25779
  title: string;
25780
25780
  description?: string | undefined;
25781
25781
  children: (/*elided*/ any | {
@@ -25866,7 +25866,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25866
25866
  items: ({
25867
25867
  type: "SectionBlock";
25868
25868
  props: {
25869
- level: import("../types/index.js").HeadingLevel;
25869
+ level: import("~/src/runtime/types").HeadingLevel;
25870
25870
  title: string;
25871
25871
  description?: string | undefined;
25872
25872
  children: (/*elided*/ any | {
@@ -25968,7 +25968,7 @@ export declare function useBlockEditor(initialBlocks: Ref<Block[]>, { maxHistory
25968
25968
  children: ({
25969
25969
  type: "SectionBlock";
25970
25970
  props: {
25971
- level: import("../types/index.js").HeadingLevel;
25971
+ level: import("~/src/runtime/types").HeadingLevel;
25972
25972
  title: string;
25973
25973
  description?: string | undefined;
25974
25974
  children: (/*elided*/ any | {