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