@smartos-lib/components 1.7.0-beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. package/.eslintrc +12 -0
  2. package/.eslintrc-auto-import.json +332 -0
  3. package/Components.code-workspace +143 -0
  4. package/LICENSE +21 -0
  5. package/dist/smart-docx-editor/index.d.ts +2 -0
  6. package/dist/smart-docx-editor/index.js +68 -0
  7. package/dist/smart-file-preview/index.d.ts +18 -0
  8. package/dist/smart-file-preview/index.js +37 -0
  9. package/dist/smart-upload/index.d.ts +2 -0
  10. package/dist/smart-upload/index.js +800 -0
  11. package/index.html +16 -0
  12. package/package.json +23 -0
  13. package/public/favicon.svg +6 -0
  14. package/scripts/components.vite.config.ts +96 -0
  15. package/scripts/shared.ts +9 -0
  16. package/src/App.vue +28 -0
  17. package/src/components/Logo/index.vue +15 -0
  18. package/src/components-private/.gitkeep +0 -0
  19. package/src/composables/useElementStyle.ts +23 -0
  20. package/src/composables/useNaiveStyle.ts +43 -0
  21. package/src/composables/useNaiveTheme.ts +71 -0
  22. package/src/composables/useSmart.ts +36 -0
  23. package/src/layouts/default.vue +3 -0
  24. package/src/main.ts +33 -0
  25. package/src/modules/pinia/index.ts +8 -0
  26. package/src/modules/progress/index.ts +12 -0
  27. package/src/modules/router/install.ts +9 -0
  28. package/src/modules/router/routes.ts +40 -0
  29. package/src/pages/[...all].vue +21 -0
  30. package/src/pages/frame/component/[name].vue +14 -0
  31. package/src/pages/frame/index.vue +81 -0
  32. package/src/pages/index/composables/useTabsManage.ts +46 -0
  33. package/src/pages/index/index.vue +111 -0
  34. package/src/pages/index/type.ts +13 -0
  35. package/src/pages/index/utils/index.ts +41 -0
  36. package/src/settings.ts +9 -0
  37. package/src/shared/components.ts +52 -0
  38. package/src/shared/env.ts +11 -0
  39. package/src/shared/unocss.theme.ts +1600 -0
  40. package/src/stores/theme.ts +29 -0
  41. package/src/styles/element.scss +3 -0
  42. package/src/styles/styles.scss +21 -0
  43. package/src/types.ts +20 -0
  44. package/src/utils/callCustomElementExposed.ts +6 -0
  45. package/src/utils/deepCloneESModule.ts +10 -0
  46. package/src/utils/defineCustomElements.ts +18 -0
  47. package/src/utils/formatComponentsGlob.ts +16 -0
  48. package/src/utils/getFileMD5.ts +31 -0
  49. package/src/utils/getFileNameAndExt.ts +11 -0
  50. package/src/utils/isFileEqual.ts +13 -0
  51. package/src/utils/jsonToFormData.ts +8 -0
  52. package/src/web-components/smart-docx-drive-page/App.vue +37 -0
  53. package/src/web-components/smart-docx-drive-page/apis/doc.ts +85 -0
  54. package/src/web-components/smart-docx-drive-page/apis/file.ts +278 -0
  55. package/src/web-components/smart-docx-drive-page/apis/folder.ts +72 -0
  56. package/src/web-components/smart-docx-drive-page/children/Home.vue +8 -0
  57. package/src/web-components/smart-docx-drive-page/children/Me.vue +47 -0
  58. package/src/web-components/smart-docx-drive-page/components/CustomImage.vue +26 -0
  59. package/src/web-components/smart-docx-drive-page/components/CustomPopover.vue +62 -0
  60. package/src/web-components/smart-docx-drive-page/components/DocxDir.vue +99 -0
  61. package/src/web-components/smart-docx-drive-page/components/DocxDoc.vue +132 -0
  62. package/src/web-components/smart-docx-drive-page/components/DocxDownloadPopoverItem.vue +41 -0
  63. package/src/web-components/smart-docx-drive-page/components/DocxFileList.vue +156 -0
  64. package/src/web-components/smart-docx-drive-page/components/DocxPreview.vue +33 -0
  65. package/src/web-components/smart-docx-drive-page/components/DocxUpload.vue +164 -0
  66. package/src/web-components/smart-docx-drive-page/components/FileIcon.vue +62 -0
  67. package/src/web-components/smart-docx-drive-page/components-private/Header.vue +65 -0
  68. package/src/web-components/smart-docx-drive-page/components-private/Logo.vue +15 -0
  69. package/src/web-components/smart-docx-drive-page/components-private/Menu.vue +34 -0
  70. package/src/web-components/smart-docx-drive-page/components-private/Navbar.vue +36 -0
  71. package/src/web-components/smart-docx-drive-page/composables/useFullscreenElDialog.ts +41 -0
  72. package/src/web-components/smart-docx-drive-page/composables/usePrompt.ts +73 -0
  73. package/src/web-components/smart-docx-drive-page/data.ts +10 -0
  74. package/src/web-components/smart-docx-drive-page/external-style/custom-popover.sass +8 -0
  75. package/src/web-components/smart-docx-drive-page/external-style/index.sass +1 -0
  76. package/src/web-components/smart-docx-drive-page/index.ts +20 -0
  77. package/src/web-components/smart-docx-drive-page/index.vue +39 -0
  78. package/src/web-components/smart-docx-drive-page/info.ts +2 -0
  79. package/src/web-components/smart-docx-drive-page/stores/menu.ts +60 -0
  80. package/src/web-components/smart-docx-drive-page/types.ts +51 -0
  81. package/src/web-components/smart-docx-drive-page/utils/file-actions.ts +63 -0
  82. package/src/web-components/smart-docx-drive-page/utils/file.ts +31 -0
  83. package/src/web-components/smart-docx-editor/App.vue +32 -0
  84. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components/Markdown.vue +202 -0
  85. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components/Menu.vue +100 -0
  86. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components/types.ts +6 -0
  87. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/Markdown.tsx +71 -0
  88. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/MarkdownElement.tsx +81 -0
  89. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/Blockquote/index.sass +6 -0
  90. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/Blockquote/index.tsx +12 -0
  91. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/Heading/index.sass +14 -0
  92. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/Heading/index.tsx +17 -0
  93. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/List/index.scss +16 -0
  94. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/elements/List/index.tsx +39 -0
  95. package/src/web-components/smart-docx-editor/MarkdownShortcuts/components-react/types/custom-types.d.ts +69 -0
  96. package/src/web-components/smart-docx-editor/MarkdownShortcuts/composables/useTextSelection.ts +50 -0
  97. package/src/web-components/smart-docx-editor/MarkdownShortcuts/index.sass +19 -0
  98. package/src/web-components/smart-docx-editor/MarkdownShortcuts/index.vue +21 -0
  99. package/src/web-components/smart-docx-editor/MarkdownShortcuts/shared/const.ts +23 -0
  100. package/src/web-components/smart-docx-editor/MarkdownShortcuts/utils/slateHelpers.ts +23 -0
  101. package/src/web-components/smart-docx-editor/data.ts +38 -0
  102. package/src/web-components/smart-docx-editor/demo.vue +11 -0
  103. package/src/web-components/smart-docx-editor/index.md +3 -0
  104. package/src/web-components/smart-docx-editor/index.ts +5 -0
  105. package/src/web-components/smart-docx-editor/index.vue +12 -0
  106. package/src/web-components/smart-docx-editor/info.ts +2 -0
  107. package/src/web-components/smart-file-preview/category/Code.vue +171 -0
  108. package/src/web-components/smart-file-preview/category/Image.vue +49 -0
  109. package/src/web-components/smart-file-preview/category/Pdf.vue +14 -0
  110. package/src/web-components/smart-file-preview/category/Video.vue +27 -0
  111. package/src/web-components/smart-file-preview/demo.vue +34 -0
  112. package/src/web-components/smart-file-preview/index.md +5 -0
  113. package/src/web-components/smart-file-preview/index.ts +29 -0
  114. package/src/web-components/smart-file-preview/index.vue +56 -0
  115. package/src/web-components/smart-file-preview/info.ts +2 -0
  116. package/src/web-components/smart-file-preview/shared/const.ts +4 -0
  117. package/src/web-components/smart-file-preview/types.ts +38 -0
  118. package/src/web-components/smart-upload/index.ts +5 -0
  119. package/src/web-components/smart-upload/index.vue +101 -0
  120. package/src/web-components/smart-upload/info.ts +2 -0
  121. package/src/web-components/smart-upload/types.ts +28 -0
  122. package/tsconfig.json +15 -0
  123. package/types/auto-imports.d.ts +975 -0
  124. package/types/components.d.ts +14 -0
  125. package/types/env.d.ts +8 -0
  126. package/types/shims.d.ts +6 -0
  127. package/unocss.config.ts +23 -0
  128. package/vite.config.ts +60 -0
