@rotki/ui-library 1.12.2 → 1.12.3

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 (43) hide show
  1. package/dist/components/accordions/accordion/RuiAccordion.vue.d.ts +408 -13
  2. package/dist/components/alerts/RuiAlert.vue.d.ts +477 -10
  3. package/dist/components/buttons/button/RuiButton.vue.d.ts +4 -4
  4. package/dist/components/buttons/button-group/RuiButtonGroup.vue.d.ts +1 -1
  5. package/dist/components/cards/RuiCard.vue.d.ts +452 -15
  6. package/dist/components/cards/RuiCardHeader.vue.d.ts +396 -11
  7. package/dist/components/chips/RuiChip.vue.d.ts +483 -10
  8. package/dist/components/forms/auto-complete/RuiAutoComplete.vue.d.ts +21 -23
  9. package/dist/components/forms/checkbox/RuiCheckbox.vue.d.ts +467 -10
  10. package/dist/components/forms/radio-button/radio/RuiRadio.vue.d.ts +5 -5
  11. package/dist/components/forms/radio-button/radio-group/RuiRadioGroup.vue.d.ts +4 -4
  12. package/dist/components/forms/revealable-text-field/RuiRevealableTextField.vue.d.ts +43 -14
  13. package/dist/components/forms/select/RuiMenuSelect.vue.d.ts +17 -17
  14. package/dist/components/forms/switch/RuiSwitch.vue.d.ts +514 -9
  15. package/dist/components/forms/text-area/RuiTextArea.vue.d.ts +839 -16
  16. package/dist/components/forms/text-field/RuiTextField.vue.d.ts +671 -16
  17. package/dist/components/icons/RuiIcon.vue.d.ts +1 -1
  18. package/dist/components/index.es.js +13 -4
  19. package/dist/components/loaders/RuiSkeletonBase.vue.d.ts +1 -1
  20. package/dist/components/logos/RuiLogo.vue.d.ts +1 -1
  21. package/dist/components/overlays/badge/RuiBadge.vue.d.ts +471 -12
  22. package/dist/components/overlays/bottom-sheet/RuiBottomSheet.vue.d.ts +14 -9
  23. package/dist/components/overlays/dialog/RuiDialog.vue.d.ts +474 -21
  24. package/dist/components/overlays/menu/RuiMenu.vue.d.ts +503 -29
  25. package/dist/components/overlays/navigation-drawer/RuiNavigationDrawer.vue.d.ts +464 -23
  26. package/dist/components/overlays/notification/RuiNotification.vue.d.ts +24 -11
  27. package/dist/components/overlays/tooltip/RuiTooltip.vue.d.ts +427 -16
  28. package/dist/components/progress/RuiProgress.vue.d.ts +1 -1
  29. package/dist/components/steppers/RuiFooterStepper.vue.d.ts +1 -1
  30. package/dist/components/steppers/RuiStepper.vue.d.ts +460 -14
  31. package/dist/components/steppers/RuiStepperCustomIcon.vue.d.ts +1 -1
  32. package/dist/components/steppers/RuiStepperIcon.vue.d.ts +1 -1
  33. package/dist/components/tables/RuiDataTable.vue.d.ts +2 -32
  34. package/dist/components/tables/RuiExpandButton.vue.d.ts +377 -9
  35. package/dist/components/tables/RuiTableHead.vue.d.ts +13 -8
  36. package/dist/components/tables/RuiTablePagination.vue.d.ts +1 -1
  37. package/dist/components/tabs/tab/RuiTab.vue.d.ts +7 -17
  38. package/dist/components/tabs/tab-item/RuiTabItem.vue.d.ts +378 -11
  39. package/dist/components/tabs/tab-items/RuiTabItems.vue.d.ts +2 -2
  40. package/dist/components/tabs/tabs/RuiTabs.vue.d.ts +1 -1
  41. package/dist/style.css +1 -1
  42. package/dist/web-types.json +88 -88
  43. package/package.json +30 -30
@@ -1,5 +1,9 @@
1
1
  import type { ContextColorsType } from '../../../consts/colors';
2
2
  import type { RuiIcons } from '../../../icons';
