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