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