3
+ import RuiButton from '../../../components/buttons/button/RuiButton.vue';
4
+ import RuiFormTextDetail from '../../../components/helpers/RuiFormTextDetail.vue';
5
+ import RuiIcon from '../../../components/icons/RuiIcon.vue';
6
+ import { getNonRootAttrs, getRootAttrs } from '../../../utils/helpers';
3
7
  export interface TextFieldProps {
4
8
  label?: string;
5
9
  placeholder?: string;
@@ -18,25 +22,676 @@ export interface TextFieldProps {
18
22
  readonly?: boolean;
19
23
  clearable?: boolean;
20
24
  }
25
+ declare const modelValue: import("vue").ModelRef<string, string, string, string>;
21
26
  type __VLS_Props = TextFieldProps;
22
- type __VLS_PublicProps = {
27
+ type __VLS_Emit = {
28
+ (e: 'focus-input', event: Event): void;
29
+ (e: 'blur', event: Event): void;
30
+ (e: 'remove', value: unknown): void;
31
+ (e: 'clear'): void;
32
+ };
33
+ declare const emit: __VLS_Emit;
34
+ declare const label: globalThis.Ref<string, string>, disabled: globalThis.Ref<boolean, boolean>, readonly: globalThis.Ref<boolean, boolean>, errorMessages: globalThis.Ref<string | string[], string | string[]>, successMessages: globalThis.Ref<string | string[], string | string[]>;
35
+ declare function input(event: Event): void;
36
+ declare const labelWithQuote: globalThis.ComputedRef<string>;
37
+ declare const prepend: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
38
+ declare const append: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
39
+ declare const innerWrapper: globalThis.Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
40
+ declare const inputRef: globalThis.Ref<any, any>;
41
+ declare const prependWidth: globalThis.Ref<string, string>;
42
+ declare const appendWidth: globalThis.Ref<string, string>;
43
+ declare const width: import("vue").ShallowRef<number, number>;
44
+ declare const hasError: globalThis.ComputedRef<boolean>, hasSuccess: globalThis.ComputedRef<boolean>, hasMessages: globalThis.ComputedRef<boolean>;
45
+ declare const focusedDebounced: Readonly<globalThis.Ref<boolean, boolean>>;
46
+ declare const showClearIcon: globalThis.ComputedRef<boolean>;
47
+ declare function clearIconClicked(): void;
48
+ type __VLS_PublicProps = __VLS_Props & {
23
49
  modelValue: string;
24
- } & __VLS_Props;
25
- declare function __VLS_template(): {
26
- attrs: Partial<{}>;
27
- slots: {
28
- prepend?(_: {}): any;
29
- append?(_: {}): any;
50
+ };
51
+ declare const __VLS_ctx: {
52
+ $style: Record<string, string> & __VLS_PrettifyGlobal<{} & {
53
+ "dark": string;
54
+ } & {
55
+ "wrapper": string;
56
+ } & {
57
+ "label": string;
58
+ } & {
59
+ "icon": string;
60
+ } & {
61
+ "label": string;
62
+ } & {
63
+ "filled": string;
64
+ } & {
65
+ "input": string;
66
+ } & {
67
+ "label": string;
68
+ } & {
69
+ "label": string;
70
+ } & {
71
+ "outlined": string;
72
+ } & {
73
+ "fieldset": string;
74
+ } & {
75
+ "disabled": string;
76
+ } & {
77
+ "input": string;
78
+ } & {
79
+ "fieldset": string;
80
+ } & {
81
+ "wrapper": string;
82
+ } & {
83
+ "input": string;
84
+ } & {
85
+ "label": string;
86
+ } & {
87
+ "label": string;
88
+ } & {
89
+ "label": string;
90
+ } & {
91
+ "fieldset": string;
92
+ } & {
93
+ "label": string;
94
+ } & {
95
+ "label": string;
96
+ } & {
97
+ "icon": string;
98
+ } & {
99
+ "prepend": string;
100
+ } & {
101
+ "append": string;
102
+ } & {
103
+ "input": string;
104
+ } & {
105
+ "label": string;
106
+ } & {
107
+ "label": string;
108
+ } & {
109
+ "outlined": string;
110
+ } & {
111
+ "disabled": string;
112
+ } & {
113
+ "input": string;
114
+ } & {
115
+ "fieldset": string;
116
+ } & {
117
+ "text_": string;
118
+ } & {
119
+ "with-": string;
120
+ } & {
121
+ "prepend": string;
122
+ } & {
123
+ "append": string;
124
+ } & {
125
+ "input": string;
126
+ } & {
127
+ "disabled": string;
128
+ } & {
129
+ "prepend": string;
130
+ } & {
131
+ "disabled": string;
132
+ } & {
133
+ "append": string;
134
+ } & {
135
+ "with-": string;
136
+ } & {
137
+ "input": string;
138
+ } & {
139
+ "label": string;
140
+ } & {
141
+ "fieldset": string;
142
+ } & {
143
+ "dense": string;
144
+ } & {
145
+ "input": string;
146
+ } & {
147
+ "label": string;
148
+ } & {
149
+ "filled": string;
150
+ } & {
151
+ "outlined": string;
152
+ } & {
153
+ "prepend": string;
154
+ } & {
155
+ "append": string;
156
+ } & {
157
+ "input": string;
158
+ } & {
159
+ "label": string;
160
+ } & {
161
+ "filled": string;
162
+ } & {
163
+ "input": string;
164
+ } & {
165
+ "label": string;
166
+ } & {
167
+ "label": string;
168
+ } & {
169
+ "label": string;
170
+ } & {
171
+ "dense": string;
172
+ } & {
173
+ "input": string;
174
+ } & {
175
+ "label": string;
176
+ } & {
177
+ "label": string;
178
+ } & {
179
+ "no-label": string;
180
+ } & {
181
+ "input": string;
182
+ } & {
183
+ "dense": string;
184
+ } & {
185
+ "input": string;
186
+ } & {
187
+ "outlined": string;
188
+ } & {
189
+ "input": string;
190
+ } & {
191
+ "label": string;
192
+ } & {
193
+ "fieldset": string;
194
+ } & {
195
+ "show": string;
196
+ } & {
197
+ "fieldset": string;
198
+ } & {
199
+ "disabled": string;
200
+ } & {
201
+ "input": string;
202
+ } & {
203
+ "fieldset": string;
204
+ } & {
205
+ "fieldset": string;
206
+ } & {
207
+ "label": string;
208
+ } & {
209
+ "dense": string;
210
+ } & {
211
+ "input": string;
212
+ } & {
213
+ "label": string;
214
+ }>;
215
+ $: import("vue").ComponentInternalInstance;
216
+ $data: {};
217
+ $props: {
218
+ readonly label?: string | undefined;
219
+ readonly placeholder?: string | undefined;
220
+ readonly disabled?: boolean | undefined;
221
+ readonly variant?: "default" | "filled" | "outlined" | undefined;
222
+ readonly color?: ContextColorsType | undefined;
223
+ readonly textColor?: ContextColorsType | undefined;
224
+ readonly dense?: boolean | undefined;
225
+ readonly hint?: string | undefined;
226
+ readonly as?: string | object | undefined;
227
+ readonly errorMessages?: string | string[] | undefined;
228
+ readonly successMessages?: string | string[] | undefined;
229
+ readonly hideDetails?: boolean | undefined;
230
+ readonly prependIcon?: RuiIcons | undefined;
231
+ readonly appendIcon?: RuiIcons | undefined;
232
+ readonly readonly?: boolean | undefined;
233
+ readonly clearable?: boolean | undefined;
234
+ readonly modelValue: string;
235
+ readonly onClear?: (() => any) | undefined;
236
+ readonly onBlur?: ((event: Event) => any) | undefined;
237
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
238
+ readonly "onFocus-input"?: ((event: Event) => any) | undefined;
239
+ readonly onRemove?: ((value: unknown) => any) | undefined;
240
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
241
+ $attrs: {
242
+ [x: string]: unknown;
30
243
  };
31
- refs: {
32
- prepend: HTMLDivElement;
33
- innerWrapper: HTMLDivElement;
34
- inputRef: unknown;
35
- append: HTMLDivElement;
244
+ $refs: {
245
+ [x: string]: unknown;
36
246
  };
37
- rootEl: any;
247
+ $slots: Readonly<{
248
+ [name: string]: import("vue").Slot<any> | undefined;
249
+ }>;
250
+ $root: ComponentPublicInstance | null;
251
+ $parent: ComponentPublicInstance | null;
252
+ $host: Element | null;
253
+ $emit: ((event: "clear") => void) & ((event: "blur", event: Event) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "focus-input", event: Event) => void) & ((event: "remove", value: unknown) => void);
254
+ $el: any;
255
+ $options: import("vue").ComponentOptionsBase<Readonly<__VLS_PublicProps> & Readonly<{
256
+ onClear?: (() => any) | undefined;
257
+ onBlur?: ((event: Event) => any) | undefined;
258
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
259
+ "onFocus-input"?: ((event: Event) => any) | undefined;
260
+ onRemove?: ((value: unknown) => any) | undefined;
261
+ }>, {
262
+ RuiButton: typeof RuiButton;
263
+ RuiFormTextDetail: typeof RuiFormTextDetail;
264
+ RuiIcon: typeof RuiIcon;
265
+ getNonRootAttrs: typeof getNonRootAttrs;
266
+ getRootAttrs: typeof getRootAttrs;
267
+ modelValue: typeof modelValue;
268
+ emit: typeof emit;
269
+ label: typeof label;
270
+ disabled: typeof disabled;
271
+ readonly: typeof readonly;
272
+ errorMessages: typeof errorMessages;
273
+ successMessages: typeof successMessages;
274
+ input: typeof input;
275
+ labelWithQuote: typeof labelWithQuote;
276
+ prepend: typeof prepend;
277
+ append: typeof append;
278
+ innerWrapper: typeof innerWrapper;
279
+ inputRef: typeof inputRef;
280
+ prependWidth: typeof prependWidth;
281
+ appendWidth: typeof appendWidth;
282
+ width: typeof width;
283
+ hasError: typeof hasError;
284
+ hasSuccess: typeof hasSuccess;
285
+ hasMessages: typeof hasMessages;
286
+ focusedDebounced: typeof focusedDebounced;
287
+ showClearIcon: typeof showClearIcon;
288
+ clearIconClicked: typeof clearIconClicked;
289
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
290
+ "update:modelValue": (value: string) => any;
291
+ } & {
292
+ clear: () => any;
293
+ blur: (event: Event) => any;
294
+ "focus-input": (event: Event) => any;
295
+ remove: (value: unknown) => any;
296
+ }, string, {
297
+ readonly: boolean;
298
+ variant: "default" | "filled" | "outlined";
299
+ color: ContextColorsType;
300
+ label: string;
301
+ disabled: boolean;
302
+ errorMessages: string | string[];
303
+ successMessages: string | string[];
304
+ hint: string;
305
+ hideDetails: boolean;
306
+ placeholder: string;
307
+ dense: boolean;
308
+ textColor: ContextColorsType;
309
+ as: string | object;
310
+ prependIcon: RuiIcons;
311
+ appendIcon: RuiIcons;
312
+ clearable: boolean;
313
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
314
+ beforeCreate?: (() => void) | (() => void)[];
315
+ created?: (() => void) | (() => void)[];
316
+ beforeMount?: (() => void) | (() => void)[];
317
+ mounted?: (() => void) | (() => void)[];
318
+ beforeUpdate?: (() => void) | (() => void)[];
319
+ updated?: (() => void) | (() => void)[];
320
+ activated?: (() => void) | (() => void)[];
321
+ deactivated?: (() => void) | (() => void)[];
322
+ beforeDestroy?: (() => void) | (() => void)[];
323
+ beforeUnmount?: (() => void) | (() => void)[];
324
+ destroyed?: (() => void) | (() => void)[];
325
+ unmounted?: (() => void) | (() => void)[];
326
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
327
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
328
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
329
+ };
330
+ $forceUpdate: () => void;
331
+ $nextTick: typeof import("vue").nextTick;
332
+ $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;
333
+ readonly: boolean & typeof import("vue").readonly;
334
+ variant: "default" | "filled" | "outlined";
335
+ color: ContextColorsType;
336
+ label: string;
337
+ disabled: boolean;
338
+ errorMessages: string | string[];
339
+ successMessages: string | string[];
340
+ hint: string;
341
+ hideDetails: boolean;
342
+ placeholder: string;
343
+ dense: boolean;
344
+ textColor: ContextColorsType;
345
+ as: string | object;
346
+ prependIcon: RuiIcons;
347
+ appendIcon: RuiIcons;
348
+ clearable: boolean;
349
+ onBlur?: ((event: Event) => any) | undefined;
350
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
351
+ onClear?: (() => any) | undefined;
352
+ "onFocus-input"?: ((event: Event) => any) | undefined;
353
+ onRemove?: ((value: unknown) => any) | undefined;
354
+ RuiButton: typeof RuiButton;
355
+ RuiFormTextDetail: typeof RuiFormTextDetail;
356
+ RuiIcon: typeof RuiIcon;
357
+ getNonRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getNonRootAttrs"]>;
358
+ getRootAttrs: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootAttrs"]>;
359
+ modelValue: string;
360
+ emit: typeof emit;
361
+ input: typeof input;
362
+ labelWithQuote: string;
363
+ prepend: HTMLDivElement | undefined;
364
+ append: HTMLDivElement | undefined;
365
+ innerWrapper: HTMLDivElement | undefined;
366
+ inputRef: any;
367
+ prependWidth: string;
368
+ appendWidth: string;
369
+ width: number;
370
+ hasError: boolean;
371
+ hasSuccess: boolean;
372
+ hasMessages: boolean;
373
+ focusedDebounced: boolean;
374
+ showClearIcon: boolean;
375
+ clearIconClicked: typeof clearIconClicked;
376
+ $route: import("vue-router").TypesConfig extends Record<"$route", infer T> ? T : import("vue-router").RouteLocationNormalizedLoaded;
377
+ $router: import("vue-router").TypesConfig extends Record<"$router", infer T> ? T : import("vue-router").Router;
378
+ DEFAULT_POPPER_OPTIONS: import("vue").UnwrapRef<typeof import("../../../composables/popper")["DEFAULT_POPPER_OPTIONS"]>;
379
+ EffectScope: import("vue").UnwrapRef<typeof import("vue")["EffectScope"]>;
380
+ TableSymbol: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["TableSymbol"]>;
381
+ assert: import("vue").UnwrapRef<typeof import("../../../utils/assert")["assert"]>;
382
+ asyncComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["asyncComputed"]>;
383
+ autoResetRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["autoResetRef"]>;
384
+ computed: import("vue").UnwrapRef<typeof import("vue")["computed"]>;
385
+ computedAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedAsync"]>;
386
+ computedEager: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedEager"]>;
387
+ computedInject: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedInject"]>;
388
+ computedWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["computedWithControl"]>;
389
+ controlledComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledComputed"]>;
390
+ controlledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["controlledRef"]>;
391
+ createApp: import("vue").UnwrapRef<typeof import("vue")["createApp"]>;
392
+ createEventHook: import("vue").UnwrapRef<typeof import("@vueuse/core")["createEventHook"]>;
393
+ createGlobalState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createGlobalState"]>;
394
+ createInjectionState: import("vue").UnwrapRef<typeof import("@vueuse/core")["createInjectionState"]>;
395
+ createPopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["createPopper"]>;
396
+ createReactiveFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReactiveFn"]>;
397
+ createRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["createRef"]>;
398
+ createReusableTemplate: import("vue").UnwrapRef<typeof import("@vueuse/core")["createReusableTemplate"]>;
399
+ createSharedComposable: import("vue").UnwrapRef<typeof import("@vueuse/core")["createSharedComposable"]>;
400
+ createTableDefaults: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["createTableDefaults"]>;
401
+ createTemplatePromise: import("vue").UnwrapRef<typeof import("@vueuse/core")["createTemplatePromise"]>;
402
+ createUnrefFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["createUnrefFn"]>;
403
+ customRef: import("vue").UnwrapRef<typeof import("vue")["customRef"]>;
404
+ debouncedRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedRef"]>;
405
+ debouncedWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["debouncedWatch"]>;
406
+ defineAsyncComponent: import("vue").UnwrapRef<typeof import("vue")["defineAsyncComponent"]>;
407
+ defineComponent: import("vue").UnwrapRef<typeof import("vue")["defineComponent"]>;
408
+ eagerComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["eagerComputed"]>;
409
+ effectScope: import("vue").UnwrapRef<typeof import("vue")["effectScope"]>;
410
+ extendRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["extendRef"]>;
411
+ formatCurrency: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatCurrency"]>;
412
+ formatInteger: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatInteger"]>;
413
+ formatNumber: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["formatNumber"]>;
414
+ generateId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["generateId"]>;
415
+ get: import("vue").UnwrapRef<typeof import("@vueuse/shared")["get"]>;
416
+ getCurrentInstance: import("vue").UnwrapRef<typeof import("vue")["getCurrentInstance"]>;
417
+ getCurrentScope: import("vue").UnwrapRef<typeof import("vue")["getCurrentScope"]>;
418
+ getRootKeys: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getRootKeys"]>;
419
+ getStringValue: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getStringValue"]>;
420
+ getText: import("vue").UnwrapRef<typeof import("../../../utils/forms/auto-complete")["getText"]>;
421
+ getTextToken: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["getTextToken"]>;
422
+ h: import("vue").UnwrapRef<typeof import("vue")["h"]>;
423
+ ignorableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["ignorableWatch"]>;
424
+ inject: import("vue").UnwrapRef<typeof import("vue")["inject"]>;
425
+ injectLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["injectLocal"]>;
426
+ isDefined: import("vue").UnwrapRef<typeof import("@vueuse/core")["isDefined"]>;
427
+ isEqual: import("vue").UnwrapRef<typeof import("../../../utils/is-equal")["isEqual"]>;
428
+ isProxy: import("vue").UnwrapRef<typeof import("vue")["isProxy"]>;
429
+ isReactive: import("vue").UnwrapRef<typeof import("vue")["isReactive"]>;
430
+ isReadonly: import("vue").UnwrapRef<typeof import("vue")["isReadonly"]>;
431
+ isRef: import("vue").UnwrapRef<typeof import("vue")["isRef"]>;
432
+ makeDestructurable: import("vue").UnwrapRef<typeof import("@vueuse/core")["makeDestructurable"]>;
433
+ markRaw: import("vue").UnwrapRef<typeof import("vue")["markRaw"]>;
434
+ nextTick: import("vue").UnwrapRef<typeof import("vue")["nextTick"]>;
435
+ onActivated: import("vue").UnwrapRef<typeof import("vue")["onActivated"]>;
436
+ onBeforeMount: import("vue").UnwrapRef<typeof import("vue")["onBeforeMount"]>;
437
+ onBeforeUnmount: import("vue").UnwrapRef<typeof import("vue")["onBeforeUnmount"]>;
438
+ onBeforeUpdate: import("vue").UnwrapRef<typeof import("vue")["onBeforeUpdate"]>;
439
+ onClickOutside: import("vue").UnwrapRef<typeof import("@vueuse/core")["onClickOutside"]>;
440
+ onDeactivated: import("vue").UnwrapRef<typeof import("vue")["onDeactivated"]>;
441
+ onElementRemoval: import("vue").UnwrapRef<typeof import("@vueuse/core")["onElementRemoval"]>;
442
+ onErrorCaptured: import("vue").UnwrapRef<typeof import("vue")["onErrorCaptured"]>;
443
+ onKeyStroke: import("vue").UnwrapRef<typeof import("@vueuse/core")["onKeyStroke"]>;
444
+ onLongPress: import("vue").UnwrapRef<typeof import("@vueuse/core")["onLongPress"]>;
445
+ onMounted: import("vue").UnwrapRef<typeof import("vue")["onMounted"]>;
446
+ onRenderTracked: import("vue").UnwrapRef<typeof import("vue")["onRenderTracked"]>;
447
+ onRenderTriggered: import("vue").UnwrapRef<typeof import("vue")["onRenderTriggered"]>;
448
+ onScopeDispose: import("vue").UnwrapRef<typeof import("vue")["onScopeDispose"]>;
449
+ onServerPrefetch: import("vue").UnwrapRef<typeof import("vue")["onServerPrefetch"]>;
450
+ onStartTyping: import("vue").UnwrapRef<typeof import("@vueuse/core")["onStartTyping"]>;
451
+ onUnmounted: import("vue").UnwrapRef<typeof import("vue")["onUnmounted"]>;
452
+ onUpdated: import("vue").UnwrapRef<typeof import("vue")["onUpdated"]>;
453
+ onWatcherCleanup: import("vue").UnwrapRef<typeof import("vue")["onWatcherCleanup"]>;
454
+ pausableWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["pausableWatch"]>;
455
+ provide: import("vue").UnwrapRef<typeof import("vue")["provide"]>;
456
+ provideLocal: import("vue").UnwrapRef<typeof import("@vueuse/core")["provideLocal"]>;
457
+ reactify: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactify"]>;
458
+ reactifyObject: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactifyObject"]>;
459
+ reactive: import("vue").UnwrapRef<typeof import("vue")["reactive"]>;
460
+ reactiveComputed: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveComputed"]>;
461
+ reactiveOmit: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactiveOmit"]>;
462
+ reactivePick: import("vue").UnwrapRef<typeof import("@vueuse/core")["reactivePick"]>;
463
+ ref: import("vue").UnwrapRef<typeof import("vue")["ref"]>;
464
+ refAutoReset: import("vue").UnwrapRef<typeof import("@vueuse/core")["refAutoReset"]>;
465
+ refDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDebounced"]>;
466
+ refDefault: import("vue").UnwrapRef<typeof import("@vueuse/core")["refDefault"]>;
467
+ refThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["refThrottled"]>;
468
+ refWithControl: import("vue").UnwrapRef<typeof import("@vueuse/core")["refWithControl"]>;
469
+ resolveComponent: import("vue").UnwrapRef<typeof import("vue")["resolveComponent"]>;
470
+ resolveRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveRef"]>;
471
+ resolveUnref: import("vue").UnwrapRef<typeof import("@vueuse/core")["resolveUnref"]>;
472
+ set: import("vue").UnwrapRef<typeof import("@vueuse/shared")["set"]>;
473
+ shallowReactive: import("vue").UnwrapRef<typeof import("vue")["shallowReactive"]>;
474
+ shallowReadonly: import("vue").UnwrapRef<typeof import("vue")["shallowReadonly"]>;
475
+ shallowRef: import("vue").UnwrapRef<typeof import("vue")["shallowRef"]>;
476
+ syncRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRef"]>;
477
+ syncRefs: import("vue").UnwrapRef<typeof import("@vueuse/core")["syncRefs"]>;
478
+ templateRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["templateRef"]>;
479
+ throttledRef: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledRef"]>;
480
+ throttledWatch: import("vue").UnwrapRef<typeof import("@vueuse/core")["throttledWatch"]>;
481
+ toRaw: import("vue").UnwrapRef<typeof import("vue")["toRaw"]>;
482
+ toReactive: import("vue").UnwrapRef<typeof import("@vueuse/core")["toReactive"]>;
483
+ toRef: import("vue").UnwrapRef<typeof import("vue")["toRef"]>;
484
+ toRefs: import("vue").UnwrapRef<typeof import("vue")["toRefs"]>;
485
+ toValue: import("vue").UnwrapRef<typeof import("vue")["toValue"]>;
486
+ transformCase: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformCase"]>;
487
+ transformPropsUnit: import("vue").UnwrapRef<typeof import("../../../utils/helpers")["transformPropsUnit"]>;
488
+ triggerRef: import("vue").UnwrapRef<typeof import("vue")["triggerRef"]>;
489
+ tryOnBeforeMount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeMount"]>;
490
+ tryOnBeforeUnmount: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnBeforeUnmount"]>;
491
+ tryOnMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnMounted"]>;
492
+ tryOnScopeDispose: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnScopeDispose"]>;
493
+ tryOnUnmounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["tryOnUnmounted"]>;
494
+ unref: import("vue").UnwrapRef<typeof import("vue")["unref"]>;
495
+ unrefElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["unrefElement"]>;
496
+ until: import("vue").UnwrapRef<typeof import("@vueuse/core")["until"]>;
497
+ useActiveElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useActiveElement"]>;
498
+ useAnimate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAnimate"]>;
499
+ useArrayDifference: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayDifference"]>;
500
+ useArrayEvery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayEvery"]>;
501
+ useArrayFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFilter"]>;
502
+ useArrayFind: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFind"]>;
503
+ useArrayFindIndex: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindIndex"]>;
504
+ useArrayFindLast: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayFindLast"]>;
505
+ useArrayIncludes: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayIncludes"]>;
506
+ useArrayJoin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayJoin"]>;
507
+ useArrayMap: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayMap"]>;
508
+ useArrayReduce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayReduce"]>;
509
+ useArraySome: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArraySome"]>;
510
+ useArrayUnique: import("vue").UnwrapRef<typeof import("@vueuse/core")["useArrayUnique"]>;
511
+ useAsyncQueue: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncQueue"]>;
512
+ useAsyncState: import("vue").UnwrapRef<typeof import("@vueuse/core")["useAsyncState"]>;
513
+ useAttrs: import("vue").UnwrapRef<typeof import("vue")["useAttrs"]>;
514
+ useAutoCompleteProps: import("vue").UnwrapRef<typeof import("../../../composables/forms/auto-complete")["useAutoCompleteProps"]>;
515
+ useBase64: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBase64"]>;
516
+ useBattery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBattery"]>;
517
+ useBluetooth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBluetooth"]>;
518
+ useBreakpoint: import("vue").UnwrapRef<typeof import("../../../composables")["useBreakpoint"]>;
519
+ useBreakpoints: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBreakpoints"]>;
520
+ useBroadcastChannel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBroadcastChannel"]>;
521
+ useBrowserLocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useBrowserLocation"]>;
522
+ useCached: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCached"]>;
523
+ useClipboard: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboard"]>;
524
+ useClipboardItems: import("vue").UnwrapRef<typeof import("@vueuse/core")["useClipboardItems"]>;
525
+ useCloned: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCloned"]>;
526
+ useColorMode: import("vue").UnwrapRef<typeof import("@vueuse/core")["useColorMode"]>;
527
+ useConfirmDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useConfirmDialog"]>;
528
+ useCountdown: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCountdown"]>;
529
+ useCounter: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCounter"]>;
530
+ useCssModule: import("vue").UnwrapRef<typeof import("vue")["useCssModule"]>;
531
+ useCssVar: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCssVar"]>;
532
+ useCssVars: import("vue").UnwrapRef<typeof import("vue")["useCssVars"]>;
533
+ useCurrentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCurrentElement"]>;
534
+ useCycleList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useCycleList"]>;
535
+ useDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDark"]>;
536
+ useDateFormat: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDateFormat"]>;
537
+ useDebounce: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounce"]>;
538
+ useDebounceFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebounceFn"]>;
539
+ useDebouncedRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDebouncedRefHistory"]>;
540
+ useDeviceMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceMotion"]>;
541
+ useDeviceOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDeviceOrientation"]>;
542
+ useDevicePixelRatio: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicePixelRatio"]>;
543
+ useDevicesList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDevicesList"]>;
544
+ useDisplayMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDisplayMedia"]>;
545
+ useDocumentVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDocumentVisibility"]>;
546
+ useDraggable: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDraggable"]>;
547
+ useDropZone: import("vue").UnwrapRef<typeof import("@vueuse/core")["useDropZone"]>;
548
+ useDropdownMenu: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownMenu"]>;
549
+ useDropdownOptionProperty: import("vue").UnwrapRef<typeof import("../../../composables/dropdown-menu")["useDropdownOptionProperty"]>;
550
+ useElementBounding: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementBounding"]>;
551
+ useElementByPoint: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementByPoint"]>;
552
+ useElementHover: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementHover"]>;
553
+ useElementSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementSize"]>;
554
+ useElementVisibility: import("vue").UnwrapRef<typeof import("@vueuse/core")["useElementVisibility"]>;
555
+ useEventBus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventBus"]>;
556
+ useEventListener: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventListener"]>;
557
+ useEventSource: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEventSource"]>;
558
+ useEyeDropper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useEyeDropper"]>;
559
+ useFavicon: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFavicon"]>;
560
+ useFetch: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFetch"]>;
561
+ useFileDialog: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileDialog"]>;
562
+ useFileSystemAccess: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFileSystemAccess"]>;
563
+ useFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocus"]>;
564
+ useFocusWithin: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFocusWithin"]>;
565
+ useFormTextDetail: import("vue").UnwrapRef<typeof import("../../../utils/form-text-detail")["useFormTextDetail"]>;
566
+ useFps: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFps"]>;
567
+ useFullscreen: import("vue").UnwrapRef<typeof import("@vueuse/core")["useFullscreen"]>;
568
+ useGamepad: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGamepad"]>;
569
+ useGeolocation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useGeolocation"]>;
570
+ useGlobalId: import("vue").UnwrapRef<typeof import("../../../utils/generate-id")["useGlobalId"]>;
571
+ useIcons: import("vue").UnwrapRef<typeof import("../../../composables")["useIcons"]>;
572
+ useId: import("vue").UnwrapRef<typeof import("vue")["useId"]>;
573
+ useIdle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIdle"]>;
574
+ useImage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useImage"]>;
575
+ useInfiniteScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInfiniteScroll"]>;
576
+ useIntersectionObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntersectionObserver"]>;
577
+ useInterval: import("vue").UnwrapRef<typeof import("@vueuse/core")["useInterval"]>;
578
+ useIntervalFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useIntervalFn"]>;
579
+ useKeyModifier: import("vue").UnwrapRef<typeof import("@vueuse/core")["useKeyModifier"]>;
580
+ useLastChanged: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLastChanged"]>;
581
+ useLocalStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useLocalStorage"]>;
582
+ useMagicKeys: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMagicKeys"]>;
583
+ useManualRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useManualRefHistory"]>;
584
+ useMediaControls: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaControls"]>;
585
+ useMediaQuery: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMediaQuery"]>;
586
+ useMemoize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemoize"]>;
587
+ useMemory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMemory"]>;
588
+ useModel: import("vue").UnwrapRef<typeof import("vue")["useModel"]>;
589
+ useMounted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMounted"]>;
590
+ useMouse: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouse"]>;
591
+ useMouseInElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMouseInElement"]>;
592
+ useMousePressed: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMousePressed"]>;
593
+ useMutationObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useMutationObserver"]>;
594
+ useNavigatorLanguage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNavigatorLanguage"]>;
595
+ useNetwork: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNetwork"]>;
596
+ useNow: import("vue").UnwrapRef<typeof import("@vueuse/core")["useNow"]>;
597
+ useObjectUrl: import("vue").UnwrapRef<typeof import("@vueuse/core")["useObjectUrl"]>;
598
+ useOffsetPagination: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOffsetPagination"]>;
599
+ useOnline: import("vue").UnwrapRef<typeof import("@vueuse/core")["useOnline"]>;
600
+ usePageLeave: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePageLeave"]>;
601
+ useParallax: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParallax"]>;
602
+ useParentElement: import("vue").UnwrapRef<typeof import("@vueuse/core")["useParentElement"]>;
603
+ usePerformanceObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePerformanceObserver"]>;
604
+ usePermission: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePermission"]>;
605
+ usePointer: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointer"]>;
606
+ usePointerLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerLock"]>;
607
+ usePointerSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePointerSwipe"]>;
608
+ usePopper: import("vue").UnwrapRef<typeof import("../../../composables/popper")["usePopper"]>;
609
+ usePreferredColorScheme: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredColorScheme"]>;
610
+ usePreferredContrast: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredContrast"]>;
611
+ usePreferredDark: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredDark"]>;
612
+ usePreferredLanguages: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredLanguages"]>;
613
+ usePreferredReducedMotion: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedMotion"]>;
614
+ usePreferredReducedTransparency: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePreferredReducedTransparency"]>;
615
+ usePrevious: import("vue").UnwrapRef<typeof import("@vueuse/core")["usePrevious"]>;
616
+ useRafFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRafFn"]>;
617
+ useRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useRefHistory"]>;
618
+ useResizeObserver: import("vue").UnwrapRef<typeof import("@vueuse/core")["useResizeObserver"]>;
619
+ useRotkiTheme: import("vue").UnwrapRef<typeof import("../../../composables")["useRotkiTheme"]>;
620
+ useSSRWidth: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSSRWidth"]>;
621
+ useScreenOrientation: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenOrientation"]>;
622
+ useScreenSafeArea: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScreenSafeArea"]>;
623
+ useScriptTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScriptTag"]>;
624
+ useScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScroll"]>;
625
+ useScrollLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useScrollLock"]>;
626
+ useSessionStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSessionStorage"]>;
627
+ useShare: import("vue").UnwrapRef<typeof import("@vueuse/core")["useShare"]>;
628
+ useSlots: import("vue").UnwrapRef<typeof import("vue")["useSlots"]>;
629
+ useSorted: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSorted"]>;
630
+ useSpeechRecognition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechRecognition"]>;
631
+ useSpeechSynthesis: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSpeechSynthesis"]>;
632
+ useStepper: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStepper"]>;
633
+ useStickyTableHeader: import("vue").UnwrapRef<typeof import("../../../composables/sticky-header")["useStickyTableHeader"]>;
634
+ useStorage: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorage"]>;
635
+ useStorageAsync: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStorageAsync"]>;
636
+ useStyleTag: import("vue").UnwrapRef<typeof import("@vueuse/core")["useStyleTag"]>;
637
+ useSupported: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSupported"]>;
638
+ useSwipe: import("vue").UnwrapRef<typeof import("@vueuse/core")["useSwipe"]>;
639
+ useTable: import("vue").UnwrapRef<typeof import("../../../composables/defaults/table")["useTable"]>;
640
+ useTemplateRef: import("vue").UnwrapRef<typeof import("vue")["useTemplateRef"]>;
641
+ useTemplateRefsList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTemplateRefsList"]>;
642
+ useTextDirection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextDirection"]>;
643
+ useTextSelection: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextSelection"]>;
644
+ useTextareaAutosize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTextareaAutosize"]>;
645
+ useThrottle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottle"]>;
646
+ useThrottleFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottleFn"]>;
647
+ useThrottledRefHistory: import("vue").UnwrapRef<typeof import("@vueuse/core")["useThrottledRefHistory"]>;
648
+ useTimeAgo: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeAgo"]>;
649
+ useTimeout: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeout"]>;
650
+ useTimeoutFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutFn"]>;
651
+ useTimeoutPoll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimeoutPoll"]>;
652
+ useTimestamp: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTimestamp"]>;
653
+ useTitle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTitle"]>;
654
+ useToNumber: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToNumber"]>;
655
+ useToString: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToString"]>;
656
+ useToggle: import("vue").UnwrapRef<typeof import("@vueuse/core")["useToggle"]>;
657
+ useTransition: import("vue").UnwrapRef<typeof import("@vueuse/core")["useTransition"]>;
658
+ useUrlSearchParams: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUrlSearchParams"]>;
659
+ useUserMedia: import("vue").UnwrapRef<typeof import("@vueuse/core")["useUserMedia"]>;
660
+ useVModel: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModel"]>;
661
+ useVModels: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVModels"]>;
662
+ useVibrate: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVibrate"]>;
663
+ useVirtualList: import("vue").UnwrapRef<typeof import("@vueuse/core")["useVirtualList"]>;
664
+ useWakeLock: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWakeLock"]>;
665
+ useWebNotification: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebNotification"]>;
666
+ useWebSocket: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebSocket"]>;
667
+ useWebWorker: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorker"]>;
668
+ useWebWorkerFn: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWebWorkerFn"]>;
669
+ useWindowFocus: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowFocus"]>;
670
+ useWindowScroll: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowScroll"]>;
671
+ useWindowSize: import("vue").UnwrapRef<typeof import("@vueuse/core")["useWindowSize"]>;
672
+ watch: import("vue").UnwrapRef<typeof import("vue")["watch"]>;
673
+ watchArray: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchArray"]>;
674
+ watchAtMost: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchAtMost"]>;
675
+ watchDebounced: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDebounced"]>;
676
+ watchDeep: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchDeep"]>;
677
+ watchEffect: import("vue").UnwrapRef<typeof import("vue")["watchEffect"]>;
678
+ watchIgnorable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchIgnorable"]>;
679
+ watchImmediate: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchImmediate"]>;
680
+ watchOnce: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchOnce"]>;
681
+ watchPausable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchPausable"]>;
682
+ watchPostEffect: import("vue").UnwrapRef<typeof import("vue")["watchPostEffect"]>;
683
+ watchSyncEffect: import("vue").UnwrapRef<typeof import("vue")["watchSyncEffect"]>;
684
+ watchThrottled: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchThrottled"]>;
685
+ watchTriggerable: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchTriggerable"]>;
686
+ watchWithFilter: import("vue").UnwrapRef<typeof import("@vueuse/core")["watchWithFilter"]>;
687
+ whenever: import("vue").UnwrapRef<typeof import("@vueuse/core")["whenever"]>;
38
688
  };
39
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
689
+ declare var __VLS_1: {}, __VLS_28: {};
690
+ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
691
+ prepend?: (props: typeof __VLS_1) => any;
692
+ } & {
693
+ append?: (props: typeof __VLS_28) => any;
694
+ }>;
40
695
  declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
41
696
  "update:modelValue": (value: string) => any;
42
697
  } & {
@@ -68,9 +723,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
68
723
  appendIcon: RuiIcons;
69
724
  clearable: boolean;
70
725
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
71
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
726
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
72
727
  export default _default;
73
- type __VLS_WithTemplateSlots<T, S> = T & {
728
+ type __VLS_WithSlots<T, S> = T & {
74
729
  new (): {
75
730
  $slots: S;
76
731
  };