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