declare module '*.vue' { import { Component, ComponentPublicInstance } from 'vue' const _default: Component & { // eslint-disable-next-line new (): ComponentPublicInstance } export default _default } declare type Nullable = T | null; declare type CustomizedHTMLElement = HTMLElement & T; declare type Indexable = { [key: string]: T };