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