import type { Component, App } from 'vue'; export interface IInstallable { install(app: App): void; } export type InstallableComponent = Component & IInstallable; export declare const withInstall: (entry: Component, ...items: Array) => InstallableComponent;