import type { Plugin, Component } from 'vue'; declare type MyComponent = Component & { name: string; }; export declare type SFCWithInstall = T & Plugin; export declare const withInstall: (comp: T) => SFCWithInstall; export {};