import { App } from "vue"; declare type ComponentType = any; export interface VUiInstance { version: string; componentPrefix: string; install: (app: App) => void; } interface VUiCreateOptions { components?: ComponentType[]; componentPrefix?: string; } declare function create({ componentPrefix, components, }?: VUiCreateOptions): VUiInstance; export default create;