import type { Component, Directive, Plugin } from 'vue'; export declare function componentInstall(component: Component, name?: string | string[]): void; export declare function directiveInstall(directive: Directive, name: string): void; export declare function pluginInstall(plugin: Plugin, ...options: unknown[]): void;