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