@@ -0,0 +1,975 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ // @ts-nocheck
4
+ // noinspection JSUnusedGlobalSymbols
5
+ // Generated by unplugin-auto-import
6
+ export {}
7
+ declare global {
8
+ const EffectScope: typeof import('vue')['EffectScope']
9
+ const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
10
+ const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
11
+ const commonOverrides: typeof import('../src/composables/useNaiveTheme')['commonOverrides']
12
+ const computed: typeof import('vue')['computed']
13
+ const computedAsync: typeof import('@vueuse/core')['computedAsync']
14
+ const computedEager: typeof import('@vueuse/core')['computedEager']
15
+ const computedInject: typeof import('@vueuse/core')['computedInject']
16
+ const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
17
+ const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
18
+ const controlledRef: typeof import('@vueuse/core')['controlledRef']
19
+ const createApp: typeof import('vue')['createApp']
20
+ const createEventHook: typeof import('@vueuse/core')['createEventHook']
21
+ const createGenericProjection: typeof import('@vueuse/math')['createGenericProjection']
22
+ const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
23
+ const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
24
+ const createNamedSharedComposable: typeof import('@mixte/use')['createNamedSharedComposable']
25
+ const createProjection: typeof import('@vueuse/math')['createProjection']
26
+ const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
27
+ const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
28
+ const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
29
+ const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
30
+ const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
31
+ const customRef: typeof import('vue')['customRef']
32
+ const darkThemeOverrides: typeof import('../src/composables/useNaiveTheme')['darkThemeOverrides']
33
+ const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
34
+ const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
35
+ const deepUnref: typeof import('@mixte/use')['deepUnref']
36
+ const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
37
+ const defineComponent: typeof import('vue')['defineComponent']
38
+ const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
39
+ const effectScope: typeof import('vue')['effectScope']
40
+ const extendRef: typeof import('@vueuse/core')['extendRef']
41
+ const getCurrentInstance: typeof import('vue')['getCurrentInstance']
42
+ const getCurrentScope: typeof import('vue')['getCurrentScope']
43
+ const h: typeof import('vue')['h']
44
+ const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
45
+ const inject: typeof import('vue')['inject']
46
+ const injectLocal: typeof import('@vueuse/core')['injectLocal']
47
+ const isDefined: typeof import('@vueuse/core')['isDefined']
48
+ const isProxy: typeof import('vue')['isProxy']
49
+ const isReactive: typeof import('vue')['isReactive']
50
+ const isReadonly: typeof import('vue')['isReadonly']
51
+ const isRef: typeof import('vue')['isRef']
52
+ const lightThemeOverrides: typeof import('../src/composables/useNaiveTheme')['lightThemeOverrides']
53
+ const logicAnd: typeof import('@vueuse/math')['logicAnd']
54
+ const logicNot: typeof import('@vueuse/math')['logicNot']
55
+ const logicOr: typeof import('@vueuse/math')['logicOr']
56
+ const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
57
+ const markRaw: typeof import('vue')['markRaw']
58
+ const nextTick: typeof import('vue')['nextTick']
59
+ const onActivated: typeof import('vue')['onActivated']
60
+ const onBeforeMount: typeof import('vue')['onBeforeMount']
61
+ const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
62
+ const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
63
+ const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
64
+ const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
65
+ const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
66
+ const onDeactivated: typeof import('vue')['onDeactivated']
67
+ const onErrorCaptured: typeof import('vue')['onErrorCaptured']
68
+ const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
69
+ const onLongPress: typeof import('@vueuse/core')['onLongPress']
70
+ const onMounted: typeof import('vue')['onMounted']
71
+ const onRenderTracked: typeof import('vue')['onRenderTracked']
72
+ const onRenderTriggered: typeof import('vue')['onRenderTriggered']
73
+ const onScopeDispose: typeof import('vue')['onScopeDispose']
74
+ const onServerPrefetch: typeof import('vue')['onServerPrefetch']
75
+ const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
76
+ const onUnmounted: typeof import('vue')['onUnmounted']
77
+ const onUpdated: typeof import('vue')['onUpdated']
78
+ const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
79
+ const provide: typeof import('vue')['provide']
80
+ const provideLocal: typeof import('@vueuse/core')['provideLocal']
81
+ const reactify: typeof import('@vueuse/core')['reactify']
82
+ const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
83
+ const reactive: typeof import('vue')['reactive']
84
+ const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
85
+ const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
86
+ const reactivePick: typeof import('@vueuse/core')['reactivePick']
87
+ const readonly: typeof import('vue')['readonly']
88
+ const ref: typeof import('vue')['ref']
89
+ const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
90
+ const refDebounced: typeof import('@vueuse/core')['refDebounced']
91
+ const refDefault: typeof import('@vueuse/core')['refDefault']
92
+ const refThrottled: typeof import('@vueuse/core')['refThrottled']
93
+ const refWithControl: typeof import('@vueuse/core')['refWithControl']
94
+ const resolveComponent: typeof import('vue')['resolveComponent']
95
+ const resolveRef: typeof import('@vueuse/core')['resolveRef']
96
+ const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
97
+ const shallowReactive: typeof import('vue')['shallowReactive']
98
+ const shallowReadonly: typeof import('vue')['shallowReadonly']
99
+ const shallowRef: typeof import('vue')['shallowRef']
100
+ const syncRef: typeof import('@vueuse/core')['syncRef']
101
+ const syncRefs: typeof import('@vueuse/core')['syncRefs']
102
+ const templateRef: typeof import('@vueuse/core')['templateRef']
103
+ const throttledRef: typeof import('@vueuse/core')['throttledRef']
104
+ const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
105
+ const toRaw: typeof import('vue')['toRaw']
106
+ const toReactive: typeof import('@vueuse/core')['toReactive']
107
+ const toRef: typeof import('vue')['toRef']
108
+ const toRefs: typeof import('vue')['toRefs']
109
+ const toValue: typeof import('vue')['toValue']
110
+ const triggerRef: typeof import('vue')['triggerRef']
111
+ const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
112
+ const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
113
+ const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
114
+ const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
115
+ const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
116
+ const unref: typeof import('vue')['unref']
117
+ const unrefElement: typeof import('@vueuse/core')['unrefElement']
118
+ const until: typeof import('@vueuse/core')['until']
119
+ const useAbs: typeof import('@vueuse/math')['useAbs']
120
+ const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
121
+ const useAnimate: typeof import('@vueuse/core')['useAnimate']
122
+ const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
123
+ const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
124
+ const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
125
+ const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
126
+ const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
127
+ const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
128
+ const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes']
129
+ const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
130
+ const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
131
+ const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
132
+ const useArraySome: typeof import('@vueuse/core')['useArraySome']
133
+ const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
134
+ const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
135
+ const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
136
+ const useAttrs: typeof import('vue')['useAttrs']
137
+ const useAverage: typeof import('@vueuse/math')['useAverage']
138
+ const useBase64: typeof import('@vueuse/core')['useBase64']
139
+ const useBattery: typeof import('@vueuse/core')['useBattery']
140
+ const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
141
+ const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
142
+ const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
143
+ const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
144
+ const useCached: typeof import('@vueuse/core')['useCached']
145
+ const useCeil: typeof import('@vueuse/math')['useCeil']
146
+ const useClamp: typeof import('@vueuse/math')['useClamp']
147
+ const useClipboard: typeof import('@vueuse/core')['useClipboard']
148
+ const useClipboardItems: typeof import('@vueuse/core')['useClipboardItems']
149
+ const useCloned: typeof import('@vueuse/core')['useCloned']
150
+ const useColorMode: typeof import('@vueuse/core')['useColorMode']
151
+ const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
152
+ const useCountdown: typeof import('@mixte/use')['useCountdown']
153
+ const useCounter: typeof import('@vueuse/core')['useCounter']
154
+ const useCssModule: typeof import('vue')['useCssModule']
155
+ const useCssVar: typeof import('@vueuse/core')['useCssVar']
156
+ const useCssVars: typeof import('vue')['useCssVars']
157
+ const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
158
+ const useCycleList: typeof import('@vueuse/core')['useCycleList']
159
+ const useDark: typeof import('@vueuse/core')['useDark']
160
+ const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
161
+ const useDebounce: typeof import('@vueuse/core')['useDebounce']
162
+ const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
163
+ const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
164
+ const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
165
+ const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
166
+ const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
167
+ const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
168
+ const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
169
+ const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
170
+ const useDraggable: typeof import('@vueuse/core')['useDraggable']
171
+ const useDropZone: typeof import('@vueuse/core')['useDropZone']
172
+ const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
173
+ const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
174
+ const useElementHover: typeof import('@vueuse/core')['useElementHover']
175
+ const useElementSize: typeof import('@vueuse/core')['useElementSize']
176
+ const useElementStyle: typeof import('../src/composables/useElementStyle')['useElementStyle']
177
+ const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
178
+ const useEventBus: typeof import('@vueuse/core')['useEventBus']
179
+ const useEventListener: typeof import('@vueuse/core')['useEventListener']
180
+ const useEventSource: typeof import('@vueuse/core')['useEventSource']
181
+ const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
182
+ const useFavicon: typeof import('@vueuse/core')['useFavicon']
183
+ const useFetch: typeof import('@vueuse/core')['useFetch']
184
+ const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
185
+ const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
186
+ const useFloor: typeof import('@vueuse/math')['useFloor']
187
+ const useFocus: typeof import('@vueuse/core')['useFocus']
188
+ const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
189
+ const useFps: typeof import('@vueuse/core')['useFps']
190
+ const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
191
+ const useGamepad: typeof import('@vueuse/core')['useGamepad']
192
+ const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
193
+ const useIdle: typeof import('@vueuse/core')['useIdle']
194
+ const useImage: typeof import('@vueuse/core')['useImage']
195
+ const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
196
+ const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
197
+ const useInterval: typeof import('@vueuse/core')['useInterval']
198
+ const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
199
+ const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
200
+ const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
201
+ const useLink: typeof import('vue-router')['useLink']
202
+ const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
203
+ const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
204
+ const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
205
+ const useMath: typeof import('@vueuse/math')['useMath']
206
+ const useMax: typeof import('@vueuse/math')['useMax']
207
+ const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
208
+ const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
209
+ const useMemoize: typeof import('@vueuse/core')['useMemoize']
210
+ const useMemory: typeof import('@vueuse/core')['useMemory']
211
+ const useMin: typeof import('@vueuse/math')['useMin']
212
+ const useMounted: typeof import('@vueuse/core')['useMounted']
213
+ const useMouse: typeof import('@vueuse/core')['useMouse']
214
+ const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
215
+ const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
216
+ const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
217
+ const useNaiveStyle: typeof import('../src/composables/useNaiveStyle')['useNaiveStyle']
218
+ const useNaiveTheme: typeof import('../src/composables/useNaiveTheme')['useNaiveTheme']
219
+ const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
220
+ const useNetwork: typeof import('@vueuse/core')['useNetwork']
221
+ const useNow: typeof import('@vueuse/core')['useNow']
222
+ const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
223
+ const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
224
+ const useOnline: typeof import('@vueuse/core')['useOnline']
225
+ const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
226
+ const useParallax: typeof import('@vueuse/core')['useParallax']
227
+ const useParentElement: typeof import('@vueuse/core')['useParentElement']
228
+ const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
229
+ const usePermission: typeof import('@vueuse/core')['usePermission']
230
+ const usePointer: typeof import('@vueuse/core')['usePointer']
231
+ const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
232
+ const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
233
+ const usePrecision: typeof import('@vueuse/math')['usePrecision']
234
+ const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
235
+ const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
236
+ const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
237
+ const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
238
+ const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
239
+ const usePrevious: typeof import('@vueuse/core')['usePrevious']
240
+ const useProjection: typeof import('@vueuse/math')['useProjection']
241
+ const useRafFn: typeof import('@vueuse/core')['useRafFn']
242
+ const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
243
+ const useRequest: typeof import('@mixte/use')['useRequest']
244
+ const useRequestReactive: typeof import('@mixte/use')['useRequestReactive']
245
+ const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
246
+ const useRound: typeof import('@vueuse/math')['useRound']
247
+ const useRoute: typeof import('vue-router')['useRoute']
248
+ const useRouter: typeof import('vue-router')['useRouter']
249
+ const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
250
+ const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
251
+ const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
252
+ const useScroll: typeof import('@vueuse/core')['useScroll']
253
+ const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
254
+ const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
255
+ const useShare: typeof import('@vueuse/core')['useShare']
256
+ const useSlots: typeof import('vue')['useSlots']
257
+ const useSmart: typeof import('../src/composables/useSmart')['useSmart']
258
+ const useSorted: typeof import('@vueuse/core')['useSorted']
259
+ const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
260
+ const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
261
+ const useStepper: typeof import('@vueuse/core')['useStepper']
262
+ const useStorage: typeof import('@vueuse/core')['useStorage']
263
+ const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
264
+ const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
265
+ const useSum: typeof import('@vueuse/math')['useSum']
266
+ const useSupported: typeof import('@vueuse/core')['useSupported']
267
+ const useSwipe: typeof import('@vueuse/core')['useSwipe']
268
+ const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
269
+ const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
270
+ const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
271
+ const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
272
+ const useThemeStore: typeof import('../src/stores/theme')['useThemeStore']
273
+ const useThrottle: typeof import('@vueuse/core')['useThrottle']
274
+ const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
275
+ const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
276
+ const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
277
+ const useTimeout: typeof import('@vueuse/core')['useTimeout']
278
+ const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
279
+ const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
280
+ const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
281
+ const useTitle: typeof import('@vueuse/core')['useTitle']
282
+ const useToNumber: typeof import('@vueuse/core')['useToNumber']
283
+ const useToString: typeof import('@vueuse/core')['useToString']
284
+ const useToggle: typeof import('@vueuse/core')['useToggle']
285
+ const useTransition: typeof import('@vueuse/core')['useTransition']
286
+ const useTrunc: typeof import('@vueuse/math')['useTrunc']
287
+ const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
288
+ const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
289
+ const useVModel: typeof import('@vueuse/core')['useVModel']
290
+ const useVModels: typeof import('@vueuse/core')['useVModels']
291
+ const useVibrate: typeof import('@vueuse/core')['useVibrate']
292
+ const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
293
+ const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
294
+ const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
295
+ const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
296
+ const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
297
+ const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
298
+ const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
299
+ const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
300
+ const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
301
+ const watch: typeof import('vue')['watch']
302
+ const watchArray: typeof import('@vueuse/core')['watchArray']
303
+ const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
304
+ const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
305
+ const watchDeep: typeof import('@vueuse/core')['watchDeep']
306
+ const watchEffect: typeof import('vue')['watchEffect']
307
+ const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
308
+ const watchImmediate: typeof import('@vueuse/core')['watchImmediate']
309
+ const watchImmediateDeep: typeof import('@mixte/use')['watchImmediateDeep']
310
+ const watchOnce: typeof import('@vueuse/core')['watchOnce']
311
+ const watchPausable: typeof import('@vueuse/core')['watchPausable']
312
+ const watchPostEffect: typeof import('vue')['watchPostEffect']
313
+ const watchSyncEffect: typeof import('vue')['watchSyncEffect']
314
+ const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
315
+ const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
316
+ const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
317
+ const whenever: typeof import('@vueuse/core')['whenever']
318
+ const wheneverDeep: typeof import('@mixte/use')['wheneverDeep']
319
+ const wheneverEffectScope: typeof import('@mixte/use')['wheneverEffectScope']
320
+ const wheneverEffectScopeDeep: typeof import('@mixte/use')['wheneverEffectScopeDeep']
321
+ const wheneverEffectScopeImmediate: typeof import('@mixte/use')['wheneverEffectScopeImmediate']
322
+ const wheneverEffectScopeImmediateDeep: typeof import('@mixte/use')['wheneverEffectScopeImmediateDeep']
323
+ const wheneverImmediate: typeof import('@mixte/use')['wheneverImmediate']
324
+ const wheneverImmediateDeep: typeof import('@mixte/use')['wheneverImmediateDeep']
325
+ }
326
+ // for type re-export
327
+ declare global {
328
+ // @ts-ignore
329
+ export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
330
+ import('vue')
331
+ }
332
+ // for vue template auto import
333
+ import { UnwrapRef } from 'vue'
334
+ declare module 'vue' {
335
+ interface ComponentCustomProperties {
336
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
337
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
338
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
339
+ readonly commonOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['commonOverrides']>
340
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
341
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
342
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
343
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
344
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
345
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
346
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
347
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
348
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
349
+ readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
350
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
351
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
352
+ readonly createNamedSharedComposable: UnwrapRef<typeof import('@mixte/use')['createNamedSharedComposable']>
353
+ readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
354
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
355
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
356
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
357
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
358
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
359
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
360
+ readonly darkThemeOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['darkThemeOverrides']>
361
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
362
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
363
+ readonly deepUnref: UnwrapRef<typeof import('@mixte/use')['deepUnref']>
364
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
365
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
366
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
367
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
368
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
369
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
370
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
371
+ readonly h: UnwrapRef<typeof import('vue')['h']>
372
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
373
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
374
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
375
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
376
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
377
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
378
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
379
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
380
+ readonly lightThemeOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['lightThemeOverrides']>
381
+ readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
382
+ readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
383
+ readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
384
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
385
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
386
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
387
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
388
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
389
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
390
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
391
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
392
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
393
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
394
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
395
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
396
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
397
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
398
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
399
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
400
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
401
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
402
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
403
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
404
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
405
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
406
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
407
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
408
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
409
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
410
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
411
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
412
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
413
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
414
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
415
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
416
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
417
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
418
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
419
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
420
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
421
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
422
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
423
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
424
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
425
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
426
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
427
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
428
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
429
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
430
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
431
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
432
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
433
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
434
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
435
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
436
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
437
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
438
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
439
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
440
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
441
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
442
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
443
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
444
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
445
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
446
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
447
+ readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
448
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
449
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
450
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
451
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
452
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
453
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
454
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
455
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
456
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
457
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
458
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
459
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
460
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
461
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
462
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
463
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
464
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
465
+ readonly useAverage: UnwrapRef<typeof import('@vueuse/math')['useAverage']>
466
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
467
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
468
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
469
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
470
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
471
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
472
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
473
+ readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
474
+ readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
475
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
476
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
477
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
478
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
479
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
480
+ readonly useCountdown: UnwrapRef<typeof import('@mixte/use')['useCountdown']>
481
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
482
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
483
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
484
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
485
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
486
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
487
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
488
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
489
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
490
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
491
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
492
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
493
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
494
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
495
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
496
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
497
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
498
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
499
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
500
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
501
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
502
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
503
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
504
+ readonly useElementStyle: UnwrapRef<typeof import('../src/composables/useElementStyle')['useElementStyle']>
505
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
506
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
507
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
508
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
509
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
510
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
511
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
512
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
513
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
514
+ readonly useFloor: UnwrapRef<typeof import('@vueuse/math')['useFloor']>
515
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
516
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
517
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
518
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
519
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
520
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
521
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
522
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
523
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
524
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
525
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
526
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
527
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
528
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
529
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
530
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
531
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
532
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
533
+ readonly useMath: UnwrapRef<typeof import('@vueuse/math')['useMath']>
534
+ readonly useMax: UnwrapRef<typeof import('@vueuse/math')['useMax']>
535
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
536
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
537
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
538
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
539
+ readonly useMin: UnwrapRef<typeof import('@vueuse/math')['useMin']>
540
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
541
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
542
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
543
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
544
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
545
+ readonly useNaiveStyle: UnwrapRef<typeof import('../src/composables/useNaiveStyle')['useNaiveStyle']>
546
+ readonly useNaiveTheme: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['useNaiveTheme']>
547
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
548
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
549
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
550
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
551
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
552
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
553
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
554
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
555
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
556
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
557
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
558
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
559
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
560
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
561
+ readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
562
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
563
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
564
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
565
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
566
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
567
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
568
+ readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
569
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
570
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
571
+ readonly useRequest: UnwrapRef<typeof import('@mixte/use')['useRequest']>
572
+ readonly useRequestReactive: UnwrapRef<typeof import('@mixte/use')['useRequestReactive']>
573
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
574
+ readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
575
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
576
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
577
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
578
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
579
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
580
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
581
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
582
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
583
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
584
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
585
+ readonly useSmart: UnwrapRef<typeof import('../src/composables/useSmart')['useSmart']>
586
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
587
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
588
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
589
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
590
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
591
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
592
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
593
+ readonly useSum: UnwrapRef<typeof import('@vueuse/math')['useSum']>
594
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
595
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
596
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
597
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
598
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
599
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
600
+ readonly useThemeStore: UnwrapRef<typeof import('../src/stores/theme')['useThemeStore']>
601
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
602
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
603
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
604
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
605
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
606
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
607
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
608
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
609
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
610
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
611
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
612
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
613
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
614
+ readonly useTrunc: UnwrapRef<typeof import('@vueuse/math')['useTrunc']>
615
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
616
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
617
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
618
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
619
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
620
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
621
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
622
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
623
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
624
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
625
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
626
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
627
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
628
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
629
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
630
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
631
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
632
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
633
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
634
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
635
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
636
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
637
+ readonly watchImmediateDeep: UnwrapRef<typeof import('@mixte/use')['watchImmediateDeep']>
638
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
639
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
640
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
641
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
642
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
643
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
644
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
645
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
646
+ readonly wheneverDeep: UnwrapRef<typeof import('@mixte/use')['wheneverDeep']>
647
+ readonly wheneverEffectScope: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScope']>
648
+ readonly wheneverEffectScopeDeep: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeDeep']>
649
+ readonly wheneverEffectScopeImmediate: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeImmediate']>
650
+ readonly wheneverEffectScopeImmediateDeep: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeImmediateDeep']>
651
+ readonly wheneverImmediate: UnwrapRef<typeof import('@mixte/use')['wheneverImmediate']>
652
+ readonly wheneverImmediateDeep: UnwrapRef<typeof import('@mixte/use')['wheneverImmediateDeep']>
653
+ }
654
+ }
655
+ declare module '@vue/runtime-core' {
656
+ interface ComponentCustomProperties {
657
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
658
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
659
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
660
+ readonly commonOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['commonOverrides']>
661
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
662
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
663
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
664
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
665
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
666
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
667
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
668
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
669
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
670
+ readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
671
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
672
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
673
+ readonly createNamedSharedComposable: UnwrapRef<typeof import('@mixte/use')['createNamedSharedComposable']>
674
+ readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
675
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
676
+ readonly createReusableTemplate: UnwrapRef<typeof import('@vueuse/core')['createReusableTemplate']>
677
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
678
+ readonly createTemplatePromise: UnwrapRef<typeof import('@vueuse/core')['createTemplatePromise']>
679
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
680
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
681
+ readonly darkThemeOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['darkThemeOverrides']>
682
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
683
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
684
+ readonly deepUnref: UnwrapRef<typeof import('@mixte/use')['deepUnref']>
685
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
686
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
687
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
688
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
689
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
690
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
691
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
692
+ readonly h: UnwrapRef<typeof import('vue')['h']>
693
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
694
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
695
+ readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
696
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
697
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
698
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
699
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
700
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
701
+ readonly lightThemeOverrides: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['lightThemeOverrides']>
702
+ readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
703
+ readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
704
+ readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
705
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
706
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
707
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
708
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
709
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
710
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
711
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
712
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
713
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
714
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
715
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
716
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
717
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
718
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
719
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
720
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
721
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
722
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
723
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
724
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
725
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
726
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
727
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
728
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
729
+ readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
730
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
731
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
732
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
733
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
734
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
735
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
736
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
737
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
738
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
739
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
740
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
741
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
742
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
743
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
744
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
745
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
746
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
747
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
748
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
749
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
750
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
751
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
752
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
753
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
754
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
755
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
756
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
757
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
758
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
759
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
760
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
761
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
762
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
763
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
764
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
765
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
766
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
767
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
768
+ readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
769
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
770
+ readonly useAnimate: UnwrapRef<typeof import('@vueuse/core')['useAnimate']>
771
+ readonly useArrayDifference: UnwrapRef<typeof import('@vueuse/core')['useArrayDifference']>
772
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
773
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
774
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
775
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
776
+ readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
777
+ readonly useArrayIncludes: UnwrapRef<typeof import('@vueuse/core')['useArrayIncludes']>
778
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
779
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
780
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
781
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
782
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
783
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
784
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
785
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
786
+ readonly useAverage: UnwrapRef<typeof import('@vueuse/math')['useAverage']>
787
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
788
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
789
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
790
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
791
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
792
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
793
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
794
+ readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
795
+ readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
796
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
797
+ readonly useClipboardItems: UnwrapRef<typeof import('@vueuse/core')['useClipboardItems']>
798
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
799
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
800
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
801
+ readonly useCountdown: UnwrapRef<typeof import('@mixte/use')['useCountdown']>
802
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
803
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
804
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
805
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
806
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
807
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
808
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
809
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
810
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
811
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
812
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
813
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
814
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
815
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
816
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
817
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
818
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
819
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
820
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
821
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
822
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
823
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
824
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
825
+ readonly useElementStyle: UnwrapRef<typeof import('../src/composables/useElementStyle')['useElementStyle']>
826
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
827
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
828
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
829
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
830
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
831
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
832
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
833
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
834
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
835
+ readonly useFloor: UnwrapRef<typeof import('@vueuse/math')['useFloor']>
836
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
837
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
838
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
839
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
840
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
841
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
842
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
843
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
844
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
845
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
846
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
847
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
848
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
849
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
850
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
851
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
852
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
853
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
854
+ readonly useMath: UnwrapRef<typeof import('@vueuse/math')['useMath']>
855
+ readonly useMax: UnwrapRef<typeof import('@vueuse/math')['useMax']>
856
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
857
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
858
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
859
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
860
+ readonly useMin: UnwrapRef<typeof import('@vueuse/math')['useMin']>
861
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
862
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
863
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
864
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
865
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
866
+ readonly useNaiveStyle: UnwrapRef<typeof import('../src/composables/useNaiveStyle')['useNaiveStyle']>
867
+ readonly useNaiveTheme: UnwrapRef<typeof import('../src/composables/useNaiveTheme')['useNaiveTheme']>
868
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
869
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
870
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
871
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
872
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
873
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
874
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
875
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
876
+ readonly useParentElement: UnwrapRef<typeof import('@vueuse/core')['useParentElement']>
877
+ readonly usePerformanceObserver: UnwrapRef<typeof import('@vueuse/core')['usePerformanceObserver']>
878
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
879
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
880
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
881
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
882
+ readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
883
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
884
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
885
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
886
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
887
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
888
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
889
+ readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
890
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
891
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
892
+ readonly useRequest: UnwrapRef<typeof import('@mixte/use')['useRequest']>
893
+ readonly useRequestReactive: UnwrapRef<typeof import('@mixte/use')['useRequestReactive']>
894
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
895
+ readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
896
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
897
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
898
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
899
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
900
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
901
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
902
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
903
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
904
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
905
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
906
+ readonly useSmart: UnwrapRef<typeof import('../src/composables/useSmart')['useSmart']>
907
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
908
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
909
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
910
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
911
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
912
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
913
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
914
+ readonly useSum: UnwrapRef<typeof import('@vueuse/math')['useSum']>
915
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
916
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
917
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
918
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
919
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
920
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
921
+ readonly useThemeStore: UnwrapRef<typeof import('../src/stores/theme')['useThemeStore']>
922
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
923
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
924
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
925
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
926
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
927
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
928
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
929
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
930
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
931
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
932
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
933
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
934
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
935
+ readonly useTrunc: UnwrapRef<typeof import('@vueuse/math')['useTrunc']>
936
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
937
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
938
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
939
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
940
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
941
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
942
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
943
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
944
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
945
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
946
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
947
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
948
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
949
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
950
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
951
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
952
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
953
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
954
+ readonly watchDeep: UnwrapRef<typeof import('@vueuse/core')['watchDeep']>
955
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
956
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
957
+ readonly watchImmediate: UnwrapRef<typeof import('@vueuse/core')['watchImmediate']>
958
+ readonly watchImmediateDeep: UnwrapRef<typeof import('@mixte/use')['watchImmediateDeep']>
959
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
960
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
961
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
962
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
963
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
964
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
965
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
966
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
967
+ readonly wheneverDeep: UnwrapRef<typeof import('@mixte/use')['wheneverDeep']>
968
+ readonly wheneverEffectScope: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScope']>
969
+ readonly wheneverEffectScopeDeep: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeDeep']>
970
+ readonly wheneverEffectScopeImmediate: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeImmediate']>
971
+ readonly wheneverEffectScopeImmediateDeep: UnwrapRef<typeof import('@mixte/use')['wheneverEffectScopeImmediateDeep']>
972
+ readonly wheneverImmediate: UnwrapRef<typeof import('@mixte/use')['wheneverImmediate']>
973
+ readonly wheneverImmediateDeep: UnwrapRef<typeof import('@mixte/use')['wheneverImmediateDeep']>
974
+ }
975
+ }