import type { App, Component } from "vue"; export type SFCWithInstall = T & { install(app: App): void; }; export declare function withInstall(component: T): SFCWithInstall;