import '@vue/runtime-core'; import { ComputedRef } from 'vue'; declare module '@vue/runtime-core' { interface VNodeCustomProperties { iKey?: Symbol; } type CustomVNodeTypes = VNodeTypes & VNodeCustomProperties; type MaybeComputedRef = ComputedRef | T; interface VueDefaultExposeInstance { $el: HTMLElement; } }