import type { App, Component } from 'vue'; export type WithInstall = T & { install(app: App): void; }; export declare const withInstall: (comp: T) => WithInstall;