@rotki/ui-library 1.12.3 → 2.0.1

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 (67) hide show
  1. package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +2 -403
  2. package/dist/components/alerts/RuiAlert.vue.d.ts +2 -473
  3. package/dist/components/buttons/button/RuiButton.vue.d.ts +5 -3
  4. package/dist/components/calendar/RuiCalendar.vue.d.ts +30 -0
  5. package/dist/components/calendar/RuiCalendarGrid.vue.d.ts +13 -0
  6. package/dist/components/calendar/RuiCalendarHeader.vue.d.ts +16 -0
  7. package/dist/components/calendar/RuiCalendarMenu.vue.d.ts +17 -0
  8. package/dist/components/calendar/state.d.ts +17 -0
  9. package/dist/components/cards/RuiCard.vue.d.ts +2 -438
  10. package/dist/components/cards/RuiCardHeader.vue.d.ts +2 -390
  11. package/dist/components/chips/RuiChip.vue.d.ts +2 -479
  12. package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +28 -17
  13. package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +2 -466
  14. package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +1 -1
  15. package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +3 -37
  16. package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +22 -15
  17. package/dist/components/forms/switch/RuiSwitch.vue.d.ts +2 -512
  18. package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +2 -834
  19. package/dist/components/forms/text-field/RuiTextField.vue.d.ts +9 -671
  20. package/dist/components/index.d.ts +3 -1
  21. package/dist/components/index.es.js +4213 -3535
  22. package/dist/components/overlays/badge/RuiBadge.vue.d.ts +3 -465
  23. package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +2 -10
  24. package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +3 -462
  25. package/dist/components/overlays/menu/RuiMenu.vue.d.ts +4 -485
  26. package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +2 -449
  27. package/dist/components/overlays/notification/RuiNotification.vue.d.ts +2 -20
  28. package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +4 -422
  29. package/dist/components/steppers/RuiStepper.vue.d.ts +2 -455
  30. package/dist/components/tables/RuiExpandButton.vue.d.ts +2 -375
  31. package/dist/components/tables/RuiTableHead.vue.d.ts +6 -5
  32. package/dist/components/tabs/tab/RuiTab.vue.d.ts +2 -2
  33. package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +2 -373
  34. package/dist/components/time-picker/RuiTimePicker.vue.d.ts +18 -0
  35. package/dist/composables/dropdown-menu.d.ts +2 -2
  36. package/dist/composables/{index-DKotjeCA.js → index-DOuH9rdn.js} +12 -12
  37. package/dist/composables/index.es.js +1 -1
  38. package/dist/consts/time-accuracy-BnKA5GyT.js +8 -0
  39. package/dist/consts/time-accuracy.d.ts +6 -0
  40. package/dist/icons/icons_1.d.ts +500 -500
  41. package/dist/icons/icons_1.es.js +1884 -1884
  42. package/dist/icons/icons_2.d.ts +500 -500
  43. package/dist/icons/icons_2.es.js +1868 -1868
  44. package/dist/icons/icons_3.d.ts +500 -500
  45. package/dist/icons/icons_3.es.js +1862 -1862
  46. package/dist/icons/icons_4.d.ts +137 -500
  47. package/dist/icons/icons_4.es.js +497 -1949
  48. package/dist/icons/index.d.ts +1 -7
  49. package/dist/icons/index.es.js +1644 -4665
  50. package/dist/index.es.js +1703 -4722
  51. package/dist/style.css +1 -1
  52. package/dist/utils/{index-Bi6PqW7j.js → index-CxHG7aHQ.js} +1 -1
  53. package/dist/{vendor-ClNuDbHx.js → vendor-BeEprDAU.js} +1288 -1288
  54. package/dist/web-types.json +355 -40
  55. package/package.json +43 -42
  56. package/dist/icons/icons_10.d.ts +0 -153
  57. package/dist/icons/icons_10.es.js +0 -611
  58. package/dist/icons/icons_5.d.ts +0 -501
  59. package/dist/icons/icons_5.es.js +0 -2003
  60. package/dist/icons/icons_6.d.ts +0 -501
  61. package/dist/icons/icons_6.es.js +0 -2003
  62. package/dist/icons/icons_7.d.ts +0 -501
  63. package/dist/icons/icons_7.es.js +0 -2003
  64. package/dist/icons/icons_8.d.ts +0 -501
  65. package/dist/icons/icons_8.es.js +0 -2003
  66. package/dist/icons/icons_9.d.ts +0 -501
  67. package/dist/icons/icons_9.es.js +0 -2003
