/// declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, unknown> export default component } interface ComponentConstructor

{ new (...args: any[]): { $props: P } }