import type { App, Plugin } from "vue"; import type { InstallOptions } from "/xplus/es/utils/config"; declare const makeInstaller: (components?: Plugin[]) => { version: string; install: (app: App, opts: InstallOptions) => void; }; export default makeInstaller;