@@ -7,466 +7,7 @@ export interface DialogProps {
7
7
  contentClass?: any;
8
8
  zIndex?: string | number;
9
9
  }
10
- declare const bottomSheet: globalThis.Ref<boolean, boolean>;
11
- declare const internalValue: globalThis.Ref<boolean, boolean>;
12
- declare const isOpen: globalThis.Ref<boolean, boolean>;
13
10
  declare function close(): void;
14
- declare const style: globalThis.ComputedRef<{
15
- width: string | undefined;
16
- maxWidth: string | undefined;
17
- }>;
18
- declare const contentRef: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
19
- declare const dialogAttrs: globalThis.ComputedRef<{
20
- onClick: () => void;
21
- }>;
22
- declare const contentTransition: globalThis.ComputedRef<{
23
- enterFromClass: string;
24
- enterActiveClass: string;
25
- enterToClass: string;
26
- leaveFromClass: string;
27
- leaveActiveClass: string;
28
- leaveToClass: string;
29
- }>;
30
- declare function onEscClick(): void;
31
- declare function onClickOutside(): void;
32
- declare const __VLS_ctx: {
33
- $style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
34
- "wrapper": string;
35
- } & {
36
- "overlay": string;
37
- } & {
38
- "content": string;
39
- } & {
40
- "center": string;
41
- } & {
42
- "dark": string;
43
- } & {
44
- "overlay": string;
45
- }>;
46
- $: import("vue").ComponentInternalInstance;
47
- $data: {};
48
- $props: {
49
- readonly modelValue?: boolean | undefined;
50
- readonly persistent?: boolean | undefined;
51
- readonly width?: string | number | undefined;
52
- readonly maxWidth?: string | number | undefined;
53
- readonly bottomSheet?: boolean | undefined;
54
- readonly contentClass?: any;
55
- readonly zIndex?: string | number | undefined;
56
- readonly "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
57
- readonly onClosed?: (() => any) | undefined;
58
- readonly "onClick:outside"?: (() => any) | undefined;
59
- readonly "onClick:esc"?: (() => any) | undefined;
60
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
61
- $attrs: {
62
- [x: string]: unknown;
63
- };
64
- $refs: {
65
- [x: string]: unknown;
66
- };
67
- $slots: Readonly<{
68
- [name: string]: import("vue").Slot<any> | undefined;
69
- }>;
70
- $root: ComponentPublicInstance | null;
71
- $parent: ComponentPublicInstance | null;
72
- $host: Element | null;
73
- $emit: ((event: "update:model-value", value: boolean) => void) & ((event: "closed") => void) & ((event: "click:outside") => void) & ((event: "click:esc") => void);
74
- $el: any;
75
- $options: import("vue").ComponentOptionsBase<Readonly<DialogProps> & Readonly<{
76
- "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
77
- onClosed?: (() => any) | undefined;
78
- "onClick:outside"?: (() => any) | undefined;
79
- "onClick:esc"?: (() => any) | undefined;
80
- }>, {
81
- bottomSheet: typeof bottomSheet;
82
- internalValue: typeof internalValue;
83
- isOpen: typeof isOpen;
84
- close: typeof close;
85
- style: typeof style;
86
- contentRef: typeof contentRef;
87
- dialogAttrs: typeof dialogAttrs;
88
- contentTransition: typeof contentTransition;
89
- onEscClick: typeof onEscClick;
90
- onClickOutside: typeof onClickOutside;
91
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
92
- "update:model-value": (value: boolean) => any;
93
- closed: () => any;
94
- "click:outside": () => any;
95
- "click:esc": () => any;
96
- }, string, {
97
- modelValue: boolean;
98
- width: string | number;
99
- contentClass: any;
100
- zIndex: string | number;
101
- persistent: boolean;
102
- bottomSheet: boolean;
103
- }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
104
- beforeCreate?: (() => void) | (() => void)[];
105
- created?: (() => void) | (() => void)[];
106
- beforeMount?: (() => void) | (() => void)[];
107
- mounted?: (() => void) | (() => void)[];
108
- beforeUpdate?: (() => void) | (() => void)[];
109
- updated?: (() => void) | (() => void)[];
110
- activated?: (() => void) | (() => void)[];
111
- deactivated?: (() => void) | (() => void)[];
112
- beforeDestroy?: (() => void) | (() => void)[];
113
- beforeUnmount?: (() => void) | (() => void)[];
114
- destroyed?: (() => void) | (() => void)[];
115
- unmounted?: (() => void) | (() => void)[];
116
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
117
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
118
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
119
- };
120
- $forceUpdate: () => void;
121
- $nextTick: typeof import("vue").nextTick;
122
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
123
- modelValue: boolean;
124
- width: string | number;
125
- contentClass: any;
126
- zIndex: string | number;
127
- persistent: boolean;
128
- bottomSheet: boolean;
129
- "onUpdate:model-value"?: ((value: boolean) => any) | undefined;
130
- maxWidth?: string | number;
131
- onClosed?: (() => any) | undefined;
132
- "onClick:outside"?: (() => any) | undefined;
133
- "onClick:esc"?: (() => any) | undefined;
134
- internalValue: boolean;
135
- isOpen: boolean;
136
- close: typeof close;
137
- style: {
138
- width: string | undefined;
139
- maxWidth: string | undefined;
140
- };
141
- contentRef: HTMLDivElement | undefined;
142
- dialogAttrs: {
143
- onClick: () => void;
144
- };
145
- contentTransition: {
146
- enterFromClass: string;
147
- enterActiveClass: string;
148
- enterToClass: string;
149
- leaveFromClass: string;
150
- leaveActiveClass: string;
151
- leaveToClass: string;
152
- };
153
- onEscClick: typeof onEscClick;
154
- onClickOutside: typeof onClickOutside & typeof import("@vueuse/core").onClickOutside;
155
- $route: import("vue-router").TypesConfig extends Record<"$route", infer T> ? T : import("vue-router").RouteLocationNormalizedLoaded;
156
- $router: import("vue-router").TypesConfig extends Record<"$router", infer T> ? T : import("vue-router").Router;
157
- DEFAULT_POPPER_OPTIONS: import("vue").UnwrapRef<typeof import("../../../composables/popper")["DEFAULT_POPPER_OPTIONS"]>;
158
- EffectScope: import("vue").UnwrapRef<typeof import("vue")["EffectScope"]>;
159
- TableSymbol: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["TableSymbol"]>;
160
- assert: import("vue").UnwrapRef<typeof import("../../../utils/assert")["assert"]>;
161
- asyncComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["asyncComputed"]>;
162
- autoResetRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["autoResetRef"]>;
163
- computed: import("vue").UnwrapRef<typeof import("vue")["computed"]>;
164
- computedAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedAsync"]>;
165
- computedEager: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedEager"]>;
166
- computedInject: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedInject"]>;
167
- computedWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedWithControl"]>;
168
- controlledComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledComputed"]>;
169
- controlledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledRef"]>;
170
- createApp: import("vue").UnwrapRef<typeof import("vue")["createApp"]>;
171
- createEventHook: import("vue").UnwrapRef<typeof import("@vueuse/core")["createEventHook"]>;
172
- createGlobalState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createGlobalState"]>;
173
- createInjectionState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createInjectionState"]>;
174
- createPopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["createPopper"]>;
175
- createReactiveFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReactiveFn"]>;
176
- createRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["createRef"]>;
177
- createReusableTemplate: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReusableTemplate"]>;
178
- createSharedComposable: import("vue").UnwrapRef<typeof import("@vueuse/core")["createSharedComposable"]>;
179
- createTableDefaults: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["createTableDefaults"]>;
180
- createTemplatePromise: import("vue").UnwrapRef<typeof import("@vueuse/core")["createTemplatePromise"]>;
181
- createUnrefFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createUnrefFn"]>;
182
- customRef: import("vue").UnwrapRef<typeof import("vue")["customRef"]>;
183
- debouncedRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedRef"]>;
184
- debouncedWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedWatch"]>;
185
- defineAsyncComponent: import("vue").UnwrapRef<typeof import("vue")["defineAsyncComponent"]>;
186
- defineComponent: import("vue").UnwrapRef<typeof import("vue")["defineComponent"]>;
187
- eagerComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["eagerComputed"]>;
188
- effectScope: import("vue").UnwrapRef<typeof import("vue")["effectScope"]>;
189
- extendRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["extendRef"]>;
190
- formatCurrency: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatCurrency"]>;
191
- formatInteger: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatInteger"]>;
192
- formatNumber: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatNumber"]>;
193
- generateId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["generateId"]>;
194
- get: import("vue").UnwrapRef<typeof import("@vueuse/shared")["get"]>;
195
- getCurrentInstance: import("vue").UnwrapRef<typeof import("vue")["getCurrentInstance"]>;
196
- getCurrentScope: import("vue").UnwrapRef<typeof import("vue")["getCurrentScope"]>;
197
- getNonRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getNonRootAttrs"]>;
198
- getRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootAttrs"]>;
199
- getRootKeys: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootKeys"]>;
200
- getStringValue: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getStringValue"]>;
201
- getText: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getText"]>;
202
- getTextToken: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getTextToken"]>;
203
- h: import("vue").UnwrapRef<typeof import("vue")["h"]>;
204
- ignorableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["ignorableWatch"]>;
205
- inject: import("vue").UnwrapRef<typeof import("vue")["inject"]>;
206
- injectLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["injectLocal"]>;
207
- isDefined: import("vue").UnwrapRef<typeof import("@vueuse/core")["isDefined"]>;
208
- isEqual: import("vue").UnwrapRef<typeof import("../../../utils/is-equal")["isEqual"]>;
209
- isProxy: import("vue").UnwrapRef<typeof import("vue")["isProxy"]>;
210
- isReactive: import("vue").UnwrapRef<typeof import("vue")["isReactive"]>;
211
- isReadonly: import("vue").UnwrapRef<typeof import("vue")["isReadonly"]>;
212
- isRef: import("vue").UnwrapRef<typeof import("vue")["isRef"]>;
213
- makeDestructurable: import("vue").UnwrapRef<typeof import("@vueuse/core")["makeDestructurable"]>;
214
- markRaw: import("vue").UnwrapRef<typeof import("vue")["markRaw"]>;
215
- nextTick: import("vue").UnwrapRef<typeof import("vue")["nextTick"]>;
216
- onActivated: import("vue").UnwrapRef<typeof import("vue")["onActivated"]>;
217
- onBeforeMount: import("vue").UnwrapRef<typeof import("vue")["onBeforeMount"]>;
218
- onBeforeUnmount: import("vue").UnwrapRef<typeof import("vue")["onBeforeUnmount"]>;
219
- onBeforeUpdate: import("vue").UnwrapRef<typeof import("vue")["onBeforeUpdate"]>;
220
- onDeactivated: import("vue").UnwrapRef<typeof import("vue")["onDeactivated"]>;
221
- onElementRemoval: import("vue").UnwrapRef<typeof import("@vueuse/core")["onElementRemoval"]>;
222
- onErrorCaptured: import("vue").UnwrapRef<typeof import("vue")["onErrorCaptured"]>;
223
- onKeyStroke: import("vue").UnwrapRef<typeof import("@vueuse/core")["onKeyStroke"]>;
224
- onLongPress: import("vue").UnwrapRef<typeof import("@vueuse/core")["onLongPress"]>;
225
- onMounted: import("vue").UnwrapRef<typeof import("vue")["onMounted"]>;
226
- onRenderTracked: import("vue").UnwrapRef<typeof import("vue")["onRenderTracked"]>;
227
- onRenderTriggered: import("vue").UnwrapRef<typeof import("vue")["onRenderTriggered"]>;
228
- onScopeDispose: import("vue").UnwrapRef<typeof import("vue")["onScopeDispose"]>;
229
- onServerPrefetch: import("vue").UnwrapRef<typeof import("vue")["onServerPrefetch"]>;
230
- onStartTyping: import("vue").UnwrapRef<typeof import("@vueuse/core")["onStartTyping"]>;
231
- onUnmounted: import("vue").UnwrapRef<typeof import("vue")["onUnmounted"]>;
232
- onUpdated: import("vue").UnwrapRef<typeof import("vue")["onUpdated"]>;
233
- onWatcherCleanup: import("vue").UnwrapRef<typeof import("vue")["onWatcherCleanup"]>;
234
- pausableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["pausableWatch"]>;
235
- provide: import("vue").UnwrapRef<typeof import("vue")["provide"]>;
236
- provideLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["provideLocal"]>;
237
- reactify: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactify"]>;
238
- reactifyObject: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactifyObject"]>;
239
- reactive: import("vue").UnwrapRef<typeof import("vue")["reactive"]>;
240
- reactiveComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveComputed"]>;
241
- reactiveOmit: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveOmit"]>;
242
- reactivePick: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactivePick"]>;
243
- readonly: import("vue").UnwrapRef<typeof import("vue")["readonly"]>;
244
- ref: import("vue").UnwrapRef<typeof import("vue")["ref"]>;
245
- refAutoReset: import("vue").UnwrapRef<typeof import("@vueuse/core")["refAutoReset"]>;
246
- refDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDebounced"]>;
247
- refDefault: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDefault"]>;
248
- refThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["refThrottled"]>;
249
- refWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["refWithControl"]>;
250
- resolveComponent: import("vue").UnwrapRef<typeof import("vue")["resolveComponent"]>;
251
- resolveRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveRef"]>;
252
- resolveUnref: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveUnref"]>;
253
- set: import("vue").UnwrapRef<typeof import("@vueuse/shared")["set"]>;
254
- shallowReactive: import("vue").UnwrapRef<typeof import("vue")["shallowReactive"]>;
255
- shallowReadonly: import("vue").UnwrapRef<typeof import("vue")["shallowReadonly"]>;
256
- shallowRef: import("vue").UnwrapRef<typeof import("vue")["shallowRef"]>;
257
- syncRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRef"]>;
258
- syncRefs: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRefs"]>;
259
- templateRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["templateRef"]>;
260
- throttledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledRef"]>;
261
- throttledWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledWatch"]>;
262
- toRaw: import("vue").UnwrapRef<typeof import("vue")["toRaw"]>;
263
- toReactive: import("vue").UnwrapRef<typeof import("@vueuse/core")["toReactive"]>;
264
- toRef: import("vue").UnwrapRef<typeof import("vue")["toRef"]>;
265
- toRefs: import("vue").UnwrapRef<typeof import("vue")["toRefs"]>;
266
- toValue: import("vue").UnwrapRef<typeof import("vue")["toValue"]>;
267
- transformCase: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformCase"]>;
268
- transformPropsUnit: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformPropsUnit"]>;
269
- triggerRef: import("vue").UnwrapRef<typeof import("vue")["triggerRef"]>;
270
- tryOnBeforeMount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeMount"]>;
271
- tryOnBeforeUnmount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeUnmount"]>;
272
- tryOnMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnMounted"]>;
273
- tryOnScopeDispose: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnScopeDispose"]>;
274
- tryOnUnmounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnUnmounted"]>;
275
- unref: import("vue").UnwrapRef<typeof import("vue")["unref"]>;
276
- unrefElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["unrefElement"]>;
277
- until: import("vue").UnwrapRef<typeof import("@vueuse/core")["until"]>;
278
- useActiveElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useActiveElement"]>;
279
- useAnimate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAnimate"]>;
280
- useArrayDifference: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayDifference"]>;
281
- useArrayEvery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayEvery"]>;
282
- useArrayFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFilter"]>;
283
- useArrayFind: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFind"]>;
284
- useArrayFindIndex: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindIndex"]>;
285
- useArrayFindLast: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindLast"]>;
286
- useArrayIncludes: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayIncludes"]>;
287
- useArrayJoin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayJoin"]>;
288
- useArrayMap: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayMap"]>;
289
- useArrayReduce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayReduce"]>;
290
- useArraySome: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArraySome"]>;
291
- useArrayUnique: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayUnique"]>;
292
- useAsyncQueue: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncQueue"]>;
293
- useAsyncState: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncState"]>;
294
- useAttrs: import("vue").UnwrapRef<typeof import("vue")["useAttrs"]>;
295
- useAutoCompleteProps: import("vue").UnwrapRef<typeof import("../../../composables/forms/auto-complete")["useAutoCompleteProps"]>;
296
- useBase64: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBase64"]>;
297
- useBattery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBattery"]>;
298
- useBluetooth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBluetooth"]>;
299
- useBreakpoint: import("vue").UnwrapRef<typeof import("../../../composables")["useBreakpoint"]>;
300
- useBreakpoints: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBreakpoints"]>;
301
- useBroadcastChannel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBroadcastChannel"]>;
302
- useBrowserLocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBrowserLocation"]>;
303
- useCached: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCached"]>;
304
- useClipboard: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboard"]>;
305
- useClipboardItems: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboardItems"]>;
306
- useCloned: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCloned"]>;
307
- useColorMode: import("vue").UnwrapRef<typeof import("@vueuse/core")["useColorMode"]>;
308
- useConfirmDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useConfirmDialog"]>;
309
- useCountdown: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCountdown"]>;
310
- useCounter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCounter"]>;
311
- useCssModule: import("vue").UnwrapRef<typeof import("vue")["useCssModule"]>;
312
- useCssVar: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCssVar"]>;
313
- useCssVars: import("vue").UnwrapRef<typeof import("vue")["useCssVars"]>;
314
- useCurrentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCurrentElement"]>;
315
- useCycleList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCycleList"]>;
316
- useDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDark"]>;
317
- useDateFormat: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDateFormat"]>;
318
- useDebounce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounce"]>;
319
- useDebounceFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounceFn"]>;
320
- useDebouncedRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebouncedRefHistory"]>;
321
- useDeviceMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceMotion"]>;
322
- useDeviceOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceOrientation"]>;
323
- useDevicePixelRatio: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicePixelRatio"]>;
324
- useDevicesList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicesList"]>;
325
- useDisplayMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDisplayMedia"]>;
326
- useDocumentVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDocumentVisibility"]>;
327
- useDraggable: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDraggable"]>;
328
- useDropZone: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDropZone"]>;
329
- useDropdownMenu: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownMenu"]>;
330
- useDropdownOptionProperty: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownOptionProperty"]>;
331
- useElementBounding: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementBounding"]>;
332
- useElementByPoint: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementByPoint"]>;
333
- useElementHover: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementHover"]>;
334
- useElementSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementSize"]>;
335
- useElementVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementVisibility"]>;
336
- useEventBus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventBus"]>;
337
- useEventListener: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventListener"]>;
338
- useEventSource: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventSource"]>;
339
- useEyeDropper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEyeDropper"]>;
340
- useFavicon: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFavicon"]>;
341
- useFetch: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFetch"]>;
342
- useFileDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileDialog"]>;
343
- useFileSystemAccess: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileSystemAccess"]>;
344
- useFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocus"]>;
345
- useFocusWithin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocusWithin"]>;
346
- useFormTextDetail: import("vue").UnwrapRef<typeof import("../../../utils/form-text-detail")["useFormTextDetail"]>;
347
- useFps: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFps"]>;
348
- useFullscreen: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFullscreen"]>;
349
- useGamepad: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGamepad"]>;
350
- useGeolocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGeolocation"]>;
351
- useGlobalId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["useGlobalId"]>;
352
- useIcons: import("vue").UnwrapRef<typeof import("../../../composables")["useIcons"]>;
353
- useId: import("vue").UnwrapRef<typeof import("vue")["useId"]>;
354
- useIdle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIdle"]>;
355
- useImage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useImage"]>;
356
- useInfiniteScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInfiniteScroll"]>;
357
- useIntersectionObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntersectionObserver"]>;
358
- useInterval: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInterval"]>;
359
- useIntervalFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntervalFn"]>;
360
- useKeyModifier: import("vue").UnwrapRef<typeof import("@vueuse/core")["useKeyModifier"]>;
361
- useLastChanged: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLastChanged"]>;
362
- useLocalStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLocalStorage"]>;
363
- useMagicKeys: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMagicKeys"]>;
364
- useManualRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useManualRefHistory"]>;
365
- useMediaControls: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaControls"]>;
366
- useMediaQuery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaQuery"]>;
367
- useMemoize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemoize"]>;
368
- useMemory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemory"]>;
369
- useModel: import("vue").UnwrapRef<typeof import("vue")["useModel"]>;
370
- useMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMounted"]>;
371
- useMouse: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouse"]>;
372
- useMouseInElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouseInElement"]>;
373
- useMousePressed: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMousePressed"]>;
374
- useMutationObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMutationObserver"]>;
375
- useNavigatorLanguage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNavigatorLanguage"]>;
376
- useNetwork: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNetwork"]>;
377
- useNow: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNow"]>;
378
- useObjectUrl: import("vue").UnwrapRef<typeof import("@vueuse/core")["useObjectUrl"]>;
379
- useOffsetPagination: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOffsetPagination"]>;
380
- useOnline: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOnline"]>;
381
- usePageLeave: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePageLeave"]>;
382
- useParallax: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParallax"]>;
383
- useParentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParentElement"]>;
384
- usePerformanceObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePerformanceObserver"]>;
385
- usePermission: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePermission"]>;
386
- usePointer: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointer"]>;
387
- usePointerLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerLock"]>;
388
- usePointerSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerSwipe"]>;
389
- usePopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["usePopper"]>;
390
- usePreferredColorScheme: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredColorScheme"]>;
391
- usePreferredContrast: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredContrast"]>;
392
- usePreferredDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredDark"]>;
393
- usePreferredLanguages: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredLanguages"]>;
394
- usePreferredReducedMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedMotion"]>;
395
- usePreferredReducedTransparency: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedTransparency"]>;
396
- usePrevious: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePrevious"]>;
397
- useRafFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRafFn"]>;
398
- useRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRefHistory"]>;
399
- useResizeObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useResizeObserver"]>;
400
- useRotkiTheme: import("vue").UnwrapRef<typeof import("../../../composables")["useRotkiTheme"]>;
401
- useSSRWidth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSSRWidth"]>;
402
- useScreenOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenOrientation"]>;
403
- useScreenSafeArea: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenSafeArea"]>;
404
- useScriptTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScriptTag"]>;
405
- useScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScroll"]>;
406
- useScrollLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScrollLock"]>;
407
- useSessionStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSessionStorage"]>;
408
- useShare: import("vue").UnwrapRef<typeof import("@vueuse/core")["useShare"]>;
409
- useSlots: import("vue").UnwrapRef<typeof import("vue")["useSlots"]>;
410
- useSorted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSorted"]>;
411
- useSpeechRecognition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechRecognition"]>;
412
- useSpeechSynthesis: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechSynthesis"]>;
413
- useStepper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStepper"]>;
414
- useStickyTableHeader: import("vue").UnwrapRef<typeof import("../../../composables/sticky-header")["useStickyTableHeader"]>;
415
- useStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorage"]>;
416
- useStorageAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorageAsync"]>;
417
- useStyleTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStyleTag"]>;
418
- useSupported: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSupported"]>;
419
- useSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSwipe"]>;
420
- useTable: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["useTable"]>;
421
- useTemplateRef: import("vue").UnwrapRef<typeof import("vue")["useTemplateRef"]>;
422
- useTemplateRefsList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTemplateRefsList"]>;
423
- useTextDirection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextDirection"]>;
424
- useTextSelection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextSelection"]>;
425
- useTextareaAutosize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextareaAutosize"]>;
426
- useThrottle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottle"]>;
427
- useThrottleFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottleFn"]>;
428
- useThrottledRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottledRefHistory"]>;
429
- useTimeAgo: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeAgo"]>;
430
- useTimeout: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeout"]>;
431
- useTimeoutFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutFn"]>;
432
- useTimeoutPoll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutPoll"]>;
433
- useTimestamp: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimestamp"]>;
434
- useTitle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTitle"]>;
435
- useToNumber: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToNumber"]>;
436
- useToString: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToString"]>;
437
- useToggle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToggle"]>;
438
- useTransition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTransition"]>;
439
- useUrlSearchParams: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUrlSearchParams"]>;
440
- useUserMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUserMedia"]>;
441
- useVModel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModel"]>;
442
- useVModels: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModels"]>;
443
- useVibrate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVibrate"]>;
444
- useVirtualList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVirtualList"]>;
445
- useWakeLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWakeLock"]>;
446
- useWebNotification: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebNotification"]>;
447
- useWebSocket: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebSocket"]>;
448
- useWebWorker: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorker"]>;
449
- useWebWorkerFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorkerFn"]>;
450
- useWindowFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowFocus"]>;
451
- useWindowScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowScroll"]>;
452
- useWindowSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowSize"]>;
453
- watch: import("vue").UnwrapRef<typeof import("vue")["watch"]>;
454
- watchArray: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchArray"]>;
455
- watchAtMost: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchAtMost"]>;
456
- watchDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDebounced"]>;
457
- watchDeep: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDeep"]>;
458
- watchEffect: import("vue").UnwrapRef<typeof import("vue")["watchEffect"]>;
459
- watchIgnorable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchIgnorable"]>;
460
- watchImmediate: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchImmediate"]>;
461
- watchOnce: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchOnce"]>;
462
- watchPausable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchPausable"]>;
463
- watchPostEffect: import("vue").UnwrapRef<typeof import("vue")["watchPostEffect"]>;
464
- watchSyncEffect: import("vue").UnwrapRef<typeof import("vue")["watchSyncEffect"]>;
465
- watchThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchThrottled"]>;
466
- watchTriggerable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchTriggerable"]>;
467
- watchWithFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchWithFilter"]>;
468
- whenever: import("vue").UnwrapRef<typeof import("@vueuse/core")["whenever"]>;
469
- };
470
11
  declare var __VLS_1: {
471
12
  attrs: {
472
13
  onClick: () => void;
@@ -476,11 +17,11 @@ declare var __VLS_1: {
476
17
  isOpen: true;
477
18
  close: typeof close;
478
19
  };
479
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
20
+ type __VLS_Slots = {} & {
480
21
  activator?: (props: typeof __VLS_1) => any;
481
22
  } & {
482
23
  default?: (props: typeof __VLS_15) => any;
483
- }>;
24
+ };
484
25
  declare const __VLS_component: import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
485
26
  "update:model-value": (value: boolean) => any;
486
27
  closed: () => any;
@@ -495,8 +36,8 @@ declare const __VLS_component: import("vue").DefineComponent<DialogProps, {}, {}
495
36
  modelValue: boolean;
496
37
  width: string | number;
497
38
  contentClass: any;
498
- zIndex: string | number;
499
39
  persistent: boolean;
40
+ zIndex: string | number;
500
41
  bottomSheet: boolean;
501
42
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
502
43
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;